﻿:root{
  --menu-color: #10b981;
  --menu-text: #ffffff;
  --menu-hover: #facc15;
  --menu-active: #facc15;

  --header-bg: #000000;
  --header-text: #ffffff;

  --footer-bg: #0f172a;
  --footer-text: #f1f5f9;

  --body-bg: #0f172a;
  --body-text: #e2e8f0;
  --body-muted: #94a3b8;

  --home-text: #111827;
  --card-body-bg: #ffffff;
  --card-body-text: #0f172a;
  --card-body-border: rgba(15,23,42,0.08);
  --card-media-bg: #ffffff;
  --card-media-border: rgba(15,23,42,0.06);
  --product-card-body-bg: #ffffff;
  --product-card-body-text: #0f172a;
  --product-card-media-bg: #ffffff;
  --product-card-media-border: rgba(15,23,42,0.06);
  --product-card-border: rgba(15,23,42,0.08);
}

body {
  background-color: var(--body-bg);
  color: var(--body-text);
}

a {
  color: inherit;
}

.text-strong {
  color: var(--body-text);
}

.text-muted {
  color: var(--body-muted);
}

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

.menu-link {
  color: var(--menu-text);
  transition: color .2s ease;
}

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

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

.surface-card {
  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  color: #0f172a;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.25rem;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.surface-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.surface-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 58px rgba(15, 23, 42, 0.18);
}

.surface-card .image-frame {
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem;
}

.surface-card .image-frame img,
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-black {
  background-color: var(--header-bg);
  color: var(--header-text);
}

.header-black .menu-link {
  color: var(--menu-text);
}

.header-black .menu-link:hover,
.header-black .menu-link.active {
  color: var(--menu-hover);
}


  position: relative;
  background: linear-gradient(180deg, #ffffff 0%, #f5f9ff 100%);
  color: var(--card-body-text);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 1.25rem;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hero-slider {
  position: relative;
  width: 100%;
  margin: 0 auto;
  --hero-height: 60vh;
  --hero-object-fit: cover;
}

.hero-slider__viewport {
  position: relative;
  height: var(--hero-height);
  border-radius: 0;
  overflow: hidden;
  background: transparent;
  box-shadow: none;
}

.hero-slider .swiper {
  height: 100%;
}

.hero-slider .swiper-slide {
  height: 100%;
  display: flex;
  align-items: stretch;
}

.hero-slider__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(30, 64, 175, 0.82));
}

.hero-slider__image {
  width: 100%;
  height: 100%;
  object-fit: var(--hero-object-fit);
}

.hero-slider__button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 9999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(15, 23, 42, 0.65);
  color: rgba(226, 232, 240, 0.9);
  backdrop-filter: blur(10px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
  z-index: 5;
}

.hero-slider__button:hover {
  background: rgba(250, 204, 21, 0.85);
  color: #0f172a;
}

.hero-slider__button--prev {
  left: 1.25rem;
}

.hero-slider__button--next {
  right: 1.25rem;
}

.hero-slider .swiper-pagination-bullets {
  bottom: 1.5rem;
}

.hero-slider .swiper-pagination-bullet {
  background: rgba(226, 232, 240, 0.6);
  opacity: 1;
}

.hero-slider .swiper-pagination-bullet-active {
  background: var(--color-primary);
}

.hero-slider__empty {
  height: var(--hero-height);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 2.25rem;
  background: rgba(15, 23, 42, 0.85);
  color: rgba(226, 232, 240, 0.75);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  color: #0f172a;
  min-height: 100%;
  box-shadow: 0 22px 55px rgba(15, 23, 42, 0.16);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.8);
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, rgba(255, 255, 255, 0) 45%);
  opacity: 0.55;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: 0 26px 65px rgba(15, 23, 42, 0.22);
}

.product-card__media {
  flex: none;
  background: linear-gradient(180deg, #f6f9ff 0%, #ffffff 100%);
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  aspect-ratio: 4 / 5;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.8rem;
}

.product-card__body {
  flex: 1;
  padding: 1.35rem 1.6rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  background: transparent;
  color: #0f172a;
}

.product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(15, 23, 42, 0.55);
}

.product-card__tags {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product-card__tag {
  font-size: 0.7rem;
  padding: 0.2rem 0.55rem;
  border-radius: 9999px;
  font-weight: 600;
}

.product-card__tag--new {
  background: rgba(250, 204, 21, 0.22);
  color: #000;
}

.product-card__tag--promo {
  background: rgba(248, 113, 113, 0.28);
  color: #000;
}

.product-card__title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.3;
  min-height: 48px;
  color: var(--product-card-body-text);
}

.product-card__excerpt {
  font-size: 0.875rem;
  color: rgba(15, 23, 42, 0.62);
  flex: 1;
}

.product-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 0.35rem;
}

.product-card__price-current {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-primary);
}

.product-card__price-old {
  font-size: 0.85rem;
  color: rgba(16, 16, 16, 0.5);
  text-decoration: line-through;
}

.category-hero {
  padding: 3.5rem 0 2.5rem;
  background: linear-gradient(135deg, rgba(248, 250, 252, 0.92), rgba(224, 242, 254, 0.88));
  border-bottom: 1px solid rgba(148, 163, 184, 0.25);
}

.category-hero__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 0.75rem;
  color: #0f172a;
}

.category-hero__breadcrumb {
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.55);
}

.category-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.category-hero__title {
  font-size: 2rem;
  font-weight: 700;
}

.category-hero__subtitle {
  font-size: 1rem;
  color: rgba(15, 23, 42, 0.7);
}

.category-wrapper {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 4rem;
}

.filters-toggle {
  display: none;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1.1rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.28);
  background: #ffffff;
  color: #0f172a;
  font-size: 0.9rem;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.12);
  transition: background 0.2s ease, color 0.2s ease, border 0.2s ease;
}

.filters-toggle:hover {
  border-color: rgba(15, 23, 42, 0.45);
  background: #f8fafc;
}

.filters-overlay {
  display: none;
}

.filter-close {
  display: none;
  border: none;
  background: transparent;
  color: #0f172a;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.filter-close span {
  display: block;
  pointer-events: none;
}

.filter-card__heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex: 1;
  gap: 0.75rem;
}

.filter-card__heading h2 {
  margin: 0;
}

.category-layout {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: minmax(0, 280px) minmax(0, 1fr);
  align-items: start;
}

@media (max-width: 1023px) {
  .category-layout {
    grid-template-columns: 1fr;
  }

  .category-filters {
    position: static;
    display: none;
  }

  .filters-toggle {
    display: inline-flex;
  }

  .filter-close {
    display: inline-flex;
  }

  .filter-card__header {
    align-items: center;
  }

  body.filters-open {
    overflow: hidden;
  }

  body.filters-open .filters-overlay {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 55;
  }

  body.filters-open .category-filters {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 60;
    padding: 1.5rem;
    background: #ffffff;
    overflow-y: auto;
  }

  body.filters-open .filter-card {
    max-width: 100%;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
  }
}

.category-filters {
  position: sticky;
  top: 1.5rem;
}

.filter-card {
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.15);
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.1);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.filter-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.filter-card__header h2 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #0f172a;
}

.filter-form {
  font-size: 0.95rem;
}

.filter-section {
  display: grid;
  gap: 0.65rem;
}

.filter-field-label {
  font-weight: 600;
  color: #0f172a;
  font-size: 0.9rem;
}

.input-field {
  width: 100%;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(241, 245, 249, 0.6);
  padding: 0.6rem 0.9rem;
  transition: border 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  color: #0f172a;
}

.input-field:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(250, 204, 21, 0.25);
  background: #ffffff;
}

.price-slider {
  position: relative;
  margin-top: 0.5rem;
  padding: 0.5rem 0;
}

.price-slider__track {
  height: 4px;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.25);
}

.price-slider__range {
  position: absolute;
  height: 4px;
  background: var(--color-primary);
  border-radius: 999px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.price-range {
  position: absolute;
  pointer-events: none;
  width: 100%;
  height: 4px;
  -webkit-appearance: none;
  background: transparent;
}

.price-range::-webkit-slider-thumb {
  pointer-events: all;
  -webkit-appearance: none;
  background: var(--color-primary);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 16px rgba(250, 204, 21, 0.35);
}

.price-range::-moz-range-thumb {
  pointer-events: all;
  background: var(--color-primary);
  width: 18px;
  height: 18px;
  border-radius: 999px;
  border: 2px solid #ffffff;
  box-shadow: 0 6px 16px rgba(250, 204, 21, 0.35);
}

.price-inputs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.price-inputs .input-field {
  flex: 1;
}

.filter-chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(241, 245, 249, 0.5);
  font-size: 0.85rem;
  cursor: pointer;
  transition: border 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.filter-chip input {
  display: none;
}

.filter-chip.is-active {
  border-color: var(--color-primary);
  background: rgba(250, 204, 21, 0.18);
  color: #0f172a;
  font-weight: 600;
}

.filter-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.filter-submit {
  flex: 1;
  border: none;
  border-radius: 999px;
  background: var(--color-primary);
  color: #0f172a;
  font-weight: 600;
  padding: 0.65rem 1.2rem;
  cursor: pointer;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.filter-submit:hover {
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.35);
  transform: translateY(-1px);
}

.filter-reset,
.filter-reset-secondary {
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.55);
  text-decoration: none;
  transition: color 0.2s ease;
}

.filter-reset:hover,
.filter-reset-secondary:hover {
  color: var(--color-primary);
}

.category-results {
  display: grid;
  gap: 2rem;
}

.category-results__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #0f172a;
}

.category-results__count {
  font-weight: 600;
}

.category-results__hint {
  display: block;
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.6);
  margin-top: 0.25rem;
}

.category-results__meta > div {
  display: grid;
  gap: 0.2rem;
}

.category-grid {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}

.category-grid__item {
  height: 100%;
  display: flex;
}

.category-grid__item .product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 1.2rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  background: linear-gradient(180deg, #ffffff 0%, #f4f8ff 100%);
  color: #0f172a;
  min-height: 100%;
  box-shadow: 0 12px 35px rgba(15, 23, 42, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

@media (max-width: 480px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .category-grid__item .product-card {
    border-radius: 0.9rem;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.12);
  }

  .product-card__body {
    padding: 1rem 1.1rem 1.1rem;
    gap: 0.55rem;
  }

  .product-card__meta {
    font-size: 0.72rem;
  }

  .product-card__tag {
    font-size: 0.62rem;
    padding: 0.16rem 0.45rem;
  }

  .product-card__title {
    font-size: 0.9rem;
    line-height: 1.25;
    min-height: auto;
  }

  .product-card__excerpt {
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .product-card__price-current {
    font-size: 1rem;
  }

  .product-card__price-old {
    font-size: 0.75rem;
  }
}

@media (min-width: 481px) and (max-width: 1023px) {
  .category-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .category-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.category-pagination {
  display: flex;
  justify-content: center;
}

.category-pagination__list {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.category-pagination__link {
  min-width: 38px;
  height: 38px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  background: rgba(248, 250, 252, 0.7);
  color: #0f172a;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.category-pagination__link:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.category-pagination__link.is-active {
  border-color: transparent;
  background: var(--color-primary);
  color: #0f172a;
}

@media (max-width: 767px) {
  .category-results__meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.65rem;
  }
}

.site-footer {
  background: var(--footer-bg);
  color: var(--footer-text);
}

.site-footer a {
  color: inherit;
}

.site-footer .text-muted {
  color: var(--footer-text); opacity: .75;
}

.site-footer h3 {
  color: #f8fafc;
}

.site-footer .menu-link {
  color: rgba(241, 245, 249, 0.85);
}

.site-footer .menu-link:hover {
  color: var(--color-primary);
}

.site-header {
  background: #020617;
  color: var(--header-text);
  box-shadow: 0 18px 48px rgba(2, 6, 23, 0.35);
  position: relative;
  z-index: 40;
}

.site-header__search {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  background: rgba(15, 23, 42, 0.6);
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 9999px;
  padding: 0.55rem 0.55rem 0.55rem 1.25rem;
  backdrop-filter: blur(10px);
}

.site-header__search input {
  flex: 1;
  background: transparent;
  border: 0;
  color: #f8fafc;
  font-size: 0.95rem;
  outline: none;
}

.site-header__search input::placeholder {
  color: rgba(148, 163, 184, 0.78);
}

.site-header__search button {
  border: 0;
  outline: none;
  border-radius: 9999px;
  padding: 0.55rem 1.6rem;
  font-weight: 600;
  background: var(--color-primary);
  color: #0f172a;
  box-shadow: 0 14px 32px rgba(250, 204, 21, 0.28);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.site-header__search button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 38px rgba(250, 204, 21, 0.36);
}

.site-header__install {
  border-radius: 9999px;
  border: 1px solid var(--color-primary);
  background: transparent;
  color: var(--color-primary);
  padding: 0.6rem 1.6rem;
  font-weight: 600;
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.site-header__install:hover {
  background: rgba(250, 204, 21, 0.12);
  transform: translateY(-1px);
}

.site-header__cart {
  position: relative;
  border: 0;
  outline: none;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #0f172a;
  box-shadow: 0 14px 38px rgba(250, 204, 21, 0.38);
  transition: transform 0.15s ease, box-shadow 0.2s ease;
}

.site-header__cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(250, 204, 21, 0.45);
}

.site-header__cart::after {
  content: '';
  position: absolute;
  inset: -14px;
  border-radius: inherit;
  background: rgba(250, 204, 21, 0.18);
  filter: blur(20px);
  z-index: -1;
  pointer-events: none;
}

.site-header__cart svg {
  width: 20px;
  height: 20px;
}

.site-header__cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 18px;
  height: 18px;
  border-radius: 9999px;
  background: #020617;
  color: #f8fafc;
  font-size: 0.65rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 5px;
  border: 1px solid rgba(15, 23, 42, 0.4);
}

.site-header__links .menu-link {
  color: rgba(226, 232, 240, 0.78);
  font-weight: 500;
  padding-bottom: 0.25rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.site-header__links .menu-link:hover {
  color: var(--color-primary);
}

.site-header__links .menu-link.active {
  color: var(--color-primary);
  border-bottom-color: var(--color-primary);
}

.site-header__nav-row {
  width: 100%;
}

.site-header__nav-row nav {
  justify-content: center;
}

.site-header__social {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(250, 204, 21, 0.35);
  background: rgba(17, 24, 39, 0.65);
  box-shadow: 0 12px 24px rgba(250, 204, 21, 0.18);
}

.site-header__social a {
  width: 34px;
  height: 34px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(248, 250, 252, 0.85);
  border: 1px solid rgba(148, 163, 184, 0.25);
  background: rgba(15, 23, 42, 0.65);
  transition: transform 0.15s ease, color 0.2s ease, border-color 0.2s ease;
}

.site-header__social a:hover {
  color: var(--color-primary);
  border-color: var(--color-primary);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .site-header__nav-row {
    display: none;
  }
}

.site-header__nav-item {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.site-header__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  border: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  padding: 0;
}

.site-header__nav-link svg {
  transition: transform 0.2s ease;
}

.site-header__nav-item--dropdown.is-open .site-header__nav-link svg {
  transform: rotate(180deg);
}

.site-header__nav-menu {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  min-width: 220px;
  background: rgba(15, 23, 42, 0.96);
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.25);
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.55);
  padding: 0.6rem;
  backdrop-filter: blur(8px);
  display: none;
  z-index: 60;
}

.site-header__nav-item--dropdown.is-open .site-header__nav-menu {
  display: block;
}

.site-header__nav-option {
  display: block;
  padding: 0.55rem 0.85rem;
  border-radius: 0.85rem;
  color: rgba(226, 232, 240, 0.85);
  font-size: 0.9rem;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.site-header__nav-option:hover {
  background: var(--color-primary);
  color: #0f172a;
}

.site-header__category-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 1.15rem;
  border-radius: 9999px;
  background: rgba(148, 163, 184, 0.14);
  color: rgba(226, 232, 240, 0.85);
  transition: background 0.2s ease, color 0.2s ease, transform 0.15s ease;
}

.site-header__category-pill:hover {
  color: #0f172a;
  background: var(--color-primary);
  transform: translateY(-2px);
}

.site-header__brand-image {
  display: block;
  max-height: 46px;
  width: auto;
}

.site-header__actions {
  align-items: center;
}








/* Cart Drawer */
.cart-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(2, 6, 23, 0.55);
  backdrop-filter: blur(2px);
  z-index: 70;
}

.cart-backdrop.hidden {
  display: none;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
  width: min(360px, 85vw);
  background: #0f172a;
  color: #f8fafc;
  z-index: 80;
  display: flex;
  flex-direction: column;
  box-shadow: -28px 0 60px rgba(2, 6, 23, 0.45);
  transition: transform 0.3s ease;
}

.cart-drawer__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.75rem 1.25rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.2);
}

.cart-drawer__title {
  font-size: 1.25rem;
  font-weight: 600;
}

.cart-drawer__subtitle {
  font-size: 0.85rem;
  color: rgba(226, 232, 240, 0.7);
}

.cart-drawer__close {
  border: none;
  background: transparent;
  color: rgba(248, 250, 252, 0.8);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cart-drawer__close:hover {
  color: var(--color-primary);
}

.cart-drawer__body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-drawer__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-drawer__empty {
  margin-top: 2rem;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(226, 232, 240, 0.6);
}


.cart-mini-item__media img {
  width: 64px;
  height: 64px;
  border-radius: 0.75rem;
  object-fit: cover;
}


.cart-mini-item__brand {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(226, 232, 240, 0.55);
}

.cart-mini-item__name {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f8fafc;
}

.cart-mini-item__attrs {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.6);
}

.cart-mini-item__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.cart-mini-item__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.15rem 0.55rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

.cart-mini-item__badge--new {
  background: rgba(250, 204, 21, 0.18);
  color: #facc15;
}

.cart-mini-item__badge--promo {
  background: rgba(248, 113, 113, 0.18);
  color: #f87171;
}

.cart-mini-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-mini-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  padding: 0.15rem 0.6rem;
}

.cart-mini-item__qty button {
  background: transparent;
  border: none;
  color: #f8fafc;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
}

.cart-mini-item__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}

.cart-mini-item__price-current {
  font-weight: 700;
  font-size: 0.95rem;
  color: #facc15;
}

.cart-mini-item__price-old {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.55);
  text-decoration: line-through;
}

.cart-mini-item__remove {
  border: none;
  background: transparent;
  color: rgba(248, 113, 113, 0.85);
  font-size: 0.75rem;
  cursor: pointer;
}

.cart-drawer__footer {
  border-top: 1px solid rgba(148, 163, 184, 0.16);
  padding: 1.25rem 1.75rem 1.75rem;
  display: grid;
  gap: 0.75rem;
}

.cart-drawer__subtotal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1rem;
}

.cart-drawer__button {
  border: none;
  border-radius: 999px;
  padding: 0.75rem 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cart-drawer__button:hover {
  transform: translateY(-1px);
}

.cart-drawer__button--secondary {
  background: rgba(248, 250, 252, 0.1);
  color: #f8fafc;
}

.cart-drawer__button--secondary:hover {
  box-shadow: inset 0 0 0 1px rgba(248, 250, 252, 0.3);
}

.cart-drawer__button:not(.cart-drawer__button--secondary) {
  background: var(--color-primary);
  color: #0f172a;
  box-shadow: 0 12px 30px rgba(250, 204, 21, 0.32);
}

.cart-page {
  padding: 3rem 0 5rem;
  background: linear-gradient(180deg, rgba(248, 250, 252, 0.85) 0%, rgba(226, 232, 240, 0.2) 100%);
}

.cart-page__container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: grid;
  gap: 2.5rem;
}

.cart-page__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cart-page__title {
  font-size: 2.2rem;
  font-weight: 700;
  color: #0f172a;
}

.cart-page__subtitle {
  color: rgba(15, 23, 42, 0.65);
}

.cart-page__continue {
  font-size: 0.9rem;
  color: var(--color-primary);
  text-decoration: none;
}

.cart-page__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: minmax(0, 1fr) 320px;
}

@media (max-width: 1023px) {
  .cart-page__grid {
    grid-template-columns: 1fr;
  }

  .cart-page__header {
    flex-direction: column;
    align-items: flex-start;
  }
}

.cart-page__items-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-page__empty {
  text-align: center;
  padding: 3rem 2rem;
  border-radius: 1.5rem;
  border: 1px dashed rgba(148, 163, 184, 0.35);
  color: rgba(15, 23, 42, 0.6);
}

.cart-page__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--color-primary);
  color: #0f172a;
  font-weight: 600;
  text-decoration: none;
}

.cart-item {
  display: flex;
  gap: 1.5rem;
  padding: 1.2rem;
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
}

.cart-item__media img {
  width: 96px;
  height: 96px;
  border-radius: 1.1rem;
  object-fit: cover;
}

.cart-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.cart-item__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.cart-item__title {
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
}

.cart-item__remove {
  border: none;
  background: transparent;
  color: rgba(248, 113, 113, 0.85);
  cursor: pointer;
  font-size: 0.85rem;
}

.cart-item__attributes {
  font-size: 0.85rem;
  color: rgba(15, 23, 42, 0.55);
}

.cart-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(148, 163, 184, 0.35);
  border-radius: 999px;
  padding: 0.2rem 0.75rem;
  gap: 0.75rem;
}

.cart-item__qty button {
  border: none;
  background: transparent;
  font-size: 1.1rem;
  color: #0f172a;
  cursor: pointer;
}

.cart-item__price {
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.05rem;
}

.cart-summary {
  background: #ffffff;
  border-radius: 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12);
  padding: 1.75rem;
  display: grid;
  gap: 1.5rem;
}

.cart-summary__title {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0f172a;
}

.cart-summary__details {
  display: grid;
  gap: 0.75rem;
  color: rgba(15, 23, 42, 0.7);
}

.cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
}

.cart-summary__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 1.1rem;
}

.cart-summary__total strong {
  font-size: 1.3rem;
  color: var(--color-primary);
}

.cart-summary__note {
  display: grid;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: rgba(15, 23, 42, 0.75);
}

.cart-summary__note textarea {
  min-height: 90px;
  border-radius: 1rem;
  border: 1px solid rgba(148, 163, 184, 0.35);
  padding: 0.75rem;
  resize: vertical;
}

.cart-summary__whatsapp {
  border: none;
  border-radius: 999px;
  background: var(--color-primary);
  color: #0f172a;
  font-weight: 600;
  padding: 0.85rem 1.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
  box-shadow: 0 16px 36px rgba(250, 204, 21, 0.32);
}

.cart-summary__whatsapp svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.hidden {
  display: none !important;
}



/* Cart redesign overrides */
.cart-page {
  padding: 3rem 0 4rem;
  background: #f1f5f9;
}

.cart-page__container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 2.25rem;
}

.cart-page__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
}

.cart-page__headline {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cart-page__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  color: #64748b;
}

.cart-page__breadcrumb a {
  color: inherit;
  text-decoration: none;
}

.cart-page__breadcrumb span[aria-hidden="true"] {
  color: #94a3b8;
}

.cart-page__title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #1e293b;
}

.cart-page__continue {
  font-size: 0.95rem;
  font-weight: 600;
  color: #f97316;
  text-decoration: none;
}

.cart-page__continue:hover {
  color: #c2410c;
}

.cart-page__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 2.5rem;
  align-items: flex-start;
}

.cart-table {
  --cart-table-columns: minmax(0, 2.4fr) minmax(74px, 0.85fr) minmax(120px, 0.9fr) minmax(0, 1.1fr) minmax(92px, 0.65fr);
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
  overflow: hidden;
}

.cart-table__head,
.cart-table__row {
  display: grid;
  grid-template-columns: var(--cart-table-columns);
  align-items: stretch;
}

.cart-table__head {
  background: linear-gradient(90deg, #f1f5f9 0%, #e2e8f0 100%);
  color: #0f172a;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cart-table__column,
.cart-table__cell {
  padding: 1.2rem 1.45rem;
}

.cart-table__column {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.cart-table__row:not(:last-child) {
  border-bottom: 1px solid #e2e8f0;
}

.cart-table__cell--product {
  align-self: center;
}

.cart-product {
  display: flex;
  align-items: center;
  gap: 1.1rem;
}

.cart-product__media {
  width: 84px;
  height: 84px;
  border-radius: 14px;
  overflow: hidden;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

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

.cart-product__info {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cart-product__brand {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.cart-product__name {
  font-size: 1rem;
  font-weight: 600;
  color: #1e293b;
  text-decoration: none;
}

.cart-product__name:hover {
  color: #f97316;
}

.cart-product__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.cart-product__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.18rem 0.7rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.cart-product__badge--new {
  background: rgba(59, 130, 246, 0.12);
  color: #1d4ed8;
}

.cart-product__badge--promo {
  background: rgba(239, 68, 68, 0.12);
  color: #b91c1c;
}

.cart-product__sku {
  font-size: 0.78rem;
  color: #94a3b8;
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 0.25rem 0.8rem;
  background: #f8fafc;
}

.cart-qty button {
  background: transparent;
  border: none;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
  color: #1e293b;
}

.cart-qty button:hover {
  color: #f97316;
}

.cart-qty__value {
  font-weight: 600;
  min-width: 1.5rem;
  text-align: center;
  font-size: 1rem;
}

.cart-price {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.6rem;
}

.cart-price__label {
  font-size: 0.68rem;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.08em;
}

.cart-price__value {
  font-weight: 600;
  color: #f97316;
  font-size: 0.9rem;
}

.cart-price__old {
  font-size: 0.8rem;
  color: #94a3b8;
  text-decoration: line-through;
}

.cart-table__cell--details {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.2rem;
  align-items: center;
}

.cart-detail {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #334155;
  font-size: 0.8rem;
  font-weight: 500;
}

.cart-detail--empty {
  background: transparent;
  color: #94a3b8;
}

.cart-table__cell--actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding-right: 1.45rem;
}

.cart-remove {
  border: none;
  background: transparent;
  color: #ef4444;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: color 0.2s ease;
}

.cart-remove:hover {
  color: #dc2626;
}

.cart-table__empty {
  padding: 2.6rem 2rem;
  text-align: center;
  color: #64748b;
}

.cart-table__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: 999px;
  background: #f97316;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s ease;
}

.cart-table__cta:hover {
  background: #c2410c;
}

.cart-page__sidebar {
  position: sticky;
  top: 112px;
}

.cart-summary {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  background: #ffffff;
  border-radius: 20px;
  border: 1px solid #e2e8f0;
  padding: 1.8rem;
  box-shadow: 0 20px 34px rgba(15, 23, 42, 0.1);
}

.cart-summary__header {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.cart-summary__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
}

.cart-summary__subtitle {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.4;
}

.cart-summary__details {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1rem 1.1rem;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.cart-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #1e293b;
}

.cart-summary__row--shipping .cart-summary__hint {
  font-size: 0.85rem;
  color: #64748b;
}

.cart-summary__hint {
  font-size: 0.85rem;
  color: #475569;
}

.cart-summary__total {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.cart-summary__total strong {
  font-size: 1.6rem;
  color: #15803d;
}

.cart-summary__info {
  font-size: 0.88rem;
  color: #475569;
  line-height: 1.55;
}

.cart-summary__note {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  font-size: 0.85rem;
  color: #0f172a;
}

.cart-summary__note textarea {
  resize: vertical;
  min-height: 96px;
  border-radius: 14px;
  border: 1px solid #dbe2ec;
  padding: 0.75rem 1rem;
  font-family: inherit;
  font-size: 0.95rem;
  background: #f8fafc;
  color: #0f172a;
  transition: border 0.2s ease, box-shadow 0.2s ease;
}

.cart-summary__note textarea:focus {
  outline: none;
  border-color: #22c55e;
  box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.18);
}

.cart-summary__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.9rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #ffffff;
  font-weight: 600;
  font-size: 0.98rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 18px 32px rgba(22, 163, 74, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cart-summary__action:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 36px rgba(22, 163, 74, 0.32);
}

.cart-summary__action svg {
  width: 1.1rem;
  height: 1.1rem;
  fill: currentColor;
}

.cart-drawer__footer {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 1.75rem 1.75rem;
  border-top: 1px solid rgba(148, 163, 184, 0.2);
}

.cart-drawer__totals {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 0.9rem 1rem;
  border-radius: 16px;
  background: rgba(15, 23, 42, 0.45);
  border: 1px solid rgba(148, 163, 184, 0.25);
}

.cart-drawer__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.95rem;
  color: #e2e8f0;
}

.cart-drawer__row strong {
  font-size: 1.1rem;
  color: #facc15;
}

.cart-drawer__shipping {
  font-size: 0.8rem;
  color: #cbd5f5;
}

.cart-drawer__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 14px;
  font-weight: 600;
  font-size: 0.9rem;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.cart-drawer__button--secondary {
  background: rgba(148, 163, 184, 0.2);
  color: #e2e8f0;
}

.cart-drawer__button--secondary:hover {
  background: rgba(148, 163, 184, 0.32);
}

.cart-drawer__button:not(.cart-drawer__button--secondary) {
  background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
  color: #0f172a;
}

.cart-drawer__button:not(.cart-drawer__button--secondary):hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 28px rgba(34, 197, 94, 0.32);
}

.cart-mini-item {
  display: flex;
  gap: 1rem;
  padding: 0.9rem 1.1rem;
  border-radius: 16px;
  background: rgba(148, 163, 184, 0.08);
  border: 1px solid rgba(148, 163, 184, 0.22);
}

.cart-mini-item__media img {
  width: 64px;
  height: 64px;
  border-radius: 12px;
  object-fit: cover;
  background: #0f172a;
}

.cart-mini-item__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.cart-mini-item__attrs {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.7);
}

.cart-mini-item__dot {
  display: inline-block;
  margin: 0 0.35rem;
  color: rgba(226, 232, 240, 0.4);
}

.cart-mini-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.35rem;
}

.cart-mini-item__qty {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
}

.cart-mini-item__price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

.cart-mini-item__price-current {
  font-weight: 600;
  color: #facc15;
}

.cart-mini-item__price-old {
  font-size: 0.75rem;
  color: rgba(226, 232, 240, 0.6);
  text-decoration: line-through;
}

.cart-mini-item__remove {
  background: transparent;
  border: none;
  color: rgba(248, 113, 113, 0.95);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
}

.cart-mini-item__remove:hover {
  color: #fca5a5;
}

@media (max-width: 1100px) {
  .cart-page__content {
    grid-template-columns: minmax(0, 1fr) 300px;
  }

}

@media (max-width: 1024px) {
  .cart-page__content {
    grid-template-columns: 1fr;
  }

  .cart-page__sidebar {
    position: static;
  }
}

@media (max-width: 768px) {
  .cart-page__header {
    flex-direction: column;
    align-items: flex-start;
  }

  .cart-table {
    border-radius: 16px;
  }

  .cart-table__head {
    display: none;
  }

  .cart-table__row {
    grid-template-columns: 1fr;
    gap: 1.1rem;
    padding: 1.1rem 1.25rem;
  }

  .cart-table__column,
  .cart-table__cell {
    padding: 0;
  }

  .cart-product {
    align-items: flex-start;
  }

  .cart-table__cell--actions {
    justify-content: flex-start;
  }

  .cart-price {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
  }
}

@media (max-width: 540px) {
  .cart-page {
    padding: 2.25rem 0 3rem;
  }

  .cart-page__container {
    gap: 1.8rem;
    padding: 0 1rem;
  }

  .cart-summary {
    padding: 1.4rem;
    border-radius: 16px;
  }

  .cart-summary__details {
    padding: 0.85rem 0.9rem;
  }

  .cart-summary__total strong {
    font-size: 1.35rem;
  }

  .cart-summary__action {
    width: 100%;
  }
}
/* Product variant styles */
/* Product variant styles */
.product-variants {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.product-variant {
  display: grid;
  grid-template-columns: 120px auto;
  align-items: center;
  gap: 0.75rem;
}

.product-variant__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1f2937;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.product-variant__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.variation-option {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 2px solid #d1d5db;
  background: #ffffff;
  color: #1f2937;
  font-size: 0.8rem;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.variation-option:hover {
  border-color: var(--color-primary);
}

.variation-option.active {
  border-color: #0f172a;
  box-shadow: 0 0 0 1.5px rgba(15, 23, 42, 0.15);
}

.variation-option__label {
  display: inline-block;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  font-size: 0.78rem;
  color: #1f2937;
}

.variation-option--color {
  background: #ffffff;
}

.variation-option--color .variation-option__swatch {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--variant-color, #ffffff);
  border: 1px solid rgba(15, 23, 42, 0.18);
}

.variation-option--color.active .variation-option__swatch {
  box-shadow: 0 0 0 2px #ffffff, 0 0 0 3.5px #0f172a;
  border-color: transparent;
}

@media (max-width: 640px) {
  .product-variant {
    grid-template-columns: 1fr;
    gap: 0.6rem;
  }

  .product-variant__label {
    font-size: 0.82rem;
  }
}
