﻿/* ============================================================
   Fonts
   ============================================================ */

/* @font-face {
    font-family: 'Geometria';
    src: url('../fonts/geometria/Geometria.woff2') format('woff2'),
         url('../fonts/geometria/Geometria.woff') format('woff'),
         url('../fonts/geometria/Geometria.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geometria';
    src: url('../fonts/geometria/Geometria-Medium.woff2') format('woff2'),
         url('../fonts/geometria/Geometria-Medium.woff') format('woff'),
         url('../fonts/geometria/Geometria-Medium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geometria';
    src: url('../fonts/geometria/Geometria-Light.woff2') format('woff2'),
         url('../fonts/geometria/Geometria-Light.woff') format('woff'),
         url('../fonts/geometria/Geometria-Light.ttf') format('truetype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geometria';
    src: url('../fonts/geometria/Geometria-Bold.woff2') format('woff2'),
         url('../fonts/geometria/Geometria-Bold.woff') format('woff'),
         url('../fonts/geometria/Geometria-Bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Geometria';
    src: url('../fonts/geometria/Geometria-ExtraBold.woff2') format('woff2'),
         url('../fonts/geometria/Geometria-ExtraBold.woff') format('woff'),
         url('../fonts/geometria/Geometria-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
} */

/* ============================================================
   Tokens & Reset
   ============================================================ */

:root {
  --color-text: #1d1d1d;
  --color-white: #ffffff;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-size: 0.875rem;
  background: var(--color-white);
}

@media (min-width: 1440px) {
  body {
    font-size: 1rem;
  }
}

img {
  display: block;
}

.swiper-wrapper {
  will-change: transform;
}

/* ============================================================
   PRODUCT PAGE
   ============================================================ */

.product-page-v2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}


/* -----------------------------------------------
   Block 1 — Product Gallery
   ----------------------------------------------- */

.product-gallery-v2 {
  width: 100%;
}

/* Main slider wrap — proportional container (360 × 480) */
.product-gallery-v2__main-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 360 / 480;
  overflow: hidden;
}

.product-gallery-v2__main {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-gallery-v2__main .swiper-slide {
  height: 100%;
  overflow: hidden;
}

.product-gallery-v2__picture {
  display: block;
  width: 100%;
  height: 100%;
}

.product-gallery-v2__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Thumbs — hidden on mobile */
.product-gallery-v2__thumbs {
  display: none;
}

/* 2 slides side by side at 768px–1439px */
@media (min-width: 768px) and (max-width: 1439px) {
  .product-gallery-v2__main-wrap {
    aspect-ratio: 3 / 2; /* 2 × (360/480) slides = 720:480 = 3:2 */
  }
}

/* Arrow buttons */
.product-gallery-v2__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 31px;
  height: 31px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery-v2__btn svg {
  display: block;
  width: 6px;
  height: 11px;
}

.product-gallery-v2__btn--next svg {
  transform: rotate(180deg);
}

.product-gallery-v2__btn--prev {
  left: 15px;
}

.product-gallery-v2__btn--next {
  right: 15px;
}

.product-gallery-v2__btn.swiper-button-lock {
  display: none;
}

/* ---- Desktop (1440px) ---- */

@media (min-width: 1440px) {
  .product-gallery-v2 {
    display: flex;
    gap: 10px;
    align-items: flex-start;
  }

  /* Side thumbnails */
  .product-gallery-v2__thumbs {
    margin: 0;
    display: block;
    flex: 0 0 121px;
    width: 121px !important;
    height: 658px !important;
    overflow: hidden !important;
  }

  .product-gallery-v2__thumbs .swiper-slide {
    height: 150.207px;
    width: 121px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }

  /* White 0.6 overlay fades in on active thumb (exact Figma value) */
  .product-gallery-v2__thumbs .swiper-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.6);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
  }

  .product-gallery-v2__thumbs .swiper-slide-thumb-active::after {
    opacity: 1;
  }

  .product-gallery-v2__btn--prev {
    left: 12px;
  }

  .product-gallery-v2__btn--next {
    right: 12px;
  }

  /* Main slider — desktop (526 × 658) */
  .product-gallery-v2__main-wrap {
    flex: 0 0 526px;
    width: 526px;
    height: 658px;
    aspect-ratio: auto;
  }

  .product-gallery-v2__main .swiper-slide {
    height: 658px;
  }
}


/* ======================
   Block 2 — You & Leokid
   ====================== */

.you-leokid-v2 {
  margin-top: 70px;
  margin-bottom: 120px;
  width: 100%;
  max-width: 1440px;
}

.you-leokid-v2__left {
  padding: 0 10px;
}

.you-leokid-v2__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.you-leokid-v2__title {
  font-family: 'Geometria', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  text-transform: uppercase;
  color: #1d1d1d;
}

.you-leokid-v2__nav {
  display: flex;
  gap: 6px;
  flex-shrink: 0;
  margin-left: 10px;
}

.slider-outer-button-v2 {
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid #1d1d1d;
  background-image: url("data:image/svg+xml,%3Csvg width='5' height='10' viewBox='0 0 5 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.3751 5.0002L0.600098 1.3002L1.4001 0.700195L4.6251 5.0002L1.4001 9.3002L0.600098 8.7002L3.3751 5.0002Z' fill='%231D1D1D'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  transition: .2s;
}

.slider-outer-button-v2_prev {
  transform: rotate(-180deg);
}

.slider-outer-button-v2.swiper-button-disabled {
  border-color: #dbdbdb;
  background-image: url("data:image/svg+xml,%3Csvg width='5' height='10' viewBox='0 0 5 10' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M3.3751 5.0002L0.600098 1.3002L1.4001 0.700195L4.6251 5.0002L1.4001 9.3002L0.600098 8.7002L3.3751 5.0002Z' fill='%23BDBDBD'/%3E%3C/svg%3E%0A");
  transition: .2s;
}

.slider-outer-button-v2.swiper-button-lock {
  display: block;
  cursor: default;
}

.you-leokid-v2__desc {
  margin-top: 8px;
  font-family: 'Geometria', sans-serif;
  font-weight: 400;
  font-size: 12px;
  max-width: 286px;
  line-height: 1.35;
  color: #1d1d1d;
}

.you-leokid-v2__slider-wrap {
  margin-top: 19px;
  overflow: hidden;
}

.you-leokid-v2-swiper .swiper-slide {
  width: 269px;
}

.you-leokid-v2__photo-wrap {
  position: relative;
  width: 100%;
  height: 336px;
  overflow: hidden;
}

.you-leokid-v2__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.you-leokid-v2__badge {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 54px;
  height: 54px;
  pointer-events: none;
  z-index: 1;
}

.you-leokid-v2__badge img {
  display: block;
  width: 100%;
  height: 100%;
}

.you-leokid-v2__handle {
  margin-top: 12px;
  font-family: 'Geometria', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.35;
  text-transform: uppercase;
  color: #1d1d1d;
  max-width: 225px;
}

@media (min-width: 1440px) {
  .you-leokid-v2 {
    margin-top: 108px;
    margin-bottom: 120px;
  }
  .you-leokid-v2__inner {
    display: flex;
    align-items: flex-start;
    overflow: hidden;
  }

  .you-leokid-v2__left {
    flex: 0 0 245px;
  }

  .you-leokid-v2__nav {
    display: none;
  }

  .you-leokid-v2__title {
    font-size: 18px;
    line-height: 1.35;
  }

  .you-leokid-v2__desc {
    margin-top: 10px;
    max-width: 190px;
    font-size: 14px;
  }

  .you-leokid-v2__slider-wrap {
    flex: 1;
    overflow: hidden;
    margin-top: 0;
  }

  .you-leokid-v2-swiper .swiper-slide {
    width: 295px;
  }

  .you-leokid-v2__photo-wrap {
    height: 365px;
  }

  .you-leokid-v2__handle {
    line-height: 1.25;
    margin-top: 10px;
  }

}


/* ======================
   Product Properties
   ====================== */

.product-props-v2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
  row-gap: 15px;
  margin-top: 34px;
}

.product-props-v2__item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.product-props-v2__icon {
  flex-shrink: 0;
  display: block;
  margin-top: 4px;
}

.product-props-v2__text {
  font-family: 'Geometria', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.15;
  color: #1d1d1d;
}

@media (min-width: 1440px) {
  .product-props-v2 {
    grid-template-columns: repeat(3, 1fr);
    column-gap: 62px;
    row-gap: 20px;
    margin-top: 45px;
    width: 640px;
  }

  .product-props-v2__item {
    gap: 10px;
  }

  .product-props-v2__icon {
    margin-top: 5px;
  }

  .product-props-v2__text {
    font-size: 12px;
    max-width: 144px;
  }
}


/* ======================
   product-main-v2 wrapper
   ====================== */

.product-main-v2 {
  width: 100%;
  max-width: 1440px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  
  margin-bottom: 30px;
}

@media (min-width: 1440px) {
  .product-main-v2 {
    flex-direction: row;
    gap: 52px;
    padding: 0 10px;
    margin-bottom: 28px;
    align-items: flex-start;
  }

  .product-main-v2 .product-gallery-v2 {
    width: auto;
    flex-shrink: 0;
  }
}


/* ======================
   Block 3 — Product Description
   ====================== */

.product-desc-v2 {
  width: 100%;
  padding: 0 10px;
}

/* --- Header row: name + actions --- */

.product-desc-v2__header {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.product-desc-v2__name {
  flex: 1;
  min-width: 0;
}

.product-desc-v2__title {
  font-family: 'Geometria', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
  text-transform: uppercase;
  color: #1d1d1d;
  max-width: 300px;
  padding-right: 24px;
  margin-bottom: 0;
}

.product-desc-v2__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: 12px;
}

.product-desc-v2__prices {
  display: flex;
  align-items: center;
  gap: 15px;
}

.product-desc-v2__price-new {
  font-family: 'Geometria', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: #1d1d1d;
  white-space: nowrap;
}

.product-desc-v2__price-old {
  font-family: 'Geometria', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  color: #b7b6b6;
  text-decoration: line-through;
  white-space: nowrap;
}

.pd-v2-dolyame {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 2px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-align: left;
}

.pd-v2-dolyame__badge {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 15px;
  background: #1d1d1d;
  padding: 4.588px;
}

.pd-v2-dolyame__badge svg {
  display: block;
  width: 42.8235px;
  height: 6.11765px;
}

.pd-v2-dolyame__text {
  font-family: 'Geometria', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1;
  color: #1d1d1d;
  white-space: nowrap;
}

/* Actions column: fav btn + tags */

.product-desc-v2__actions {
  position: absolute;
  top: 0;
  right: 0;
}

.pd-v2-btn-fav {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1d1d1d;
}

.pd-v2-fav-icon path {
  fill: none;
}

.pd-v2-btn-fav.active {
  color: #DDA2AB;
}

.pd-v2-btn-fav.active .pd-v2-fav-icon path {
  fill: currentColor;
  stroke-opacity: 0.3;
}

.pd-v2-btn-fav--mobile {
  width: 15.833px;
  height: 14.167px;
}

.pd-v2-btn-fav--mobile img {
  display: block;
  width: 15.833px;
  height: 14.167px;
}

.pd-v2-btn-fav--desktop {
  display: none;
}

.product-desc-v2__tags {
  display: flex;
  gap: 5px;
}

.product-desc-v2__tag {
  font-family: 'Geometria', sans-serif;
  font-weight: 500;
  font-size: 9px;
  line-height: 1;
  text-transform: uppercase;
  width: 38px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-desc-v2__tag--sale {
  background: #1d1d1d;
  color: #ffffff;
}

.product-desc-v2__tag--new {
  background: #ffffff;
  border: 1px solid #1d1d1d;
  color: #1d1d1d;
}

/* --- Colors --- */

.product-desc-v2__colors {
  display: flex;
  flex-wrap: wrap;
  gap: 2px;
  margin-top: 25px;
}

.product-desc-v2__color {
  display: block;
  position: relative;
  width: 58px;
  height: 72px;
  background: #ebebeb;
  flex-shrink: 0;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.product-desc-v2__color::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  transition: box-shadow .15s ease-in-out;
}

.product-desc-v2__color--dim {
  cursor: default;
}

.product-desc-v2__color-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-desc-v2__color:not(.product-desc-v2__color--active):not(.product-desc-v2__color--dim):hover::after {
  box-shadow: inset 0 0 0 1px #5d5d5d;
}

.product-desc-v2__color--active::after {
  box-shadow: inset 0 0 0 1px #1d1d1d;
}

.product-desc-v2__color--dim {
  opacity: 0.6;
}

/* --- Sizes --- */

.product-desc-v2__sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-top: 25px;
}

.product-desc-v2__size {
  flex-shrink: 0;
  width: 82px;
  min-height: 42px;
  border: 1px solid #f2f2f2;
  background: #ffffff;
  cursor: pointer;
  padding: 6px 0 8px;
  display: flex;
  flex-direction: column;
  transition: border-color .15s ease-in-out;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}

.product-desc-v2__size-wrap {
  display: contents;
}

.product-desc-v2__size-input {
  display: none;
}

.product-desc-v2__size-input:checked ~ .product-desc-v2__size {
  border-color: #1d1d1d;
}

.product-desc-v2__size-input:disabled ~ .product-desc-v2__size {
  cursor: default;
}

.product-desc-v2__size[data-unavailable="true"] .product-desc-v2__size-num,
.product-desc-v2__size[data-unavailable="true"] .product-desc-v2__size-age {
  color: #DBDBDB;
}

.product-desc-v2__size-num {
  font-family: 'Geometria', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  color: #1d1d1d;
}

.product-desc-v2__size-age {
  font-family: 'Geometria', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1;
  color: #5d5d5d;
}

/* --- Size chart button --- */

.product-desc-v2__size-chart-wrap {
  margin-top: 10px;
}

.product-desc-v2__size-chart-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

.product-desc-v2__size-chart {
  display: block;
  width: 117.465px;
  height: 11.112px;
}

/* --- Bonus row --- */

.pd-v2-bonus {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.pd-v2-bonus__promo {
  display: block;
  width: 29.226px;
  height: 16.7px;
  flex-shrink: 0;
}

.pd-v2-bonus__text {
  font-family: 'Geometria', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  color: #1d1d1d;
  flex: 1;
}

.pd-v2-bonus__coin {
  display: block;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* --- Cart row --- */

.product-desc-v2__cart-row {
  margin-top: 30px;
}

.pd-v2-btn-cart {
  margin: 0 !important;
  display: flex !important;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  background: #1d1d1d;
  color: #ffffff;
  font-family: 'Geometria', sans-serif;
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid #1d1d1d;
  cursor: pointer;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.pd-v2-btn-cart:hover,
.pd-v2-btn-cart:focus-visible {
  background-color: #ffffff;
  color: #1d1d1d;
}

/* --- Consultation block --- */

.product-desc-v2__consult {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  margin-top: 30px;
  padding: 20px;
  text-align: center;
}

.product-desc-v2__consult-title {
  font-family: 'Geometria', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.05;
  margin-bottom: 5px;
  color: #1d1d1d;
}

.product-desc-v2__consult-subtitle {
  font-family: 'Geometria', sans-serif;
  font-weight: 400;
  font-size: 10px;
  line-height: 1.15;
  color: #1d1d1d;
  max-width: 167px;
  
  margin-bottom: 18px !important;
  text-align: center;
}

.pd-v2-btn-write {
  width: 181px;
  height: 40px;
  background: #1d1d1d;
  color: #ffffff;
  font-family: 'Geometria', sans-serif;
  font-weight: 500;
  font-size: 8px;
  line-height: 1;
  text-transform: uppercase;
  border: 1px solid #1d1d1d;
  cursor: pointer;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
}

.pd-v2-btn-write:hover,
.pd-v2-btn-write:focus-visible {
  background-color: #ffffff;
  color: #1d1d1d;
}


/* ---- Desktop (1440px) — Product Description ---- */

@media (min-width: 1440px) {
  .pd-v2-dolyame {
    margin-top: 6px;
  }

  .product-desc-v2 {
    padding: 0;
    flex: 0 0 657px;
    width: 657px;
  }

  /* Title: single line, no width cap */
  .product-desc-v2__title {
    max-width: 430px;
  }

  /* Tags: desktop size */
  .pd-v2-btn-fav--mobile {
    display: none;
  }

  .product-desc-v2__header {
    position: relative;
  }

  .product-desc-v2__tags {
    position: absolute;
    top: 0;
    right: 0;
    gap: 12px;
  }

  .product-desc-v2__tag {
    width: 49px;
    height: 22px;
    font-size: 12px;
    padding-left: 8px;
    padding-right: 8px;
  }

  /* Colors: desktop margin */
  .product-desc-v2__colors {
    margin-top: 22px;
  }

  /* Sizes: one row, 5px gap */
  .product-desc-v2__sizes {
    gap: 5px;
    margin-top: 30px;
  }

  /* Size chart */
  .product-desc-v2__size-chart-wrap {
    margin-top: 11px;
  }

  /* Bonus */
  .pd-v2-bonus {
    margin-top: 19px;
  }

  /* Cart row: cart button + fav button side by side */
  .product-desc-v2__cart-row {
    display: flex;
    gap: 11px;
    align-items: center;
    margin-top: 40px;
  }

  .pd-v2-btn-cart {
    width: 596px;
    flex-shrink: 0;
  }

  .pd-v2-btn-fav--desktop {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    padding: 0;
    background: #ffffff;
    border: 1px solid #1d1d1d;
    cursor: pointer;
    transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out;
  }

  .pd-v2-btn-fav--desktop img {
    display: block;
    width: 50px;
    height: 50px;
    transition: filter .15s ease-in-out;
  }

  .pd-v2-btn-fav--desktop:hover,
  .pd-v2-btn-fav--desktop:focus-visible {
    background-color: #1d1d1d;
  }

  .pd-v2-btn-fav--desktop:not(.active):hover,
  .pd-v2-btn-fav--desktop:not(.active):focus-visible {
    color: #ffffff;
  }

  .pd-v2-btn-fav--desktop.active {
    background-color: #ffffff;
  }

  /* Consultation: horizontal, 70px tall */
  .product-desc-v2__consult {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding: 15px 18px;
    gap: 20px;
    text-align: left;
  }

  .product-desc-v2__consult-texts {
    flex: 1;
    min-width: 0;
  }

  .product-desc-v2__consult-subtitle {
    line-height: 1.05;
    white-space: nowrap;
    max-width: none;
    margin: 0 !important;
    text-align: left !important;
  }

  .pd-v2-btn-write {
    flex-shrink: 0;
  }

  .pd-v2-bonus__text {
    line-height: 1.05;
  }

}


/* ======================
   Product Accordion (Спойлеры)
   ====================== */
.product-info-v2 {
  width: 100%;
  max-width: 1440px;
  padding: 0 10px;
}

.product-accordion-v2__item + .product-accordion-v2__item {
  border-top: 1px solid #ebebeb;
}

.product-accordion-v2__trigger {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 12px 0 10px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
}

.product-accordion-v2__label {
  font-family: 'Geometria', sans-serif;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.25;
  text-transform: uppercase;
  color: #1d1d1d;
}

.product-accordion-v2__arrow {
  flex-shrink: 0;
  display: block;
  width: 3px;
  height: 8px;
  transition: transform 0.3s ease;
}

.product-accordion-v2__item--open .product-accordion-v2__arrow {
  transform: rotate(90deg);
}

/* Grid trick: smooth height expand/collapse */
.product-accordion-v2__body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
  overflow: hidden;
}

.product-accordion-v2__item--open .product-accordion-v2__body {
  grid-template-rows: 1fr;
}

.product-accordion-v2__content {
  min-height: 0;
}

.product-accordion-v2__inner {
  padding-bottom: 16px;
  font-family: 'Geometria', sans-serif;
  font-weight: 400;
  font-size: 11px;
  line-height: 1.4;
  color: #1d1d1d;
}

@media (min-width: 1440px) {
  .product-accordion-v2 {
    max-width: 657px;
  }

  .product-accordion-v2__label {
    font-size: 12px;
  }

  .product-accordion-v2__trigger {
    padding: 12px 0 11px 0;
  }

  .product-accordion-v2__inner {
    font-size: 12px;
  }
}
/* Size chart modal overrides */
  #product-size-chart .modal-content {
      overflow: hidden;
      border-radius: 0;
  }

  #product-size-chart .product-size-chart-support {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-top: 0;
      margin-bottom: 25px;
      padding: 0 30px;
  }

  #product-size-chart .product-size-chart-support .product-size-chart-support-title {
      text-transform: uppercase;
      font-size: .875rem;
  }

  #product-size-chart .product-size-chart-support .product-size-chart-support-btn {
      text-transform: uppercase;
      padding: 6px 0;
      text-align: center;
      max-width: 180px;
      width: 100%;
      font-size: 14px;
      font-weight: 400;
  }

  #product-size-chart-accordion {
      padding: 0 30px;
  }

  #product-size-chart-accordion .accordion-item {
      border-bottom: none;
  }

  @media screen and (max-width: 552px) {
      #product-size-chart .accordion-button {
          font-size: 10px;
      }

      #product-size-chart .product-size-chart-support {
          align-items: flex-end;
      }

      #product-size-chart .product-size-chart-support .product-size-chart-support-title {
          font-size: 10px;
      }

      #product-size-chart .product-size-chart-support .product-size-chart-support-btn {
          font-size: 9px;
      }
  }

  .pd-v2-btn-fav--desktop.favorite-animation-in,
  .pd-v2-btn-fav--desktop.favorite-animation-out {
    animation: none;
  }

  .related-products {
    max-width: 1440px !important;
    padding: 0 10px !important;
  }