:root {
  --cream: #faf7f2;
  --ink: #111111;
  --gold: #c9a45c;
  --champagne: #e8dcc8;
  --rose: #d9a7b0;
  --navy: #0e1a2b;
  --white: #fffdf9;
  --muted: #6f655a;
  --line: rgba(17, 17, 17, 0.1);
  --soft-shadow: 0 18px 40px rgba(14, 26, 43, 0.08);
  --page-padding: max(20px, calc((100% - 1180px) / 2));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  letter-spacing: 0;
}

body.menu-open,
body.cart-open {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

button,
input,
select {
  font: inherit;
  letter-spacing: 0;
}

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  min-height: 76px;
  width: 100%;
  margin: 0 auto;
  padding: 14px var(--page-padding);
  background: rgba(250, 247, 242, 0.92);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 0;
  backdrop-filter: blur(18px);
  transition: top 180ms ease, width 180ms ease, padding 180ms ease, border-radius 180ms ease,
    box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  top: 14px;
  width: min(1180px, calc(100% - 32px));
  padding-right: 22px;
  padding-left: 22px;
  background: rgba(255, 253, 249, 0.96);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 999px;
  box-shadow: 0 18px 46px rgba(14, 26, 43, 0.14);
}

@media (max-width: 860px) {
  .site-header {
    transition: transform 220ms ease, top 180ms ease, width 180ms ease, padding 180ms ease,
      border-radius 180ms ease, box-shadow 180ms ease, background 180ms ease,
      border-color 180ms ease;
    will-change: transform;
  }

  .site-header.is-hidden {
    transform: translateY(calc(-100% - 24px));
  }
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  min-width: 0;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(201, 164, 92, 0.55);
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(14, 26, 43, 0.08);
}

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

.brand-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  color: rgba(17, 17, 17, 0.76);
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 180ms ease;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 1px;
  content: "";
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after {
  transform: scaleX(1);
}

.site-nav a.is-active {
  color: var(--gold);
}

.header-cta,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease,
    border-color 180ms ease;
}

.header-cta,
.button-primary {
  color: var(--white);
  background: var(--ink);
  box-shadow: 0 16px 28px rgba(17, 17, 17, 0.16);
}

.button-secondary {
  color: var(--ink);
  background: var(--white);
  border-color: rgba(201, 164, 92, 0.38);
}

.button-outline-light {
  color: var(--white);
  background: transparent;
  border-color: rgba(255, 253, 249, 0.42);
}

.feature-actions [data-catalog-filter="luxe"] {
  color: var(--gold);
  background: var(--white);
  border-color: var(--white);
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50%;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
  border-radius: 2px;
}

.header-cart-button,
.cart-close {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 50%;
  box-shadow: 0 16px 34px rgba(14, 26, 43, 0.12);
}

.header-cart-button {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
}

.header-cart-button svg,
.cart-close svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  display: inline-grid;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  place-items: center;
  color: var(--white);
  background: var(--gold);
  border: 2px solid var(--cream);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 900;
  line-height: 1;
}

.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  padding: 18px;
  background: rgba(17, 17, 17, 0.38);
  backdrop-filter: blur(10px);
}

.cart-panel {
  width: min(460px, 100%);
  max-height: calc(100svh - 36px);
  padding: 26px;
  overflow: auto;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.1);
  border-radius: 8px;
  box-shadow: 0 30px 70px rgba(14, 26, 43, 0.22);
  outline: none;
}

.cart-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.cart-panel-header h2 {
  margin-bottom: 0;
  font-size: 2rem;
}

.cart-panel-header .eyebrow {
  margin-bottom: 8px;
}

.cart-close {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  box-shadow: none;
}

.cart-empty {
  padding: 18px;
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  background: var(--cream);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
}

.cart-items {
  display: grid;
  gap: 12px;
}

.cart-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  padding: 16px;
  background: var(--cream);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
}

.cart-item h3 {
  margin-bottom: 6px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.15rem;
}

.cart-item p {
  margin-bottom: 6px;
  color: rgba(17, 17, 17, 0.66);
  font-size: 0.9rem;
}

.cart-item span {
  color: rgba(17, 17, 17, 0.6);
  font-size: 0.84rem;
  font-weight: 700;
}

.cart-item-controls {
  display: grid;
  gap: 8px;
  justify-items: end;
  align-content: start;
}

.quantity-control {
  display: inline-grid;
  grid-template-columns: 32px 34px 32px;
  min-height: 34px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
}

.quantity-control button {
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  font-weight: 900;
}

.quantity-control span {
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 0.9rem;
}

.cart-remove {
  padding: 0;
  color: rgba(17, 17, 17, 0.62);
  background: transparent;
  border: 0;
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cart-footer {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 0 0;
  border-top: 1px solid rgba(17, 17, 17, 0.1);
}

.cart-total span {
  color: rgba(17, 17, 17, 0.66);
  font-weight: 800;
}

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

.cart-actions {
  display: grid;
  gap: 10px;
}

.cart-actions .button {
  width: 100%;
}

.button.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.cart-fallback {
  display: grid;
  gap: 10px;
  padding: 16px;
  background: rgba(232, 220, 200, 0.34);
  border: 1px solid rgba(201, 164, 92, 0.22);
  border-radius: 8px;
}

.cart-fallback label {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.cart-fallback p {
  margin-bottom: 0;
  color: rgba(17, 17, 17, 0.66);
  font-size: 0.9rem;
}

.cart-fallback textarea {
  width: 100%;
  resize: vertical;
  padding: 12px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  outline: none;
}

.copy-order {
  min-height: 44px;
  padding: 10px 14px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  font-weight: 900;
}

.copy-status {
  min-height: 20px;
  color: rgba(17, 17, 17, 0.62);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero {
  position: relative;
  min-height: 82svh;
  padding: 122px var(--page-padding) 74px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: linear-gradient(
      90deg,
      rgba(250, 247, 242, 0.98) 0%,
      rgba(250, 247, 242, 0.9) 34%,
      rgba(250, 247, 242, 0.32) 66%,
      rgba(250, 247, 242, 0.05) 100%
    ),
    url("images/hero.jpeg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: cover;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 200px;
  content: "";
  pointer-events: none;
  background: linear-gradient(to bottom, rgba(250, 247, 242, 0), var(--white));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(680px, 100%);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  overflow-wrap: anywhere;
}

h1,
h2 {
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.04;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-size: 4.85rem;
}

h2 {
  margin-bottom: 18px;
  font-size: 3rem;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.25rem;
  line-height: 1.25;
}

.hero-lead {
  max-width: 610px;
  margin-bottom: 30px;
  color: rgba(17, 17, 17, 0.72);
  font-size: 1.12rem;
}

.hero-actions,
.feature-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-proof {
  width: min(430px, 100%);
  margin-top: 30px;
  overflow: hidden;
  mask-image: linear-gradient(to right, transparent, #000 12%, #000 88%, transparent);
}

.hero-proof-track {
  display: flex;
  width: max-content;
  gap: 10px;
  animation: hero-proof-marquee 12s linear infinite;
}

.hero-proof:hover .hero-proof-track {
  animation-play-state: paused;
}

.hero-proof span {
  flex: 0 0 auto;
  padding: 8px 12px;
  white-space: nowrap;
  color: var(--navy);
  background: rgba(255, 253, 249, 0.7);
  border: 1px solid rgba(201, 164, 92, 0.26);
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
}

@keyframes hero-proof-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 5px));
  }
}

.section {
  padding: 96px var(--page-padding);
}

.section-light {
  background: var(--white);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 38px;
}

.section-heading-wide {
  max-width: 860px;
}

.section-heading p:not(.eyebrow),
.feature-copy p,
.kids-copy p,
.contact-inner p,
.site-footer p {
  color: rgba(17, 17, 17, 0.68);
}

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.collection-dots {
  display: none;
}

.collection-card {
  display: flex;
  min-height: 100%;
  overflow: hidden;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
  box-shadow: var(--soft-shadow);
}

.collection-card img,
.collection-blank {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.collection-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px;
}

.collection-content p {
  margin-bottom: 22px;
  color: rgba(17, 17, 17, 0.66);
}

.collection-kicker {
  margin-bottom: 10px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.collection-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: auto;
  margin-bottom: 20px;
}

.collection-meta span {
  padding: 7px 10px;
  color: var(--ink);
  background: rgba(232, 220, 200, 0.45);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 700;
}

.collection-card-dark {
  color: var(--white);
  background: var(--navy);
  border-color: rgba(255, 253, 249, 0.1);
}

.collection-card-dark .collection-content p,
.collection-card-dark .collection-meta span {
  color: rgba(255, 253, 249, 0.78);
}

.collection-card-dark .collection-meta span {
  background: rgba(255, 253, 249, 0.1);
}

.collection-blank {
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--navy);
  border-bottom: 1px solid rgba(255, 253, 249, 0.1);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 2.4rem;
}

.collection-blank-gold {
  color: var(--ink);
  background: var(--champagne);
}

.text-button {
  align-self: flex-start;
  padding: 0 0 3px;
  color: var(--gold);
  background: transparent;
  border: 0;
  border-bottom: 1px solid currentColor;
  font-weight: 800;
}

.feature-split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
  padding: 96px var(--page-padding);
  color: var(--white);
  background: var(--navy);
}

.feature-copy {
  max-width: 680px;
}

.feature-copy p {
  color: rgba(255, 253, 249, 0.76);
}

.feature-media img,
.kids-media img {
  aspect-ratio: 5 / 4;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 52px rgba(0, 0, 0, 0.2);
}

.catalog-section {
  background: var(--cream);
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 16px;
  margin-bottom: 18px;
}

.search-field,
.price-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-field span,
.price-field span {
  color: rgba(17, 17, 17, 0.64);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.search-field input,
.price-field select {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  outline: none;
  box-shadow: 0 12px 26px rgba(14, 26, 43, 0.04);
}

.search-field input:focus,
.price-field select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(201, 164, 92, 0.16);
}

.filter-row {
  display: flex;
  gap: 10px;
  padding: 4px 0 12px;
  margin-bottom: 12px;
  overflow-x: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--ink) transparent;
}

.filter-row::-webkit-scrollbar {
  height: 6px;
}

.filter-row::-webkit-scrollbar-track {
  background: transparent;
}

.filter-row::-webkit-scrollbar-thumb {
  background: var(--ink);
  border-radius: 999px;
}

.filter-scrollbar {
  display: none;
  position: relative;
  height: 4px;
  margin: -4px 0 18px;
  overflow: hidden;
  background: rgba(17, 17, 17, 0.1);
  border-radius: 999px;
}

.filter-scrollbar span {
  position: absolute;
  top: 0;
  left: 0;
  width: 44px;
  height: 100%;
  background: var(--ink);
  border-radius: inherit;
  transform: translateX(0);
  transition: width 120ms ease, transform 120ms ease;
}

.filter-scrollbar.is-hidden {
  display: none;
}

.filter-chip {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 9px 15px;
  color: rgba(17, 17, 17, 0.74);
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  font-weight: 800;
}

.filter-chip.is-active {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.catalog-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 24px;
}

.catalog-summary p {
  margin: 0;
  color: rgba(17, 17, 17, 0.65);
  font-weight: 700;
}

.catalog-summary-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.layout-toggle {
  display: none;
  padding: 3px;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 999px;
  box-shadow: 0 12px 26px rgba(14, 26, 43, 0.04);
}

.layout-toggle button {
  min-height: 32px;
  padding: 5px 11px;
  color: rgba(17, 17, 17, 0.64);
  background: transparent;
  border: 0;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1.1;
}

.layout-toggle button.is-active {
  color: var(--white);
  background: var(--ink);
}

.reset-button {
  min-height: 38px;
  padding: 7px 12px;
  color: rgba(17, 17, 17, 0.66);
  background: transparent;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  font-weight: 800;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  min-height: 332px;
  flex-direction: column;
  padding: 22px;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.09);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(14, 26, 43, 0.06);
}

.product-femme {
  border-top-color: var(--rose);
}

.product-homme {
  border-top-color: var(--navy);
}

.product-mixte {
  border-top-color: var(--gold);
}

.product-enfants {
  border-top-color: #9fb9d6;
}

.product-luxe,
.product-luxury {
  border-top-color: var(--gold);
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  min-height: 30px;
  gap: 10px;
  margin-bottom: 12px;
}

.product-range,
.product-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 800;
}

.product-range {
  color: var(--navy);
  background: rgba(232, 220, 200, 0.52);
}

.product-badge {
  color: var(--white);
  background: var(--ink);
}

.product-card h3 {
  min-height: 62px;
  margin-bottom: 10px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.38rem;
}

.inspiration {
  min-height: 50px;
  margin-bottom: 16px;
  color: rgba(17, 17, 17, 0.66);
}

.product-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 20px;
}

.product-details div {
  padding: 10px;
  background: rgba(250, 247, 242, 0.82);
  border-radius: 8px;
}

.product-details dt {
  color: rgba(17, 17, 17, 0.52);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-details dd {
  margin: 2px 0 0;
  font-size: 0.92rem;
  font-weight: 800;
}

.button-product {
  width: 100%;
  margin-top: auto;
  color: var(--ink);
  background: var(--champagne);
  border-color: rgba(201, 164, 92, 0.4);
}

.button-product.is-added {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.empty-state {
  padding: 26px;
  margin: 0;
  color: rgba(17, 17, 17, 0.66);
  text-align: center;
  background: var(--white);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
}

.catalog-more {
  display: flex;
  justify-content: center;
  margin-top: 32px;
}

.kids-layout {
  display: grid;
  grid-template-columns: 0.82fr 1fr;
  gap: 48px;
  align-items: center;
}

.kids-copy {
  max-width: 620px;
}

.benefits-section {
  background: var(--white);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.benefit-card,
.complementary-card {
  padding: 24px;
  background: var(--cream);
  border: 1px solid rgba(17, 17, 17, 0.08);
  border-radius: 8px;
}

.benefit-card span,
.complementary-card span {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.benefit-card p,
.complementary-card p {
  margin-bottom: 0;
  color: rgba(17, 17, 17, 0.66);
}

.complementary-section {
  background: var(--cream);
}

.complementary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.contact-section {
  padding: 100px var(--page-padding);
  color: var(--white);
  background: var(--ink);
}

.contact-inner {
  width: min(760px, 100%);
}

.contact-inner p {
  max-width: 620px;
  color: rgba(255, 253, 249, 0.72);
}

.contact-inner .button-primary {
  color: var(--ink);
  background: var(--gold);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 18px;
}

.contact-actions .button {
  width: 260px;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 18px;
  padding: 22px var(--page-padding);
  color: rgba(255, 253, 249, 0.76);
  background: var(--navy);
  font-size: 0.92rem;
}

.site-footer p {
  margin-bottom: 0;
  color: rgba(255, 253, 249, 0.68);
}

.site-footer > *:nth-child(2) {
  justify-self: end;
  text-align: right;
}

.site-footer a {
  color: rgba(255, 253, 249, 0.82);
  font-weight: 700;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--white);
}

@media (hover: hover) {
  .button:hover,
  .header-cta:hover,
  .header-cart-button:hover,
  .cart-close:hover,
  .copy-order:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 36px rgba(17, 17, 17, 0.18);
  }

  .collection-card:hover,
  .product-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 44px rgba(14, 26, 43, 0.1);
  }

  .collection-card,
  .product-card {
    transition: transform 180ms ease, box-shadow 180ms ease;
  }
}

@media (max-width: 1120px) {
  .site-nav {
    gap: 16px;
  }

  .product-grid,
  .benefits-grid,
  .complementary-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  h1 {
    font-size: 3.6rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .collection-grid,
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .feature-split,
  .kids-layout {
    grid-template-columns: 1fr;
  }

  .feature-media,
  .kids-media {
    max-width: 620px;
  }

  .benefits-grid,
  .complementary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 860px) {
  .site-header {
    gap: 10px;
    min-height: 70px;
  }

  .site-nav {
    position: fixed;
    top: 82px;
    right: 18px;
    left: 18px;
    display: grid;
    gap: 2px;
    margin-left: 0;
    padding: 18px;
    background: var(--white);
    border: 1px solid rgba(17, 17, 17, 0.1);
    border-radius: 8px;
    box-shadow: 0 20px 48px rgba(14, 26, 43, 0.16);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-nav a {
    padding: 12px 10px;
    border-radius: 8px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a.is-active {
    background: rgba(201, 164, 92, 0.12);
  }

  .header-cta {
    display: none;
  }

  .header-cart-button {
    display: inline-flex;
    margin-left: auto;
  }

  .nav-toggle {
    display: inline-block;
  }
}

@media (max-width: 700px) {
  .hero {
    min-height: 78svh;
    padding-top: 98px;
    padding-bottom: 52px;
    background-image: linear-gradient(
        90deg,
        rgba(250, 247, 242, 0.98) 0%,
        rgba(250, 247, 242, 0.9) 58%,
        rgba(250, 247, 242, 0.52) 100%
      ),
      url("images/hero.jpeg");
    background-position: center right 22%;
  }

  h1 {
    font-size: 2.7rem;
  }

  h2 {
    font-size: 2.12rem;
  }

  .section,
  .feature-split,
  .contact-section {
    padding: 68px 18px;
  }

  .site-header,
  .site-footer {
    padding-right: 18px;
    padding-left: 18px;
  }

  .brand-text {
    max-width: 190px;
  }

  .cart-overlay {
    padding: 10px;
  }

  .cart-panel {
    width: 100%;
    max-height: calc(100svh - 20px);
    padding: 20px;
  }

  .cart-panel-header h2 {
    font-size: 1.7rem;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item-controls {
    grid-template-columns: auto 1fr;
    align-items: center;
    justify-items: start;
  }

  .hero-actions,
  .feature-actions,
  .contact-actions {
    display: grid;
  }

  .button,
  .header-cta {
    width: 100%;
  }

  .contact-actions .button {
    width: 100%;
  }

  .collection-grid,
  .product-grid,
  .benefits-grid,
  .complementary-grid,
  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer > *:nth-child(2) {
    justify-self: center;
    text-align: center;
  }

  .collection-card img,
  .collection-blank {
    aspect-ratio: 16 / 11;
  }

  .collection-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    padding: 4px 18px 18px 0;
    margin-right: -18px;
    background: var(--white);
    overflow-x: auto;
    overscroll-behavior-x: contain;
    scroll-padding-left: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .collection-grid::-webkit-scrollbar {
    display: none;
  }

  .collection-card {
    flex: 0 0 min(86%, 340px);
    min-height: auto;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .collection-content {
    padding: 20px;
  }

  .collection-content p {
    margin-bottom: 18px;
  }

  .collection-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 18px;
    margin-top: 2px;
    background: var(--white);
  }

  .collection-dot {
    width: 8px;
    height: 8px;
    padding: 0;
    background: rgba(17, 17, 17, 0.22);
    border: 0;
    border-radius: 999px;
    transition: width 180ms ease, background 180ms ease;
  }

  .collection-dot.is-active {
    width: 24px;
    background: var(--ink);
  }

  .filter-row {
    padding-bottom: 8px;
    margin-bottom: 6px;
    scrollbar-width: none;
  }

  .filter-row::-webkit-scrollbar {
    display: none;
  }

  .filter-scrollbar {
    display: block;
  }

  .catalog-summary {
    align-items: flex-start;
    flex-direction: column;
  }

  .catalog-summary-actions {
    width: 100%;
    justify-content: space-between;
  }

  .layout-toggle {
    display: inline-grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-card {
    min-height: auto;
  }

  .product-card h3,
  .inspiration {
    min-height: auto;
  }

  .product-grid.is-grid-view {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }

  .product-grid.is-grid-view .product-card {
    min-width: 0;
    padding: 14px;
  }

  .product-grid.is-grid-view .product-card-top {
    min-height: auto;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 8px;
  }

  .product-grid.is-grid-view .product-range,
  .product-grid.is-grid-view .product-badge {
    min-height: 24px;
    padding: 4px 7px;
    font-size: 0.68rem;
  }

  .product-grid.is-grid-view .product-card h3 {
    margin-bottom: 8px;
    overflow-wrap: anywhere;
    font-size: 1rem;
    line-height: 1.18;
  }

  .product-grid.is-grid-view .inspiration {
    margin-bottom: 10px;
    overflow-wrap: anywhere;
    font-size: 0.78rem;
    line-height: 1.35;
  }

  .product-grid.is-grid-view .product-details {
    grid-template-columns: 1fr;
    gap: 6px;
    margin-bottom: 12px;
  }

  .product-grid.is-grid-view .product-details div:nth-child(-n + 2) {
    display: none;
  }

  .product-grid.is-grid-view .product-details div {
    padding: 8px;
  }

  .product-grid.is-grid-view .product-details dt {
    font-size: 0.66rem;
  }

  .product-grid.is-grid-view .product-details dd {
    font-size: 0.82rem;
  }

  .product-grid.is-grid-view .button-product {
    min-height: 42px;
    padding: 10px 8px;
    font-size: 0.82rem;
  }

}

@media (max-width: 420px) {
  .brand-text {
    max-width: 142px;
  }

  h1 {
    font-size: 2.35rem;
  }

  .product-details {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
