@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Thin.woff') format('woff'),
       url('../fonts/Gilroy-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-UltraLight.woff') format('woff'),
       url('../fonts/Gilroy-UltraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Regular.woff') format('woff'),
       url('../fonts/Gilroy-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

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

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-SemiBold.woff') format('woff'),
       url('../fonts/Gilroy-SemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

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

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

@font-face {
  font-family: 'Gilroy';
  src: url('../fonts/Gilroy-Black.woff') format('woff'),
       url('../fonts/Gilroy-Black.ttf') format('truetype');
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

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

ul {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

:root {
  --color-purple: #f84f18;;
  --color-purple-active: #9d2d07;;
  --color-black: #181818;
  --color-white: #FFFFFF;
  --color-gray-blue: #616B7A;
  --container-max-width: 1320px;
  --container-padding: 140px;
}
body {
  font-family: 'Gilroy', 'Helvetica Neue', Arial, sans-serif;
  background: var(--color-white);
}



/* ---------- Container ---------- */

.container {
    width: 100%;
    max-width: var(--container-max-width);
    margin: 0 auto;
}
/* ---------- Marquee ---------- */

.marquee {
  overflow: hidden;
  background: var(--color-purple);
  height: 28px;
  display: flex;
  align-items: center;
}

.marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
}

.marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.marquee__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-right: 12px;
  white-space: nowrap;
}

.marquee__text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-white);
  text-transform: uppercase;
}

.marquee__dot {
  width: 4px;
  height: 4px;
  flex-shrink: 0;
  background: var(--color-white);
}

/* ---------- Navbar ---------- */

.navbar {
  background: var(--color-black);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 99px;
  padding-top: 12px;
  padding-bottom: 12px;
}
h1 {
    margin-bottom: 24px;
}
.navbar__menu {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-shrink: 0;
}

.navbar__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-white);
  white-space: nowrap;
}

.navbar__link:hover {
  opacity: 0.75;
}

.navbar__chevron {
  width: 20px;
  height: 20px;
  transition: transform 0.15s ease;
}

.navbar__item {
  position: relative;
}

.navbar__item:hover .navbar__chevron,
.navbar__item--open .navbar__chevron {
  transform: rotate(180deg);
}

.navbar__dropdown {
  position: absolute;
  top: calc(100% + 16px);
  left: 0;
  z-index: 20;
  min-width: 220px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--color-white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.navbar__item:hover .navbar__dropdown,
.navbar__item--open .navbar__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__dropdown-link {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-white);
  white-space: nowrap;
}

.navbar__dropdown-link:hover {
  background: rgba(255, 255, 255, 0.08);
}

.navbar__dropdown:has(.navbar__dropdown-item--card) {
    flex-direction: row;
    align-items: flex-start;
    min-width: 0;
    gap: 8px;
    padding: 8px;
    box-shadow: 0px 0px 15px #33333345;
}

.navbar__dropdown-item--card,
.navbar__dropdown-item--link {
  position: relative;
}

.navbar__dropdown-item--card {
  width: 168px;
}

.navbar__dropdown-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.navbar__dropdown-card-image {
  display: block;
  aspect-ratio: 3 / 4;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.navbar__dropdown-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  scale: 1;
  transition: scale 0.4s;
}

.navbar__dropdown-card-label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-black);
  transition: color 0.3s ease;
}
.navbar__dropdown-card:hover .navbar__dropdown-card-image img {
    scale: 1.1;
    transition: scale 0.4s;
}
.navbar__dropdown-card-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  transition: rotate 0.3s ease;
}

.navbar__dropdown-card:hover .navbar__dropdown-card-label {
  color: var(--color-purple);
}

.navbar__dropdown-card:hover .navbar__dropdown-card-icon {
  rotate: 45deg;
}

/* 3rd nesting level: text submenu revealed on hover of a depth-1 card/link that has children */

.navbar__dropdown-submenu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 21;
  min-width: 180px;
  margin-top: 8px;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--color-white);
  border-radius: 12px;
  box-shadow: 0px 0px 15px #33333345;
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
}

.navbar__dropdown-item--has-submenu:hover .navbar__dropdown-submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar__submenu-link {
  display: block;
  padding: 8px 12px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-black);
  white-space: nowrap;
}

.navbar__submenu-link:hover {
  background: rgba(24, 24, 24, 0.06);
  color: var(--color-purple);
}

.navbar__right {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1 1 auto;
  min-width: 0;
  gap: 24px;
}

.navbar__logo {
  flex-shrink: 0;
  display: inline-flex;
  position: relative;
}

.navbar__logo img {
  width: 182px;
  height: 36px;
}

.navbar__logo::before,
.navbar__logo::after {
  content: '';
  position: absolute;
  inset: 0;
  -webkit-mask-image: var(--logo-src);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  -webkit-mask-position: center;
  mask-image: var(--logo-src);
  mask-repeat: no-repeat;
  mask-size: contain;
  mask-position: center;
  opacity: 0;
  pointer-events: none;
  mix-blend-mode: screen;
}

.navbar__logo::before {
  background-color: #ff2b4e;
}

.navbar__logo::after {
  background-color: #00e5ff;
}

.navbar__logo:hover img {
  animation: navbarLogoGlitchJitter 0.5s steps(2, jump-none) infinite;
}

.navbar__logo:hover::before {
  opacity: 0.8;
  animation: navbarLogoGlitchRed 0.5s steps(2, jump-none) infinite;
}

.navbar__logo:hover::after {
  opacity: 0.8;
  animation: navbarLogoGlitchCyan 0.5s steps(2, jump-none) infinite;
}

@keyframes navbarLogoGlitchJitter {
  0%, 100% { transform: translate(0, 0); clip-path: inset(0 0 0 0); }
  20% { transform: translate(-1px, 0); clip-path: inset(10% 0 60% 0); }
  40% { transform: translate(1px, 0); clip-path: inset(60% 0 5% 0); }
  60% { transform: translate(-1px, 1px); clip-path: inset(0 0 0 0); }
  80% { transform: translate(1px, -1px); clip-path: inset(30% 0 30% 0); }
}

@keyframes navbarLogoGlitchRed {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(-3px, 1px); }
  40% { transform: translate(2px, -1px); }
  60% { transform: translate(-2px, 0); }
  80% { transform: translate(1px, 1px); }
}

@keyframes navbarLogoGlitchCyan {
  0%, 100% { transform: translate(0, 0); }
  20% { transform: translate(3px, -1px); }
  40% { transform: translate(-2px, 1px); }
  60% { transform: translate(2px, 0); }
  80% { transform: translate(-1px, -1px); }
}

.navbar__cluster {
  display: flex;
  align-items: center;
  gap: 16px;
}

.navbar__logo-mini {
  flex-shrink: 0;
  width: 46px;
  height: 13px;
}

.navbar__icons {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn img {
  width: 32px;
  height: 32px;
}

.icon-btn:hover img {
  opacity: 0.75;
}

/* ---------- Cart widget (header mini-cart) ---------- */

.cart-widget {
  position: relative;
}

.favorites-link {
  position: relative;
}

.favorites-link__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--color-purple);
  color: var(--color-white);
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
}

.favorites-link__count[hidden] {
  display: none;
}

.cart-widget__toggle {
  position: relative;
}

.cart-widget__count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--color-purple);
  color: var(--color-white);
  font-family: 'Unbounded', sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
}

.cart-widget__count[hidden] {
  display: none;
}

.minicart {
  position: absolute;
  top: calc(100% + 16px);
  right: 0;
  z-index: 20;
  width: 400px;
  max-width: calc(100vw - 32px);
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid rgba(24, 24, 24, 0.08);
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(24, 24, 24, 0.2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity 0.15s ease, transform 0.15s ease, visibility 0.15s;
  overflow: hidden;
}

.cart-widget--open .minicart {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.minicart__list {
  display: flex;
  flex-direction: column;
  max-height: 360px;
  overflow-y: auto;
}

.minicart-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 16px 20px;
  border-bottom: 1px solid #E8E5E5;
}

.minicart-item__media {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  background: #F3F1F1;
}

.minicart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.minicart-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.minicart-item__title {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-black);
}

.minicart-item__price {
  font-size: 14px;
  color: var(--color-black);
}

.minicart-item__price del {
  color: var(--color-gray-blue);
  text-decoration: line-through;
  margin-right: 6px;
}

.minicart-item__remove {
  position: relative;
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  color: var(--color-gray-blue);
}

.minicart-item__remove:hover {
  color: var(--color-black);
}

.minicart-item__remove::before,
.minicart-item__remove::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
}

.minicart-item__remove::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.minicart-item__remove::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.minicart__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 20px;
}

.minicart__clear {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  color: var(--color-gray-blue);
  white-space: nowrap;
}

.minicart__clear:hover {
  color: var(--color-purple);
}

.minicart__clear-icon {
  position: relative;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.minicart__clear-icon::before,
.minicart__clear-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: currentColor;
}

.minicart__clear-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.minicart__clear-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.minicart__total {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--color-black);
  white-space: nowrap;
}

.minicart__link {
  display: flex;
  margin: 0 20px 20px;
}

.minicart__empty {
  padding: 24px 20px;
  font-size: 14px;
  color: var(--color-gray-blue);
  text-align: center;
}

/* ---------- Search ---------- */

form.search {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 264px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 40px;
}

.search__icon {
  display: flex;
  flex-shrink: 0;
}

.search__input {
  width: 100%;
  background: none;
  border: none;
  outline: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-white);
}

.search__input::placeholder {
  color: var(--color-white);
  opacity: 0.48;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(135deg, #DCDCDE 0%, #E5E5E5 100%);
  overflow: hidden;
}

.hero__inner {
  position: relative;
  aspect-ratio: 1320 / 670;
}

.hero__decor-arc,
.hero__decor-watermark {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.hero__decor-arc {
  top: 0;
}

.hero__decor-watermark {
  top: 61.19%;
  will-change: transform;
}

.hero__poster {
  position: absolute;
  left: 1.818%;
  top: 3.582%;
  width: 30%;
  height: 50.448%;
  background: var(--color-white);
  border-radius: 24px;
  padding: 8px;
}

.hero__poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.hero__model {
  position: absolute;
  left: 35.152%;
  top: 4.776%;
  width: 29.697%;
  height: 95.224%;
}

.hero__model img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__widget {
  position: absolute;
  left: 68.182%;
  top: 24.179%;
  width: 31.818%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero__card {
  display: flex;
  align-items: center;
  gap: 12px;
  height: 152px;
  padding: 8px 16px 8px 8px;
  background: var(--color-white);
  border-radius: 24px;
}

.hero__card-image {
  flex-shrink: 0;
  width: 134px;
  height: 136px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(214, 209, 209, 0.32);
}

.hero__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__card-body {
  display: flex;
  flex-direction: column;
gap: 7px;
  flex: 1;
  min-width: 0;
}

.hero__card-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.hero__card-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #000;
}

.hero__card-desc {
    height: 56px;
  overflow: hidden;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-gray-blue);
}

.hero__card-divider {
  height: 1px;
  background: #E8E5E5;
  opacity: 0.4;
}

.hero__card-footer {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.hero__card-price {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  white-space: nowrap;
}

.hero__card-link {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-gray-blue);
}

.hero__card-link:hover {
  opacity: 0.75;
}

/* ---------- Pagination ---------- */

.pagination {
  display: flex;
  align-items: center;
  gap: 16px;
}

.pagination__arrow {
  display: flex;
  flex-shrink: 0;
  cursor: pointer;
}

.pagination__arrow.swiper-button-disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* ---------- Arrow icon (circle + SVG glyph, colored via currentColor) ---------- */

.arrow-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(24, 24, 24, 0.32);
  flex-shrink: 0;
  box-sizing: border-box;
  color: rgba(24, 24, 24, 0.32);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.arrow-icon__svg {
  display: block;
}

.pagination__arrow--next .arrow-icon {
  rotate: 180deg;
}

.pagination__arrow:hover .arrow-icon,
.pager__arrow:hover .arrow-icon {
  border-color: var(--color-purple);
  color: var(--color-purple);
}

.pagination__progress {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.pagination__num {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-black);
}

.pagination__line {
  position: relative;
  flex: 1;
  height: 1px;
  background: rgba(24, 24, 24, 0.15);
}

.pagination__line-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 0%;
  background: var(--color-purple);
}

.pagination__line-fill--animate {
  animation-name: pagination-line-fill;
  animation-timing-function: linear;
  animation-fill-mode: forwards;
}

@keyframes pagination-line-fill {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.pagination--lg {
  width: 432px;
  max-width: 100%;
  margin: 0 auto;
}

/* ---------- New arrivals ---------- */

.new-arrivals,
.sale-arrivals {
  background: var(--color-white);
}

.new-arrivals__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}

.new-arrivals__decor {
  position: relative;
  width: 100%;
      border-top: 1px solid #e8e5e5;
}

.new-arrivals__decor img {
  display: block;
  width: 100%;
  height: auto;
}

.new-arrivals__title {
  position: absolute;
  top: 70.7%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: var(--color-black);
  white-space: nowrap;
}

.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--color-white);
  border: 1px solid #E8E5E5;
  border-radius: 16px;
  padding: 8px 8px 24px;
}

.product-card__media {
  position: relative;
  width: 100%;
    aspect-ratio: 3 / 4;
        max-height: 387px;
}

.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}

.product-card__badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
      flex-wrap: wrap;
    padding-right: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  background: var(--color-purple);
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1;
  color: var(--color-white);
  text-transform: uppercase;
  white-space: nowrap;
}

.product-card__discount {
  width: 69px;
  height: 36px;
  display: block;
}

.product-card__body {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-height: 125px;
  padding: 0 8px;
  gap: 12px;
}

.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-card__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.3;
  color: #000;
}

.swatches {
  display: flex;
  align-items: center;
  gap: 12px;
}

.swatches__all {
  flex-shrink: 0;
  display: block;
}

.swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.swatch--outline {
  border: 1px solid #E8E5E5;
  box-sizing: border-box;
}

.product-card__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: auto;
}

.product-card__divider {
  height: 1px;
  background: #E8E5E5;
  opacity: 0.4;
}

.product-card__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px;
}

.product-card__prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.product-card__price {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: #000;
  white-space: nowrap;
}

.product-card__price-old {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #B9B4B4;
  text-decoration-line: line-through;
  text-decoration-color: var(--color-purple);
  text-decoration-thickness: 1px;
  white-space: nowrap;
}

.product-card__link {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-gray-blue);
  white-space: nowrap;
}

.product-card__link:hover {
  opacity: 0.75;
}

/* ---------- About ---------- */

.about {
  background: var(--color-white);
  padding-bottom: 24px;
      padding-top: 24px;
}

.divider {
  display: block;
  height: 1px;
  background: #E8E5E5;
}

.about__block {
  display: flex;
  flex-direction: column;
}

.about__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-top: 24px ;
}

.about__heading {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  text-align: center;
  color: var(--color-black);
}

.text-purple {
  color: var(--color-purple);
}

.text-gray {
  color: var(--color-gray-blue);
}

.about__row {
  display: flex;
  align-items: stretch;
  gap: 24px;
}

.about__images {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}

.about__image {
  overflow: hidden;
}

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

.about__image--small {
  width: 210px;
  height: 260px;
  border-radius: 16px;
}

.about__image--large {
  width: 420px;
  height: 454px;
  border-radius: 16px 16px 0 0;
}

.about__text-col {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
}

.about__paragraphs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.about__paragraphs p {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-gray-blue);
}

.about__watermark {
  position: relative;
  width: 100%;
    height: 96px;
  overflow: hidden;
}

.about__watermark span {
  position: absolute;
  top: 0;
  left: 0;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 146px;
    line-height: 116px;
  color: #E8E5E5;
  opacity: 0.48;
  white-space: nowrap;
}

.about__links {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.about__links-tick {
  width: 1px;
  height: 110px;
  background: #E8E5E5;
}

.link-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  padding: 32px 0;
  border-bottom: 1px solid #E8E5E5;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: var(--color-black);
  transition: color 0.3s ease;
}

.link-row:first-of-type {
  border-top: 1px solid #E8E5E5;
}

.link-row__icon {
  display: block;
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  transition: rotate 0.3s ease;
}

.link-row:hover {
  color: var(--color-purple);
}

.link-row:hover .link-row__icon {
  rotate: 45deg;
}

.link-row:active {
  color: var(--color-purple-active);
}

.link-row:active .link-row__icon {
  rotate: 45deg;
}

/* ---------- Lookbook ---------- */

.lookbook {
  background: var(--color-white);
    padding: 64px 0 42px;
  overflow: hidden;
}

.lookbook__inner {
  position: relative;
    padding-top: 152px;
    border-top: 1px solid #e8e5e5;
}

.lookbook__watermark {
    position: absolute;
    bottom: 208px;
    width: 100%;
    height: 160px;
    pointer-events: none;
}

.lookbook__watermark span {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 214px;
  line-height: 96px;
  color: #E8E5E5;
  opacity: 0.48;
  white-space: nowrap;
}

.lookbook__images {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.lookbook__track {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  width: max-content;
  will-change: transform;
}

.lookbook__group {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  flex-shrink: 0;
}

.lookbook__item {
  flex: 0 0 210px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

.lookbook__item:hover img {
  opacity: 0.85;
}

.lookbook__item--tall {
  aspect-ratio: 210 / 282;
}

.lookbook__item--short {
  aspect-ratio: 210 / 242;
}

.lookbook__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.2s ease;
}

/* ---------- Lookbook modal ---------- */

.lookbook-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.lookbook-modal--open {
  opacity: 1;
  visibility: visible;
}

.lookbook-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 24, 0.64);
}

.lookbook-modal__dialog {
  position: relative;
  z-index: 1;
  width: 720px;
  max-width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 32px;
  background: var(--color-white);
  border-radius: 24px;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

.lookbook-modal--open .lookbook-modal__dialog {
  transform: translateY(0) scale(1);
}

.lookbook-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
  z-index: 1;
}

.lookbook-modal__close-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.lookbook-modal__close-icon::before,
.lookbook-modal__close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--color-black);
}

.lookbook-modal__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.lookbook-modal__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.lookbook-modal__viewer {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  min-width: 0;
}

.lookbook-modal__image-wrap {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lookbook-modal__image-wrap img {
  display: block;
  max-width: 100%;
  max-height: 70vh;
  width: auto;
  height: auto;
  border-radius: 16px;
  object-fit: contain;
}

.lookbook-modal__counter {
  font-weight: 500;
  font-size: 14px;
  color: var(--color-gray-blue);
}

.lookbook-modal__counter-sep {
  margin: 0 4px;
  opacity: 0.5;
}

/* ---------- Footer ---------- */

.footer {
  background: var(--color-black);
}

.footer__main {
  padding: 64px 0;
}

.footer__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 277px;
  flex-shrink: 0;
}

.footer__logo {
  width: 277px;
  height: auto;
}

.footer__payments {
  display: flex;
  gap: 24px;
}

.footer__payments-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__payments-col img {
  width: 48.88px;
  height: auto;
  display: block;
}

.footer__col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__heading {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--color-white);
}

.footer__list,
.footer__col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__list a,
.footer__col ul a {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #E8E5E5;
}

.footer__list a:hover,
.footer__col ul a:hover {
  opacity: 0.75;
}

.footer__col--contacts {
  gap: 32px;
  width: 246px;
  flex-shrink: 0;
}

.footer__contact-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-item {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__contact-main {
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-white);
}

.footer__contact-main:hover {
  opacity: 0.75;
}

.footer__contact-sub {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #E8E5E5;
}

.footer__social-block {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__social-inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__social-icons {
  display: flex;
  align-items: center;
  gap: 8px;
}

.social-icon {
  display: inline-flex;
}

.social-icon img {
  width: 48px;
  height: 48px;
  display: block;
}

.social-icon:hover {
  opacity: 0.85;
}

.footer__disclaimer {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  color: #E8E5E5;
}

.footer__bottom {
  background: #000;
  padding: 8px 0;
}

.footer__bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer__copy {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  color: #B9B4B4;
}

.footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer__bottom-links a {
  font-weight: 500;
  font-size: 12px;
  line-height: 1.4;
  color: #B9B4B4;
}

.footer__bottom-links a:hover {
  opacity: 0.75;
}

/* ---------- Shop page ---------- */

.shop {
  background: var(--color-white);
  padding: 32px 0 64px;
}

.shop__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.breadcrumbs__link {
  font-weight: 500;
  font-size: 14px;
  color: var(--color-gray-blue);
  opacity: 0.4;
}

.breadcrumbs__link:hover {
  opacity: 0.6;
}

.breadcrumbs__dot {
  width: 4px;
  height: 4px;
  background: var(--color-black);
  flex-shrink: 0;
}

.breadcrumbs__current {
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
}

.page-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: var(--color-black);
}

.shop-banner {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(135deg, #DCDCDE 0%, #E5E5E5 100%);
  aspect-ratio: 1320 / 241;
}

.shop-banner__decor {
  position: absolute;
  top: 0;
  left: 3.636%;
  width: 92.727%;
  height: auto;
  pointer-events: none;
  will-change: transform;
}

.shop-banner__photo {
  position: absolute;
  left: 32.88%;
  top: -71.4%;
  width: 34.32%;
  height: 412.4%;
  will-change: transform;
  animation: shopBannerPhotoFloat 28s ease-in-out infinite;
}

@keyframes shopBannerPhotoFloat {
  0%,
  100% {
    transform: translateY(-13%);
  }
  50% {
    transform: translateY(-7%);
  }
}

.shop-banner__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

/* ---------- Filters ---------- */

.filters {
  display: flex;
  flex-direction: column;
  width: 309px;
  flex-shrink: 0;
      gap: 12px;
}

.filters__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 16px;
}

.filters__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--color-black);
}

.filters__reset {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-gray-blue);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.filters__reset:hover {
  color: var(--color-purple);
}

.filters__reset[hidden] {
  display: none;
}

.filters__radios {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 16px;
}

.radio {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.radio input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.radio__circle {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--color-white);
  border: 1.5px solid #E8E5E5;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.radio input:checked + .radio__circle {
  border-color: var(--color-purple);
  border-width: 6px;
}

.radio__label {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-black);
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 24px;
  
}
.driver {
    height: 1px;
    background: #E8E5E5;
}
.filter-group__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--color-black);

}

.filter-group--collapsed .filter-group__header {
  color: var(--color-gray-blue);

}

.filter-group__icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.filter-group__icon::before,
.filter-group__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--color-black);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.filter-group__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.filter-group--collapsed .filter-group__icon {
  opacity: 0.48;
}

.filter-group--collapsed .filter-group__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 1;
}

.filter-group__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
      padding-bottom: 16px;
}

.filter-group--collapsed .filter-group__body {
  display: none;
}

.checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.checkbox__box {
    width: 27px;
    height: 27px;
  flex-shrink: 0;
  border-radius: 4px;
  background: var(--color-white);
  border: 1.5px solid #E8E5E5;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.checkbox input:checked + .checkbox__box {
  background: var(--color-purple);
  border-color: var(--color-purple);
  background-image: url('../img/icon-plus.svg');
}

.checkbox__label {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-gray-blue);
}

/* ---------- Sort bar ---------- */

.shop-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  flex: 1;
  min-width: 0;
}

.sort-bar {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.sort-bar__row {
  display: flex;
  align-items: center;
  gap: 12px;
      padding-top: 12px;
    padding-bottom: 21px;
}

.sort-bar__label {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-black);
}

.sort-bar__options {
  display: flex;
  align-items: center;
  gap: 16px;
}

.sort-bar__option {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-weight: 500;
  font-size: 16px;
  color: #B9B4B4;
}

.sort-bar__option--active {
  color: var(--color-purple);
}

.sort-bar__chevron {
  width: 16px;
  height: 16px;
}

.sort-bar__chevron--up {
  transform: rotate(180deg);
}

/* ---------- Shop product grid ---------- */

.products--shop {
  grid-template-columns: repeat(3, 1fr);
  min-width: 0;
}

.product-card__wishlist {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 35px;
  height: 35px;
  padding: 0;
  display: block;
}

.wishlist-icon__circle {
  fill: var(--color-white);
}

.wishlist-icon__heart {
  stroke: var(--color-black);
}

.product-card__wishlist--active .wishlist-icon__circle,
.product-info__wishlist--active .wishlist-icon__circle,
.cart-item__wishlist--active .wishlist-icon__circle {
  fill: var(--color-purple);
}

.product-card__wishlist--active .wishlist-icon__heart,
.product-info__wishlist--active .wishlist-icon__heart,
.cart-item__wishlist--active .wishlist-icon__heart {
  stroke: var(--color-white);
}

/* ---------- Pager ---------- */

.pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid #EBEBEB;
}

.pager__list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pager__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-weight: 400;
  font-size: 20px;
  color: #B9B4B4;
}

.pager__link:hover {
  color: var(--color-purple);
}

.pager__link--active {
  background: var(--color-purple);
  color: var(--color-white);
}

.pager__link--active:hover {
  color: var(--color-white);
}

.pager__ellipsis {
  padding: 0 4px;
  font-size: 20px;
  color: #B9B4B4;
}

.pager__arrow {
  display: flex;
  flex-shrink: 0;
}

.pager__arrow[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

/* ---------- Product page ---------- */

.product {
  background: var(--color-white);
  padding: 32px 0 80px;
}

.product .breadcrumbs {
  margin-bottom: 32px;
}

.product__top {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 40px;
}

.product-gallery {
    display: flex;
    gap: 16px;
    flex: 0 0 57.045%;
    min-width: 0;
        position: sticky;
    top: 0;
}

.product-gallery__main {
  display: block;
  width: 100%;
    aspect-ratio: 3 / 4;
  border-radius: 24px;
  overflow: hidden;
}

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

.product-gallery__thumbs {
    display: flex;
    align-items: center;
    gap: 12px;
    scrollbar-: none;
    flex-direction: column;
}

.product-gallery__thumbs::-webkit-scrollbar {
  display: none;
}

.product-gallery__thumb-btn {
  flex: 0 0 auto;
  width: 96px;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1.5px solid transparent;
  cursor: pointer;
}

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

.product-gallery__thumb-btn:hover {
  opacity: 0.85;
}

.product-gallery__thumb-btn--active {
  border-color: var(--color-purple);
}

.product-gallery__main {
  position: relative;
}

.product-gallery__main img {
  cursor: zoom-in;
}

.product-gallery__zoom {
  position: fixed;
  width: 320px;
  height: 320px;
  border-radius: 24px;
  background-color: var(--color-white);
  background-repeat: no-repeat;
  box-shadow: 0 16px 40px rgba(24, 24, 24, 0.2);
  border: 1px solid rgba(24, 24, 24, 0.08);
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.15s ease;
  z-index: 999;
}

.product-gallery__zoom--visible {
  opacity: 1;
  visibility: visible;
}

.product-info {
  display: flex;
  flex-direction: column;
  gap: 32px;
  flex: 0 0 41.136%;
  min-width: 0;
}

.product-info__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.product-info__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

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

.badge--dark {
  background: var(--color-black);
}

.product-info__wishlist svg {
  display: block;
  width: 35px;
  height: 35px;
}

.product-info__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-info__sku {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-gray-blue);
}

.product-info__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.25;
  color: var(--color-black);
}

.product-info__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid #E8E5E5;
}

.product-info__price-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-info__prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.product-info__price,
.product-info__prices ins,
.product-info__prices .woocommerce-Price-amount {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--color-black);
  white-space: nowrap;
  text-decoration: none;
}

.product-info__prices ins {
  order: 1;
}

.product-info__price-old,
.product-info__prices del {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #B9B4B4;
  text-decoration-line: line-through;
  text-decoration-color: var(--color-purple);
  text-decoration-thickness: 1px;
  white-space: nowrap;
  order: 2;
}

.product-info__prices del .woocommerce-Price-amount {
  font-size: inherit;
  color: inherit;
}

.product-info__discount {
  width: 68px;
  height: 35px;
  display: block;
}

.discount-badge {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 69px;
  height: 36px;
  color: var(--color-purple);
}

.discount-badge__shape {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.discount-badge__text {
  position: relative;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 12px;
  color: var(--color-white);
  white-space: nowrap;
}

.bonus-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 157px;
  padding: 12px;
  border: 1px solid var(--color-purple);
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-purple);
  white-space: nowrap;
}

.product-info__colors {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-info__label {
  font-weight: 500;
  font-size: 18px;
  color: var(--color-gray-blue);
}

.color-swatches {
  display: flex;
  align-items: center;
  gap: 12px;
}

.color-swatch {
  width: 97px;
  height: 97px;
  border-radius: 12px;
  overflow: hidden;
  border: 1.33px solid transparent;
  flex-shrink: 0;
}

.color-swatch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.color-swatch--active {
  border-color: var(--color-purple);
}

.product-info__variants {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 0;
  border-top: 1px solid #E8E5E5;
  border-bottom: 1px solid #E8E5E5;
}

.product-info__row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.size-table-link {
  font-weight: 500;
  font-size: 14px;
  color: #B9B4B4;
  text-decoration: underline;
}

.size-table-link:hover {
  opacity: 0.75;
}

.size-table-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s;
}

.size-table-modal--open {
  opacity: 1;
  visibility: visible;
}

.size-table-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 24, 0.64);
}

.size-table-modal__dialog {
  position: relative;
  z-index: 1;
  width: 480px;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px;
  background: var(--color-white);
  border-radius: 24px;
  transform: translateY(12px) scale(0.98);
  transition: transform 0.25s ease;
}

.size-table-modal--open .size-table-modal__dialog {
  transform: translateY(0) scale(1);
}

.size-table-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.size-table-modal__close-icon {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
}

.size-table-modal__close-icon::before,
.size-table-modal__close-icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 18px;
  height: 2px;
  background: var(--color-black);
}

.size-table-modal__close-icon::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.size-table-modal__close-icon::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.size-table-modal__image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.size-table-modal__text {
  min-height: 24px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-gray-blue);
}

.size-list {
  display: flex;
  align-items: center;
  gap: 8px;
}

.size-pill {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #E8E5E5;
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--color-black);
}

.size-pill--active {
  background: var(--color-purple);
  border-color: var(--color-purple);
  color: var(--color-white);
}

.size-pill--out {
  opacity: 0.24;
}

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

.product-info__availability img {
  display: block;
  width: 24px;
  height: 24px;
}

.product-info__availability span {
  font-weight: 500;
  font-size: 18px;
  color: var(--color-purple);
}

.product-info__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px;
  border-radius: 12px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 18px;
}

.btn--primary {
  background: var(--color-purple);
  color: var(--color-white);
}

.btn--primary:hover {
  background: var(--color-purple-active);
}

.btn--outline {
  border: 1px solid var(--color-purple);
  color: var(--color-purple);
}

.btn--outline:hover {
  background: var(--color-purple);
  color: var(--color-white);
}

.product-panel {
  background: var(--color-white);
  border: 1px solid #E8E5E5;
  border-radius: 24px;
  padding: 8px 24px;
}

.accordion__item {
  border-bottom: 1px solid #E8E5E5;
}

.accordion__item:last-child {
  border-bottom: none;
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 0;
  text-align: left;
}

.accordion__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--color-black);
}

.accordion__item--open .accordion__title {
  color: var(--color-gray-blue);
  opacity: 0.48;
}

.accordion__icon {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.accordion__icon::before,
.accordion__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--color-black);
  transform: translate(-50%, -50%);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.accordion__item--open .accordion__icon {
  opacity: 0.48;
}

.accordion__item--open .accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.accordion__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-gray-blue);
}

.accordion__item--open .accordion__body {
  max-height: 2000px;
}

.accordion__body-inner {
  padding-bottom: 24px;
}

.accordion__specs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.accordion__specs-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.accordion__specs-label {
  color: var(--color-black);
}

.product-recommend {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 32px;
}
.product-recommend__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--color-black);
  text-align: center;
}

.product-recommend__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
      padding-bottom: 32px;
}

.product-recommend__slider {
  width: 100%;
}

.product-recommend__slider .swiper-slide {
  height: auto;
}

.product-recommend__slider .product-card {
  height: 100%;
}

/* ---------- Cart page ---------- */

.cart {
  background: var(--color-white);
  padding: 32px 0 64px;
}

.cart-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.cart__layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 65.455%;
  min-width: 0;
}

.cart-auth {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 16px;
  background: #F7F7F7;
  border: 1px solid #E8E5E5;
  border-radius: 12px;
}
.wc-block-components-form .wc-block-components-text-input input[type=text] {
    border: unset;
        padding: 16px 18px;
}
.wc-block-components-form .wc-block-components-text-input input:-webkit-autofill, .wc-block-components-form .wc-block-components-text-input.is-active input[type=email], .wc-block-components-form .wc-block-components-text-input.is-active input[type=number], .wc-block-components-form .wc-block-components-text-input.is-active input[type=password], .wc-block-components-form .wc-block-components-text-input.is-active input[type=tel], .wc-block-components-form .wc-block-components-text-input.is-active input[type=text], .wc-block-components-form .wc-block-components-text-input.is-active input[type=url], .wc-block-components-text-input input:-webkit-autofill, .wc-block-components-text-input.is-active input[type=email], .wc-block-components-text-input.is-active input[type=number], .wc-block-components-text-input.is-active input[type=password], .wc-block-components-text-input.is-active input[type=tel], .wc-block-components-text-input.is-active input[type=text], .wc-block-components-text-input.is-active input[type=url] {
    padding: 24px 15px 8px;
}
.cart-auth__info {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-auth__info img {
  display: block;
  width: 32px;
  height: 32px;
  flex-shrink: 0;
}

.cart-auth__info p {
  font-weight: 600;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-gray-blue);
}

.btn-sm {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  background: var(--color-purple);
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-white);
  white-space: nowrap;
  flex-shrink: 0;
      outline: none;
    border: none;
}

.btn-sm:hover {
  background: var(--color-purple-active);
}

.cart-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
    padding: 18px;
  background: #F7F7F7;
  border: 1px solid #E8E5E5;
  border-radius: 12px;
      margin-bottom: 12px;
}

.cart-toolbar__remove {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-purple);
}

.cart-toolbar__remove:hover {
  opacity: 0.75;
}

.cart-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
}

.cart-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.cart-checkbox__box {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  border-radius: 4px;
  background: var(--color-white);
  border: 1.5px solid #E8E5E5;
  background-size: cover;
}

.cart-checkbox input:checked + .cart-checkbox__box {
  background-image: url('../img/icon-checkbox-cart.svg');
}

.cart-checkbox__label {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-black);
}

.cart-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 8px 24px 8px 8px;
  background: var(--color-white);
  border: 1px solid #E8E5E5;
  border-radius: 16px;
}

.cart-item__media {
  position: relative;
  flex-shrink: 0;
  width: 181px;
  height: 174px;
  border-radius: 12px;
  overflow: hidden;
}

.cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-item__media .cart-checkbox {
  position: absolute;
  top: 8px;
  left: 8px;
}

.cart-item__body {
  display: flex;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
  gap: 16px;
}

.cart-item__info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 360px;
  min-width: 0;
}

.cart-item__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--color-black);
}

.cart-item__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.cart-item__meta span {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #B9B4B4;
}

.cart-item__aside {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 32px;
  width: 160px;
  flex-shrink: 0;
}

.cart-item__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cart-item__actions button img,
.cart-item__actions button svg {
  display: block;
  width: 35px;
  height: 35px;
}

.cart-item__actions button:hover {
  opacity: 0.8;
}

.cart-item__pricing {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex: 1;
}

.cart-item__prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.cart-item__price {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--color-black);
  white-space: nowrap;
}

.cart-item__price-old {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #B9B4B4;
  text-decoration-line: line-through;
  text-decoration-color: var(--color-purple);
  text-decoration-thickness: 1px;
  white-space: nowrap;
}

.qty-stepper {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
}

.qty-stepper__btn {
  padding: 6px 12px;
  background: #F7F7F7;
  border-radius: 4px;
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-black);
}

.qty-stepper__btn:hover {
  background: #EFEFEF;
}

.qty-stepper__value {
  flex: 1;
  padding: 6px 24px;
  background: #F7F7F7;
  border-radius: 4px;
  text-align: center;
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-black);
}

.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 32.727%;
  min-width: 0;
}

.summary-card {
  padding: 24px 16px;
  background: #F7F7F7;
  border: 1px solid #E8E5E5;
  border-radius: 16px;
}

.summary-card__inner {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.summary-card__inner--tight {
  gap: 12px;
}

.summary-card__bonus-head {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.summary-card__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.summary-card__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #282932;
}

.summary-card__weight {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #B9B4B4;
  white-space: nowrap;
}

.summary-card__divider {
  height: 1px;
  background: #E1E1E6;
}

.summary-rows {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.summary-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.summary-row__label {
  font-weight: 500;
  font-size: 18px;
  color: var(--color-gray-blue);
}

.summary-row__value {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  color: #282932;
}

.summary-row__value--discount {
  color: #E43358;
}

.summary-total {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.summary-total__meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.summary-total__label {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: var(--color-black);
}

.summary-total__note {
  font-weight: 500;
  font-size: 16px;
  color: #B9B4B4;
}

.summary-total__value {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.4;
  color: #282932;
}

.summary-card__label {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #282932;
}

.summary-card__hint {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.summary-card__hint span:first-child {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: var(--color-gray-blue);
}

.summary-card__hint span:last-child {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-purple);
}

.input-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.text-input {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
  padding: 16px 12px;
  background: var(--color-white);
  border: 1px solid #EAEAEA;
  border-radius: 12px;
}

.text-input input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: none;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
}

.text-input img {
  display: block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.cart-cta {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-cta__button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 24px 40px;
  background: var(--color-purple);
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-white);
}

.cart-cta__button:hover {
  background: var(--color-purple-active);
}

.cart-cta__hint {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4;
  color: #B9B4B4;
  text-align: center;
}

.cart-cta__button[disabled] {
  opacity: 0.4;
  pointer-events: none;
}

.cart-list__empty {
  padding: 24px;
  background: var(--color-white);
  border: 1px solid #E8E5E5;
  border-radius: 16px;
  font-size: 14px;
  color: var(--color-gray-blue);
  text-align: center;
}

.favorites-empty {
  padding: 24px;
  background: var(--color-white);
  border: 1px solid #E8E5E5;
  border-radius: 16px;
  font-size: 14px;
  color: var(--color-gray-blue);
  text-align: center;
}

.favorites-empty[hidden] {
  display: none;
}

.cart-page-promo__error {
  font-weight: 500;
  font-size: 13px;
  color: #E43358;
}

.cart-page--loading {
  opacity: 0.6;
  pointer-events: none;
  transition: opacity 0.15s ease;
}

/* ---------- Checkout page ---------- */

.checkout {
  background: var(--color-white);
  padding: 32px 0 80px;
}

.checkout__layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.checkout-main {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 0 0 65.455%;
  min-width: 0;
}

.checkout-panels {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-rows {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}

.field-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.field-input {
  display: flex;
  align-items: center;
  gap: 10px;
  flex: 1;
  min-width: 0;
  padding: 16px;
  background: var(--color-white);
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: #363D42;
}

.field-input::placeholder {
  color: #363D42;
  opacity: 0.48;
}

.option-grid {
  display: flex;
  gap: 12px;
}

.option-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  flex: 1;
  min-width: 0;
  padding: 12px 16px;
  background: var(--color-white);
  border-radius: 12px;
  cursor: pointer;
}

.option-card input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.option-card__radio {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 4px;
  background-image: url('../img/icon-radio-unchecked.svg');
  background-size: cover;
}

.option-card input:checked + .option-card__radio {
  background-image: url('../img/icon-radio-checked.svg');
}

.option-card__body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.option-card__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-black);
}

.option-card__desc {
  font-weight: 500;
  font-size: 16px;
  color: #B9B4B4;
}

.pickup-card {
  display: none;
  align-items: stretch;
  gap: 24px;
  padding: 24px;
  background: var(--color-white);
  border-radius: 20px;
}

.pickup-card--visible {
  display: flex;
}

.pickup-card__main {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.pickup-card__title {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-black);
}

.pickup-card__address {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #181818;
}

.pickup-card__note {
  font-weight: 500;
  font-size: 16px;
  color: #B9B4B4;
}

.pickup-card__aside {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 219px;
  flex-shrink: 0;
}

.pickup-card__aside span {
  display: block;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  color: #181818;
}

.checkout-promo-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.checkout-promo-row .summary-card {
  flex: 1;
  min-width: 0;
}

/* ---------- Checkout (native WooCommerce Checkout Block) ---------- */
/* /checkout/ renders WooCommerce's own Cart & Checkout Block (no custom
   page-checkout.php) — these rules only re-skin its existing markup/classes
   to match the site's visual language; the fields/steps/behavior stay 100%
   native WooCommerce. */

body.woocommerce-checkout #secondary {
  display: none;
}

body.woocommerce-checkout .entry-header,
body.woocommerce-checkout .entry-content {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

body.woocommerce-checkout .entry-header {
  padding-top: 32px;
}

body.woocommerce-checkout .entry-content {
  padding-top: 24px;
  padding-bottom: 80px;
}

body.woocommerce-checkout .entry-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 1.4;
  color: var(--color-black);
}

body.woocommerce-checkout .wc-block-checkout,
body.woocommerce-checkout .wc-block-checkout * {
  font-family: 'Gilroy', 'Helvetica Neue', Arial, sans-serif;
}

body.woocommerce-checkout .wc-block-components-sidebar-layout {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start;
  gap: 24px;
}

/* Invisible scroll-restoration anchor Woo Blocks renders as the layout's
   first flex child — left in normal flow it claims a full-width row and
   wraps .wc-block-components-main/-sidebar onto separate lines below it. */
body.woocommerce-checkout .with-scroll-to-top__scroll-point {
  position: absolute;
  width: 0;
  height: 0;
}

body.woocommerce-checkout .wc-block-components-main {
  flex: 0 0 65.455% !important;
  min-width: 0;
  max-width: 65.455% !important;
}

body.woocommerce-checkout .wc-block-components-sidebar {
  flex: 0 0 32.727% !important;
  min-width: 0;
  max-width: 32.727% !important;
}

body.woocommerce-checkout .wc-block-components-checkout-step {
  padding: 24px 16px;
  background: #F7F7F7;
  border: 1px solid #E8E5E5;
  border-radius: 16px;
  margin-bottom: 16px;
}

body.woocommerce-checkout .wc-block-components-checkout-step__heading-container {
  margin-bottom: 16px;
}

body.woocommerce-checkout .wc-block-components-checkout-step__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.4;
  color: #282932;
}

body.woocommerce-checkout .wc-block-components-checkout-step__content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Text inputs + the country/state combobox share the same boxed look as
   .field-input elsewhere on the site. Woo Blocks renders each field's name
   as a <label> rather than a native placeholder attribute. Text inputs:
   the label sits centered inside the box like a real placeholder, faded
   out via Woo's own is-active class (set once the field is focused or has
   a value). The select is different — it always shows a real value (never
   truly empty), so its label stays a small caption above the value instead
   of overlapping it. */
body.woocommerce-checkout .wc-block-components-text-input {
  position: relative;
  background: var(--color-white);
  border: 1px solid #EAEAEA;
  border-radius: 8px;
}

body.woocommerce-checkout .wc-blocks-components-select__container {
  position: relative;
  padding: 20px 16px 8px;
  background: var(--color-white);
  border: 1px solid #EAEAEA;
  border-radius: 8px;
}

body.woocommerce-checkout .wc-block-components-text-input input,
body.woocommerce-checkout .wc-blocks-components-select__select {
  width: 100%;
  border: none;
  outline: none;
  background: none;
  padding: 0;
  font-weight: 500;
  font-size: 16px;
  color: #363D42;
}

body.woocommerce-checkout .wc-block-components-text-input label {
  position: absolute;
  top: 50%;
  left: 16px;
  transform: translateY(-50%);
  font-weight: 500;
  font-size: 16px;
  color: #363D42;
  opacity: 0.48;
  pointer-events: none;
  transition: opacity 0.1s ease;
}

body.woocommerce-checkout .wc-blocks-components-select__label {
  position: absolute;
  top: 6px;
  left: 16px;
  font-size: 12px;
  font-weight: 500;
  color: #363D42;
  opacity: 0.48;
}

body.woocommerce-checkout .wc-blocks-components-select__expand {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

body.woocommerce-checkout .wc-block-components-address-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

body.woocommerce-checkout .wc-block-components-address-form__country,
body.woocommerce-checkout .wc-block-components-address-form__address_1,
body.woocommerce-checkout .wc-block-components-address-form__address_2-toggle,
body.woocommerce-checkout .wc-block-components-address-form__address_2-hidden-input {
  grid-column: 1 / -1;
}

body.woocommerce-checkout .wc-block-components-checkout-step__container .wc-block-components-text-input {
  margin-bottom: 0;
}

body.woocommerce-checkout .wc-block-components-address-form__address_2-toggle {
  font-weight: 500;
  font-size: 13px;
  color: var(--color-purple);
}

body.woocommerce-checkout .wc-block-checkout__guest-checkout-notice,
body.woocommerce-checkout .wc-block-checkout__terms {
  font-weight: 400;
  font-size: 13px;
  color: var(--color-gray-blue);
}

body.woocommerce-checkout .wc-block-components-notice-banner {
  padding: 16px;
  border-radius: 12px;
  background: var(--color-white);
  border: 1px solid #E8E5E5;
}

body.woocommerce-checkout .wc-block-components-notice-banner.is-error {
  border-color: #E43358;
}

/* Order summary sidebar card */
body.woocommerce-checkout .wc-block-components-sidebar .wc-block-components-panel,
body.woocommerce-checkout .wp-block-woocommerce-checkout-order-summary-block {
  padding: 24px 16px;
  background: #F7F7F7;
  border: 1px solid #E8E5E5;
  border-radius: 16px;
}

body.woocommerce-checkout .wc-block-components-checkout-order-summary__title-text,
body.woocommerce-checkout .wc-block-components-order-summary__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 24px;
  color: #282932;
}

body.woocommerce-checkout .wc-block-components-order-summary-item__description {
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
}

body.woocommerce-checkout .wc-block-components-totals-item__label {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-gray-blue);
}

body.woocommerce-checkout .wc-block-components-totals-item__value,
body.woocommerce-checkout .wc-block-formatted-money-amount {
  font-family: 'Unbounded', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #282932;
}

body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__label {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--color-black);
}

body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-components-totals-item__value,
body.woocommerce-checkout .wc-block-components-totals-footer-item .wc-block-formatted-money-amount {
  font-size: 20px;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button {
  width: 100%;
  padding: 24px 40px;
  background: var(--color-purple);
  border-radius: 8px;
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button:hover {
  background: var(--color-purple-active);
}

body.woocommerce-checkout .wc-block-components-checkout-place-order-button__text {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-white);
}

.product-card__media img.product-card__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
/* ---------- Help page ---------- */

.help {
  background: var(--color-white);
  padding: 32px 0 80px;
}

.help-cards {
  display: flex;
  align-items: stretch;
  gap: 12px;
}

.help-card {
  position: relative;
  display: block;
  flex: 1;
  min-width: 0;
  aspect-ratio: 432 / 491;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(135deg, #DCDCDE 0%, #E5E5E5 100%);
}

.help-card__title {
  position: absolute;
  z-index: 1;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #282932;
}

.help-card--delivery .help-card__decor {
  position: absolute;
  left: -11.111%;
  top: 44.603%;
  width: 122.222%;
  height: auto;
  pointer-events: none;
}

.help-card--delivery .help-card__photo {
  position: absolute;
  left: 7.407%;
  top: 9.166%;
  width: 85.167%;
  height: 74.187%;
  object-fit: contain;
}

.help-card--delivery .help-card__title {
  left: 16.435%;
  top: 86.558%;
}

.help-card--returns .help-card__ring {
  position: absolute;
  left: 23.843%;
  top: 26.884%;
  width: 52.546%;
  height: 46.232%;
  border: 1px solid #D6D1D1;
  border-radius: 50%;
}

.help-card--returns .help-card__vline {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: #D6D1D1;
}

.help-card__diag {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 151.4%;
  height: 1px;
  background: #D6D1D1;
}

.help-card__diag--a {
  transform: translate(-50%, -50%) rotate(48.63deg);
}

.help-card__diag--b {
  transform: translate(-50%, -50%) rotate(-48.63deg);
}

.help-card--returns .help-card__photo {
  position: absolute;
  left: 32.870%;
  top: 0;
  width: 34.259%;
  height: 80.041%;
  object-fit: contain;
}

.help-card--returns .help-card__title {
  left: 35.185%;
  top: 86.558%;
}

.help-card__stripe {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: #D6D1D1;
}

.help-card--loyalty .help-card__photo {
  position: absolute;
  left: 30.093%;
  top: 3.259%;
  width: 69.907%;
  height: 96.741%;
  object-fit: contain;
}

.help-card--loyalty .help-card__title {
  left: 5.556%;
  top: 81.263%;
  width: 44.676%;
}

/* ---------- Help detail page ---------- */

.detail {
  background: var(--color-white);
  padding: 32px 0 80px;
}

.detail-hero {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 24px;
}

.detail-banner {
  position: relative;
  display: flex;
  align-items: center;
  height: 124px;
  padding: 0 32px;
  border-radius: 24px;
  background: linear-gradient(135deg, #DCDCDE 0%, #E5E5E5 100%);
  overflow: hidden;
}

.detail-banner__title {
  position: relative;
  z-index: 1;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 48px;
  color: var(--color-black);
}

.detail-hero__decor {
    position: absolute;
    right: 0;
    width: 40%;
    aspect-ratio: 1 / 1;
    pointer-events: none;
    will-change: transform;
    animation: detailHeroDecorFloat 16s ease-in-out infinite;
}

@keyframes detailHeroDecorFloat {
  0%,
  100% {
    transform: translateY(-6%);
  }
  50% {
    transform: translateY(6%);
  }
}

.detail-hero__decor-arc {
  position: absolute;
  left: 0;
  top: 20.33%;
  width: 100%;
  height: auto;
}

.detail-hero__decor-photo {
    position: absolute;
    right: 0;
    top: 0;
    width: 91.44%;
    height: 100%;
    object-fit: contain;
}

.faq-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.accordion__title-group {
  display: flex;
  align-items: center;
  gap: 12px;
}

.accordion__number {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: #D6D1D1;
}

/* ---------- Contacts page ---------- */

.contacts-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 24px;
}

.contact-cards {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-bottom: 24px;
}

.contact-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex: 1;
  min-width: 0;
  min-height: 340px;
  padding: 24px;
  background: var(--color-white);
  border: 1px solid #E8E5E5;
  border-radius: 16px;
}

.contact-card__number {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-gray-blue);
}

.contact-card__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
      min-height: 195px;
}

.contact-card__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 18px;
  color: var(--color-black);
}

.contact-card__desc {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-gray-blue);
}

.contact-card__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
      min-height: 90px;
}

.contact-card__link {
  font-family: 'Gilroy', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.4;
  color: var(--color-purple);
}

.contact-card__link:hover {
  opacity: 0.75;
}

.contact-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.btn-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
    padding: 24px 32px;
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
}

.btn-social img {
  width: 48px;
  height: 48px;
  margin: -12px 0;
}

.btn-social--filled {
  background: var(--color-purple);
  color: var(--color-white);
}

.btn-social--filled:hover {
  background: var(--color-purple-active);
}

.btn-social--outline {
  border: 1px solid var(--color-purple);
  color: var(--color-purple);
}

.btn-social--outline:hover {
  background: var(--color-purple);
  color: var(--color-white);
}

/* ---------- 404 page ---------- */

.notfound {
  position: relative;
  background: var(--color-white);
  padding: 96px 0;
  overflow: hidden;
}

.notfound__lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.notfound__line {
  position: absolute;
  top: 0;
  width: 1px;
  height: 100%;
  background: #E8E5E5;
}

.notfound__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.notfound__code {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 248px;
  line-height: 1;
  color: var(--color-black);
}

.notfound__zero {
  color: var(--color-purple);
}

.notfound__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  max-width: 435px;
}

.notfound__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 32px;
  color: var(--color-black);
}

.notfound__desc {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-gray-blue);
}

.notfound__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 24px 32px;
  background: var(--color-purple);
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.4;
  color: var(--color-white);
}

.notfound__button:hover {
  background: var(--color-purple-active);
}
/* ---------- Responsive ---------- */

@media (max-width: 1440px) {
  :root {
    --container-padding: 60px;
  }

  .navbar__inner {
    gap: 48px;
  }
}

@media (max-width: 1100px) {
  :root {
    --container-padding: 24px;
  }

  .navbar__inner {
    flex-wrap: wrap;
  }

  .navbar__right {
    flex: 1 1 100%;
  }
}

@media (max-width: 640px) {
  .navbar__menu {
    display: none;
  }

  .search {
    width: 100%;
  }

  .navbar__cluster {
    flex: 1;
  }
}

@media (max-width: 900px) {
  .hero__inner {
    aspect-ratio: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 32px 24px;
  }

  .hero__decor {
    display: none;
  }

  .hero__poster,
  .hero__model,
  .hero__widget {
    position: static;
    width: 100%;
    max-width: 420px;
    height: auto;
  }

  .hero__poster {
    aspect-ratio: 396 / 338;
  }

  .hero__model {
    aspect-ratio: 392 / 638;
  }
}

@media (max-width: 900px) {
  .products {
    grid-template-columns: repeat(2, 1fr);
  }

  .new-arrivals__title {
    font-size: 32px;
  }
}

@media (max-width: 560px) {
  .products {
    grid-template-columns: 1fr;
  }

  .new-arrivals__title {
    font-size: 24px;
  }
}

@media (max-width: 900px) {
  .about__row {
    flex-direction: column;
  }

  .about__images {
    width: 100%;
  }

  .about__image--small {
    flex: 1;
    width: auto;
    height: auto;
    aspect-ratio: 210 / 260;
  }

  .about__image--large {
    flex: 1.4;
    width: auto;
    height: auto;
    aspect-ratio: 420 / 454;
  }

  .about__text-col {
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .about__heading {
    font-size: 22px;
  }

  .link-row {
    font-size: 26px;
    padding: 20px 0;
    gap: 8px;
  }

  .link-row__icon {
    width: 28px;
    height: 28px;
  }

  .about__watermark {
    height: 56px;
  }

  .about__watermark span {
    font-size: 90px;
    line-height: 60px;
  }
}

@media (max-width: 900px) {
  .lookbook__inner {
    padding-top: 64px;
  }

  .lookbook__watermark {
    height: 80px;
  }

  .lookbook__watermark span {
    font-size: 110px;
    line-height: 50px;
  }

  .lookbook__item {
    flex: 0 0 160px;
  }
}

@media (max-width: 560px) {
  .lookbook__item {
    flex: 0 0 120px;
  }
}

@media (max-width: 900px) {
  .footer__brand,
  .footer__col--contacts {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .footer__bottom-inner {
    justify-content: center;
    text-align: center;
  }
}

@media (max-width: 1100px) {
  .shop-layout {
    flex-direction: column;
  }

  .filters {
    width: 100%;
  }
}

@media (max-width: 640px) {
  .page-title {
    font-size: 32px;
  }

  .shop-banner {
    aspect-ratio: 4 / 3;
  }

  .pager {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 1100px) {
  .product__top {
    flex-direction: column;
  }

  .product-gallery,
  .product-info {
    flex: 1 1 auto;
    width: 100%;
  }
}

@media (max-width: 900px) {
  .product-recommend__title {
    font-size: 24px;
  }
}

@media (max-width: 640px) {
  .product-info__title {
    font-size: 24px;
  }

  .product-info__price-row {
    flex-wrap: wrap;
    gap: 16px;
  }

  .product-info__actions {
    flex-wrap: wrap;
  }

  .size-list {
    flex-wrap: wrap;
  }

  .size-pill {
    flex: 1 1 calc(33.333% - 6px);
  }
}

@media (max-width: 1100px) {
  .cart__layout {
    flex-direction: column;
  }

  .cart-items,
  .cart-summary {
    flex: 1 1 auto;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cart-auth {
    flex-direction: column;
    align-items: stretch;
  }

  .cart-item {
    flex-wrap: wrap;
    height: auto;
  }

  .cart-item__body {
    flex-wrap: wrap;
  }

  .cart-item__info {
    width: 100%;
  }

  .cart-item__aside {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cart-item__pricing {
    flex: none;
    align-items: flex-end;
  }
}

@media (max-width: 1100px) {
  .checkout__layout {
    flex-direction: column;
  }

  .checkout-main,
  .cart-summary {
    flex: 1 1 auto;
    width: 100%;
  }
}

@media (max-width: 780px) {
  .field-row,
  .option-grid,
  .checkout-promo-row {
    flex-direction: column;
  }

  .pickup-card {
    flex-direction: column;
  }

  .pickup-card__aside {
    width: 100%;
    flex-direction: row;
    justify-content: space-between;
  }
}

@media (max-width: 900px) {
  .help-cards {
    flex-direction: column;
  }

  .help-card {
    aspect-ratio: auto;
    min-height: 360px;
  }
}

@media (max-width: 480px) {
  .help-card__title {
    font-size: 20px;
  }
}

@media (max-width: 900px) {
  .detail-banner {
    height: auto;
    padding: 24px;
  }

  .detail-banner__title {
    font-size: 32px;
  }

  .detail-hero__decor {
    display: none;
  }
}

@media (max-width: 640px) {
  .accordion__title {
    font-size: 16px;
  }
}

@media (max-width: 900px) {
  .contact-cards {
    flex-direction: column;
  }

  .contact-card {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 900px) {
  .notfound {
    padding: 64px 0;
  }

  .notfound__code {
    font-size: 160px;
  }

  .notfound__title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  .notfound__code {
    font-size: 96px;
  }

  .notfound__button {
    width: 100%;
  }
}

/* ---------- Личный кабинет (/my-account/) ---------- */

.account-top {
  padding-top: 32px;
  padding-bottom: 24px;
}

.account-top .page-title {
  margin-top: 12px;
}

.account-login {
  max-width: 640px;
  margin: 0 auto 80px;
}

.account-login-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.account-login-tab {
  padding: 12px 24px;
  background: #EAEAEA;
  border-radius: 12px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #B9B4B4;
}

.account-login-tab--active {
  background: var(--color-purple);
  color: var(--color-white);
}

.account-login .u-columns.col2-set {
  max-width: none;
}

/* Tabbed, not side-by-side: only one form shows at a time, toggled by
   .account-login--register-active on the wrapper (assets/js/main.js).
   WC's own woocommerce-layout.css floats these at 48% width via
   ".woocommerce .col2-set .col-1/.col-2" (3 class selectors) — matching
   its .col-1/.col-2 classes here (not .u-column1/.u-column2) is what's
   needed to reach equal specificity and actually win the cascade. */
.account-login .u-columns .col-1,
.account-login .u-columns .col-2 {
  width: 100%;
  float: none;
}

.account-login .col-2 {
  display: none;
}

.account-login--register-active .col-1 {
  display: none;
}

.account-login--register-active .col-2 {
  display: block;
}

.account-login .woocommerce-form-login,
.account-login .woocommerce-form-register {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: #F7F7F7;
  border: 1px solid #E8E5E5;
  border-radius: 24px;
  margin-bottom: 24px;
}

.account-login p {
  margin: 0;
}

.account-login h2 {
  /* Redundant once the Вход/Регистрация tabs are present — the page title
     ("Личный кабинет") plus the active tab label already say what this form is. */
  display: none;
}

.account-login label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-gray-blue);
}

.account-login .woocommerce-form-login__rememberme {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  cursor: pointer;
}

.account-login .woocommerce-LostPassword a {
  font-weight: 500;
  font-size: 14px;
  color: var(--color-purple);
}

.account-login input[type="text"],
.account-login input[type="password"],
.account-login input[type="email"] {
  width: 100%;
  padding: 16px;
  background: var(--color-white);
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  font-weight: 500;
  font-size: 16px;
  color: #363D42;
}

.account-login .woocommerce-form-login__submit,
.account-login .woocommerce-form-register__submit {
  padding: 16px 40px;
  background: var(--color-purple);
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-white);
}

.account-login .woocommerce-form-login__submit:hover,
.account-login .woocommerce-form-register__submit:hover {
  background: var(--color-purple-active);
}

.account__layout {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding-bottom: 80px;
}

.account-sidebar {
  flex: 0 0 309px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 16px;
  background: var(--color-white);
  border: 1px solid #EAEAEA;
  border-radius: 24px;
}

.account-nav {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.account-nav__item {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-black);
}

.account-nav__item--active {
  padding: 12px;
  background: var(--color-purple);
  border-radius: 12px;
  color: var(--color-white);
}

.account-sidebar__divider {
  display: block;
  height: 1px;
  background: #EAEAEA;
}

.account-nav__logout {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-purple);
}

.account-content {
  flex: 1;
  min-width: 0;
}

.account-card {
  padding: 24px;
  background: var(--color-white);
  border: 1px solid #EAEAEA;
  border-radius: 24px;
}

.account-empty {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-gray-blue);
}

.account-notice {
  margin: 16px 0 0;
  padding: 12px 16px;
  background: #EAF6E4;
  border: 1px solid #81B666;
  border-radius: 12px;
  font-weight: 500;
  font-size: 14px;
  color: #3A6B24;
}

.account-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-family: 'Montserrat', sans-serif;
  font-weight: 500;
  font-size: 12px;
  color: var(--color-purple);
}

.account-link-btn--danger {
  color: #B30F32;
}

/* Dashboard */

.account-dashboard {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-profile-summary {
  display: flex;
  align-items: center;
  gap: 16px;
}

.account-profile-summary__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.account-profile-summary__name {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--color-black);
}

.account-profile-summary__phone {
  font-weight: 500;
  font-size: 18px;
  color: var(--color-gray-blue);
}

.account-loyalty-card__title {
  display: block;
  margin-bottom: 24px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--color-black);
}

.account-loyalty-card__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.account-loyalty-card__balance {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.account-loyalty-card__label {
  font-weight: 500;
  font-size: 18px;
  color: var(--color-gray-blue);
}

.account-loyalty-card__value {
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-purple);
}

.account-loyalty-card__tier {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.account-tier-badge {
  padding: 12px;
  background: var(--color-purple);
  border: 1px solid var(--color-purple);
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-white);
}

.account-loyalty-card__hint {
  font-weight: 500;
  font-size: 16px;
  color: rgba(97, 107, 122, 0.72);
}

.account-quicklinks {
  display: flex;
  align-items: center;
  gap: 12px;
}

.account-quicklink {
  flex: 1;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 24px;
  background: var(--color-white);
  border: 1px solid #EAEAEA;
  border-radius: 24px;
}

.account-quicklink__icon {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}

.account-quicklink__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.account-quicklink__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 20px;
  color: var(--color-black);
}

.account-quicklink__desc {
  font-weight: 500;
  font-size: 16px;
  color: rgba(97, 107, 122, 0.72);
}

/* Profile form */

.account-profile {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-card__head {
  display: flex;
  align-items: center;
  gap: 16px;
}

.account-profile__banner {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: var(--color-black);
}

.account-profile__banner strong {
  color: var(--color-purple);
}

.account-profile-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-form-row {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.account-form-row__label {
  font-weight: 500;
  font-size: 16px;
  color: #363D42;
  opacity: 0.48;
}

.account-form-row .field-input {
  flex: 1;
  min-width: 200px;
}

.account-form-row .field-input textarea {
  width: 100%;
  border: none;
  outline: none;
  background: none;
  resize: vertical;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  color: #363D42;
}

.account-form-row .field-input select {
  width: 100%;
  border: none;
  outline: none;
  background: none;
  font-weight: 500;
  font-size: 16px;
  color: #363D42;
}

.option-card--inline {
  flex: 0 0 auto;
}

.account-locked-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  background: var(--color-white);
  border: 1px solid #EAEAEA;
  border-radius: 8px;
}

.account-locked-field__value {
  font-weight: 500;
  font-size: 16px;
  color: #000000;
}

.account-locked-field__hint {
  font-weight: 500;
  font-size: 12px;
  color: rgba(97, 107, 122, 0.72);
}

/* Orders */

.account-orders-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-order-card {
  padding: 24px;
  background: #F7F7F7;
  border: 1px solid #EAEAEA;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-order-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.account-order-card__meta {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.account-order-card__meta-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.account-order-card__meta-label {
  font-weight: 500;
  font-size: 16px;
  color: rgba(54, 61, 66, 0.48);
}

.account-order-card__meta-value {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 18px;
  color: var(--color-black);
}

.account-order-card__divider {
  display: block;
  height: 1px;
  background: #E8E5E5;
}

.account-order-card__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.account-order-card__thumbs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.account-order-card__thumb {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-white);
  border: 1px solid #EAEAEA;
}

.account-order-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.account-order-card__thumb--extra {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 20px;
  color: var(--color-purple);
}

.account-status-badge {
  padding: 12px;
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-white);
  white-space: nowrap;
}

.account-status-badge--is-processing {
  background: var(--color-purple);
}

.account-status-badge--is-done {
  background: #81B666;
}

.account-status-badge--is-cancelled {
  background: #B30F32;
}

.account-back-link {
  display: inline-block;
  margin-bottom: 16px;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-purple);
}

.account-order-detail__items {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-item--static .cart-item__media {
  cursor: default;
}

.account-order-detail__address {
  margin-top: 16px;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-gray-blue);
}

/* Addresses */

.account-address-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.account-address-tab {
  padding: 12px 24px;
  background: #EAEAEA;
  border-radius: 12px;
  font-family: 'Unbounded', sans-serif;
  font-size: 12px;
  color: #B9B4B4;
}

.account-address-tab--active {
  background: var(--color-purple);
  color: var(--color-white);
}

.account-addresses-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 16px;
}

.account-address-card {
  padding: 24px 16px;
  background: var(--color-purple);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-address-card[hidden] {
  display: none;
}

.account-address-card__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.account-address-card__text {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-white);
}

.account-address-card__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.account-address-card__actions .account-link-btn {
  color: var(--color-white);
}

.account-address-card__note {
  font-family: 'Gilroy', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.72);
}

.account-add-address-link {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-purple);
  text-decoration: underline;
}

.account-address-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 16px;
}

.account-address-form[hidden] {
  display: none;
}

/* Subscriptions */

.account-subscriptions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.account-toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
}

.account-toggle-row__title {
  font-weight: 500;
  font-size: 16px;
  color: var(--color-black);
}

.account-toggle {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.account-toggle input {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.account-toggle__slider {
  position: absolute;
  inset: 0;
  background: #EAEAEA;
  border-radius: 24px;
  transition: background 0.15s ease;
}

.account-toggle__slider::before {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: var(--color-white);
  border-radius: 50%;
  transition: transform 0.15s ease;
}

.account-toggle input:checked + .account-toggle__slider {
  background: var(--color-purple);
}

.account-toggle input:checked + .account-toggle__slider::before {
  transform: translateX(20px);
}
.account-form-row .option-card {
    display: flex;
    gap: 12px;
    min-width: 0;
    padding: 12px 16px;
    background: var(--color-white);
    border-radius: 12px;
    cursor: pointer;
    align-items: center;
}
form.account-card.account-profile-form input {
    border: unset;
    outline: none !important;
}
.size-table-modal__text table {
    width: 100%;
    text-align: center;
}
.size-table-modal__text thead {
    background: rgb(102 44 28 / 4%);
}
.size-table-modal__text tr:nth-child(even) {
    background: rgb(102 44 28 / 4%);
}
.map-wrap {
    padding-top: 70px;
}
@media (max-width: 960px) {
  .account__layout {
    flex-direction: column;
  }

  .account-sidebar {
    flex: 0 0 auto;
    width: 100%;
  }

  .account-quicklinks {
    flex-direction: column;
    align-items: stretch;
  }
}
section.page-section {
    margin: 46px 0;
}
section.page-section  p {
    margin-bottom: 18px;
}
.opt-page_offer h2,  .opt-page_terms h2, .opt-page_advantages h2 {
    text-align: center;
    margin-bottom: 24px;
}
.opt-page_offer span.product-card__title {
    margin: 15px 0;
    display: block;
    padding: 0 8px;
}
.opt-page_offer-item-desc {
    padding: 0 8px;
}
img.product-card__media.img.product-card__image {
    scale: 100%;
    transition: all 0.3s ease-in-out;
}
.product-card:hover img.product-card__media.img.product-card__image {
    scale: 110%;
    transition: all 0.3s ease-in-out;
}
.opt-page_offer .product-card__media {
    overflow: hidden;
    border-radius: 12px;
}
.opt-page_advantages-list {
    grid-template-columns: repeat(3, 1fr);
    display: grid;
    gap: 16px;
}
.opt-page_advantages-item-title {
    font-size: 24px;
    font-weight: 600;
        margin-bottom: 14px;
}
.opt-page_advantages-col {
    border: 1px solid #E8E5E5;
    border-radius: 16px;
    padding: 24px;
}
.opt-page_advantages-col ul {
    list-style: inside;
}
.opt-page_advantages-col li {
    margin-bottom: 14px;
}
.term-list-wrap {
    grid-template-columns: repeat(2, 1fr);
    display: grid;

}
.opt-page_term-list {
    font-size: 24px;
}
span.opt-page_term-list-item-num span {
    font-weight: 900;
    font-size: 48px;
}
.opt-page_term-list-item {
    display: flex;
    gap: 17px;
    align-items: center;
        margin-bottom: 16px;
            max-width: 520px;
}

.opt-page_map {
    height: 400px;
        border-radius: 16px;
        overflow: hidden;
        margin: 76px 0;
}
.opt-page_terms, .opt-page_offer {
    margin-top: 76px;
}

/* ---------- Blog ---------- */

.blog {
  background: var(--color-white);
  padding: 32px 0 80px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border: 1px solid #E8E5E5;
  border-radius: 16px;
  padding: 8px 8px 24px;
}

.blog-card__media {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 12px;
  overflow: hidden;
}

.blog-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  scale: 100%;
  transition: scale 0.3s ease-in-out;
}

.blog-card:hover .blog-card__image {
  scale: 110%;
}

.blog-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
}

.blog-card__placeholder-logo {
  width: 18%;
  height: auto;
  opacity: 0.7;
}

.blog-card__badges {
  position: absolute;
  top: 8px;
  left: 8px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 12px;
  padding: 16px 8px 0;
}

.blog-card__date {
  font-weight: 500;
  font-size: 13px;
  color: var(--color-gray-blue);
}

.blog-card__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3;
  color: var(--color-black);
}

.blog-card__title a:hover {
  color: var(--color-purple);
}

.blog-card__excerpt {
  flex: 1;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-gray-blue);
}

.blog-card__link {
  margin-top: auto;
  font-weight: 500;
  font-size: 16px;
  color: var(--color-gray-blue);
}

.blog-card__link:hover {
  color: var(--color-purple);
}

@media (max-width: 900px) {
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
}

/* ---------- Single post ---------- */

.post {
  background: var(--color-white);
  padding: 32px 0 80px;
}

.post-top {
  margin-bottom: 24px;
}

.post-header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}

.post-header__date {
  font-weight: 500;
  font-size: 14px;
  color: var(--color-gray-blue);
}

.post-cover {
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 21 / 8;
  margin-bottom: 48px;
}

.post-cover__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-body {
  max-width: 800px;
  margin: 0 auto;
}

.post-content {
  font-size: 16px;
  line-height: 1.75;
  color: var(--color-black);
}

.post-content > * + * {
  margin-top: 20px;
}

.post-content h2 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 28px;
  line-height: 1.3;
  margin-top: 48px;
}

.post-content h3 {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.3;
  margin-top: 40px;
}

.post-content a {
  color: var(--color-purple);
  text-decoration: underline;
}

.post-content a:hover {
  color: var(--color-purple-active);
}

.post-content ul,
.post-content ol {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 24px;
}

.post-content ul {
  list-style: disc;
}

.post-content ol {
  list-style: decimal;
}

.post-content blockquote {
  padding-left: 24px;
  border-left: 3px solid var(--color-purple);
  font-style: italic;
  color: var(--color-gray-blue);
}

.post-content img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  display: block;
}

.post-content strong {
  font-weight: 600;
}

.post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.post-tags__item {
  padding: 8px 16px;
  border: 1px solid #E8E5E5;
  border-radius: 999px;
  font-size: 13px;
  color: var(--color-gray-blue);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.post-tags__item:hover {
  border-color: var(--color-black);
  color: var(--color-black);
}

.post-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid #EBEBEB;
}

.post-pagination__item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  border: 1px solid #E8E5E5;
  border-radius: 16px;
  min-width: 0;
  transition: border-color 0.2s ease;
}

.post-pagination__item:hover {
  border-color: var(--color-purple);
}

.post-pagination__item--prev {
  grid-column: 1;
}

.post-pagination__item--next {
  grid-column: 2;
  justify-content: flex-end;
  text-align: right;
}

.post-pagination__arrow {
  flex-shrink: 0;
  transition: filter 0.2s ease;
}

.post-pagination__item:hover .post-pagination__arrow {
  filter: brightness(0) saturate(100%) invert(13%) sepia(94%) saturate(7455%) hue-rotate(0deg) brightness(94%) contrast(118%);
}

.post-pagination__group {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}
a.post-pagination__item.post-pagination__item--next img.post-pagination__arrow {
    rotate: 180deg;
}
.post-pagination__label {
  font-size: 12px;
  color: var(--color-gray-blue);
}

.post-pagination__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--color-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.related-posts {
  margin-top: 76px;
}

.related-posts__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 32px;
  line-height: 1.3;
  text-align: center;
  color: var(--color-black);
  margin-bottom: 24px;
}

@media (max-width: 900px) {
  .post-cover {
    aspect-ratio: 16 / 10;
  }

  .post-pagination {
    grid-template-columns: 1fr;
  }

  .post-pagination__item--next {
    grid-column: 1;
    justify-content: flex-start;
    text-align: left;
  }
}

/* ---------- Comments ---------- */

.post-comments {
  max-width: 800px;
  padding-top: 48px;
}

.comments-area {
  padding-top: 48px;
  border-top: 1px solid #EBEBEB;
}

.comments-title,
.comment-reply-title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--color-black);
  margin-bottom: 24px;
}

.comment-reply-title small {
  margin-left: 12px;
  font-family: 'Gilroy', sans-serif;
  font-size: 13px;
  font-weight: 500;
}

.comment-reply-title small a {
  color: var(--color-purple);
}

.comment-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 40px;
}

.comment-list .children {
  list-style: none;
  margin-top: 24px;
  padding-left: 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.comment-body {
  display: flex;
  gap: 16px;
}

.comment-body .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  flex-shrink: 0;
}

.comment-author.vcard {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: var(--color-black);
}

.comment-author .fn {
  font-style: normal;
}

.comment-metadata {
  font-size: 13px;
  color: var(--color-gray-blue);
  margin-bottom: 8px;
}

.comment-metadata a {
  color: inherit;
}

.comment-content {
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-black);
}

.comment-content p + p {
  margin-top: 12px;
}

.comment-reply-link {
  display: inline-block;
  margin-top: 8px;
  font-weight: 500;
  font-size: 13px;
  color: var(--color-purple);
}

.comment-reply-link:hover {
  color: var(--color-purple-active);
}

.comment-respond {
  padding-top: 8px;
}

#commentform p {
  margin-bottom: 16px;
}

#commentform label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
  font-size: 14px;
  color: var(--color-black);
}

#commentform input[type="text"],
#commentform input[type="email"],
#commentform input[type="url"],
#commentform textarea {
  width: 100%;
  padding: 16px;
  background: var(--color-white);
  border: 1px solid #EAEAEA;
  border-radius: 8px;
  font-family: inherit;
  font-weight: 500;
  font-size: 16px;
  color: #363D42;
}

#commentform textarea {
  min-height: 140px;
  resize: vertical;
}

.comment-notes,
.logged-in-as {
  font-size: 13px;
  color: var(--color-gray-blue);
}

.comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.comment-form-cookies-consent label {
  margin-bottom: 0;
  font-weight: 400;
  font-size: 13px;
  color: var(--color-gray-blue);
}

#wp-comment-cookies-consent {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  accent-color: var(--color-purple);
}

.form-submit {
  margin-top: 8px;
  margin-bottom: 0 !important;
}

.form-submit input[type="submit"] {
  padding: 16px 40px;
  background: var(--color-purple);
  border-radius: 8px;
  font-family: 'Unbounded', sans-serif;
  font-weight: 500;
  font-size: 15px;
  color: var(--color-white);
  cursor: pointer;
  transition: background 0.2s ease;
      border: none;
}

.form-submit input[type="submit"]:hover {
  background: var(--color-purple-active);
}

/* ---------- Category grid (subcategories on a parent category archive) ---------- */

.category-grid-section {
  margin: 32px 0;
}

.category-grid__title {
  font-family: 'Unbounded', sans-serif;
  font-weight: 400;
  font-size: 24px;
  color: var(--color-black);
  margin-bottom: 16px;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}

.category-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.category-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  background: #F2F0F0;
}

.category-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  scale: 1;
  transition: scale 0.4s;
}

.category-card:hover .category-card__image {
  scale: 1.1;
}

.category-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-black);
}

.category-card__placeholder-logo {
  width: 30%;
  height: auto;
  opacity: 0.7;
}

.category-card__label {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.4;
  color: var(--color-black);
  transition: color 0.3s ease;
}

.category-card:hover .category-card__label {
  color: var(--color-purple);
}

.category-card__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: rotate 0.3s ease;
}

.category-card:hover .category-card__icon {
  rotate: 45deg;
}