:root {
  --gold: #d4af6a;
  --gold-dark: #b8924f;
  --blush: #f3ddd8;
  --blush-deep: #e8c6be;
  --rose: #c98b84;
  --bg: #fbf7f4;
  --bg-warm: #f6ebe4;
  --white: #ffffff;
  --ink: #3a322e;
  --ink-soft: #7a716c;
  --line: rgba(58, 50, 46, 0.12);
  --shadow: 0 16px 40px rgba(58, 50, 46, 0.08);
  --radius: 22px;
  --header-h: 72px;
  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --space: clamp(1rem, 3.5vw, 2.5rem);
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(1000px 520px at 8% -8%, rgba(243, 221, 216, 0.7), transparent 55%),
    radial-gradient(800px 480px at 100% 0%, rgba(212, 175, 106, 0.16), transparent 52%),
    radial-gradient(600px 380px at 50% 100%, rgba(243, 221, 216, 0.35), transparent 60%),
    var(--bg);
  line-height: 1.65;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

ul {
  list-style: none;
}

.container {
  width: min(1180px, calc(100% - (var(--space) * 2)));
  margin-inline: auto;
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-dark);
  font-weight: 500;
}

h1,
h2,
h3,
.logo {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
}

.section {
  padding: clamp(2.5rem, 5vw, 4.25rem) 0;
}

.section-tight {
  padding: clamp(2rem, 4vw, 3.25rem) 0;
}

.section-head {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.section-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.6rem);
  margin: 0.5rem 0 0.75rem;
}

.section-head p {
  color: var(--ink-soft);
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.section-head-row h2 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin-top: 0.35rem;
}

.section-head-row .text-link {
  margin-top: 0;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.6rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 500;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease),
    border-color 0.35s var(--ease);
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-dark);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.7);
  color: #fff;
  background: transparent;
}

.btn-outline:hover {
  background: #fff;
  color: var(--ink);
}

.btn-ghost {
  background: transparent;
  border-color: var(--line);
  color: var(--ink);
  min-height: 42px;
  width: 100%;
  border-radius: 12px;
}

.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
}

.btn-block {
  width: 100%;
}

.text-link {
  display: inline-block;
  margin-top: 1rem;
  color: var(--gold-dark);
  text-decoration: underline;
  text-underline-offset: 4px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  display: flex;
  align-items: center;
  backdrop-filter: blur(16px);
  background: rgba(248, 245, 242, 0.72);
  border-bottom: 1px solid transparent;
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(51, 51, 51, 0.05);
}

.navbar {
  width: min(1180px, calc(100% - (var(--space) * 2)));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-size: clamp(1.05rem, 3vw, 1.35rem);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.logo-img {
  width: clamp(42px, 8vw, 52px);
  height: clamp(42px, 8vw, 52px);
  object-fit: cover;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 106, 0.55);
  background: #0b0b0b;
  box-shadow:
    0 0 0 0 rgba(212, 175, 106, 0.35),
    0 6px 18px rgba(0, 0, 0, 0.14);
  animation:
    logoIn 0.9s var(--ease) both,
    logoFloat 4.5s ease-in-out 0.9s infinite,
    logoGlow 2.8s ease-in-out 0.9s infinite;
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
  will-change: transform, box-shadow;
}

.logo:hover .logo-img {
  transform: scale(1.1) rotate(-6deg);
  border-color: var(--gold);
  box-shadow:
    0 0 0 6px rgba(212, 175, 106, 0.18),
    0 10px 28px rgba(212, 175, 106, 0.35);
  animation-play-state: paused;
}

.logo-text {
  display: inline-block;
  animation: logoTextIn 0.85s var(--ease) 0.15s both;
}

.logo:hover .logo-text {
  animation: logoShimmer 1.4s ease;
}

.logo-text em,
.logo span,
.logo em {
  color: var(--rose);
  font-style: italic;
  font-weight: 500;
}

.logo-footer .logo-img {
  width: 72px;
  height: 72px;
}

@keyframes logoIn {
  from {
    opacity: 0;
    transform: scale(0.55) rotate(-25deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes logoTextIn {
  from {
    opacity: 0;
    transform: translateX(-10px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes logoGlow {
  0%,
  100% {
    box-shadow:
      0 0 0 0 rgba(212, 175, 106, 0.28),
      0 6px 18px rgba(0, 0, 0, 0.14);
  }
  50% {
    box-shadow:
      0 0 0 8px rgba(212, 175, 106, 0.08),
      0 8px 26px rgba(212, 175, 106, 0.35);
  }
}

@keyframes logoShimmer {
  0%,
  100% {
    opacity: 1;
    letter-spacing: 0.02em;
  }
  50% {
    opacity: 0.82;
    letter-spacing: 0.06em;
  }
}

.footer-tagline {
  margin-top: 0.65rem;
  font-family: var(--font-display);
  font-style: italic;
  color: rgba(255, 255, 255, 0.82) !important;
}

.footer-contact {
  display: grid;
  gap: 0.4rem;
  margin-top: 1rem;
}

.footer-contact a {
  color: var(--gold) !important;
}

.tagline {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--rose) !important;
}

.whatsapp-float {
  position: fixed;
  right: max(1rem, env(safe-area-inset-right));
  bottom: max(1rem, env(safe-area-inset-bottom));
  z-index: 2100;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.7rem 1rem 0.7rem 0.75rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 500;
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.35);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  animation: waIn 0.7s var(--ease) 0.4s both, waBounce 2.4s ease-in-out 1.2s infinite;
}

.whatsapp-float::before,
.whatsapp-float::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid rgba(37, 211, 102, 0.7);
  pointer-events: none;
  animation: waPulse 2.4s ease-out infinite;
}

.whatsapp-float::after {
  animation-delay: 1.2s;
}

.whatsapp-float svg {
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  animation: waWiggle 2.4s ease-in-out 1.2s infinite;
}

.whatsapp-float:hover {
  transform: translateY(-4px) scale(1.05);
  background: #1ebe57;
  box-shadow: 0 18px 34px rgba(37, 211, 102, 0.48);
  color: #fff;
  animation-play-state: paused;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after,
.whatsapp-float:hover svg {
  animation-play-state: paused;
}

@keyframes waIn {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.7);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes waBounce {
  0%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-7px);
  }
  60% {
    transform: translateY(-3px);
  }
}

@keyframes waPulse {
  0% {
    transform: scale(1);
    opacity: 0.75;
  }
  100% {
    transform: scale(1.55);
    opacity: 0;
  }
}

@keyframes waWiggle {
  0%,
  70%,
  100% {
    transform: rotate(0deg);
  }
  78% {
    transform: rotate(-12deg);
  }
  86% {
    transform: rotate(10deg);
  }
  92% {
    transform: rotate(-6deg);
  }
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}

.nav-item {
  position: relative;
}

.nav-links a {
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-soft);
  position: relative;
  transition: color 0.3s var(--ease);
}

.nav-parent {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.nav-parent::before {
  content: "";
  order: 1;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.65;
  transition: transform 0.3s var(--ease);
}

.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.nav-links > li > a:hover,
.nav-links > li > a[aria-current="page"] {
  color: var(--ink);
}

.nav-links > li > a:hover::after,
.nav-links > li > a[aria-current="page"]::after {
  transform: scaleX(1);
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 0.85rem);
  left: 50%;
  min-width: 180px;
  padding: 0.55rem;
  border-radius: 16px;
  background: rgba(255, 251, 249, 0.98);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: grid;
  gap: 0.2rem;
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease), visibility 0.28s;
  z-index: 1200;
}

.nav-dropdown::before {
  content: "";
  position: absolute;
  top: -10px;
  left: 0;
  right: 0;
  height: 10px;
}

.nav-dropdown a {
  display: block;
  padding: 0.75rem 0.9rem;
  border-radius: 12px;
  color: var(--ink-soft);
}

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

.nav-dropdown a:hover {
  background: rgba(212, 175, 106, 0.14);
  color: var(--ink);
}

.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown,
.has-dropdown.is-open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.has-dropdown:hover .nav-parent::before,
.has-dropdown:focus-within .nav-parent::before,
.has-dropdown.is-open .nav-parent::before {
  transform: rotate(180deg);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.icon-btn {
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.icon-btn:hover {
  border-color: var(--gold);
  background: #fff;
}

.cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  font-size: 0.65rem;
  display: grid;
  place-items: center;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  margin: 3px auto;
  background: var(--ink);
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

/* Hero */
.hero {
  position: relative;
  min-height: clamp(62svh, 70svh, 760px);
  display: grid;
  place-items: end start;
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  animation: heroZoom 18s var(--ease) infinite alternate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(20, 16, 14, 0.2) 0%, rgba(20, 16, 14, 0.35) 40%, rgba(20, 16, 14, 0.78) 100%),
    linear-gradient(90deg, rgba(20, 16, 14, 0.5) 0%, transparent 58%);
}

.hero-content {
  width: min(1180px, calc(100% - (var(--space) * 2)));
  margin: 0 auto;
  padding: 0 0 clamp(2.5rem, 6vw, 4.5rem);
  max-width: 680px;
}

.hero-brand {
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 9vw, 5rem);
  letter-spacing: 0.01em;
  margin-bottom: 0.55rem;
  animation: rise 1s var(--ease) both;
  text-wrap: balance;
}

.hero h2 {
  font-size: clamp(1.25rem, 3vw, 1.85rem);
  font-weight: 400;
  margin-bottom: 0.85rem;
  animation: rise 1s var(--ease) 0.12s both;
}

.hero p {
  max-width: 42ch;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  animation: rise 1s var(--ease) 0.22s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  animation: rise 1s var(--ease) 0.32s both;
}

.ticker {
  overflow: hidden;
  background: #1f1a17;
  color: rgba(255, 255, 255, 0.82);
  border-block: 1px solid rgba(212, 175, 106, 0.25);
}

.ticker-track {
  display: flex;
  gap: 1.25rem;
  width: max-content;
  padding: 0.85rem 0;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  animation: tickerMove 28s linear infinite;
}

.ticker-track span:nth-child(odd) {
  color: var(--gold);
}

@keyframes tickerMove {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

.categories {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(0.85rem, 2vw, 1.25rem);
}

.categories-home {
  width: min(1280px, calc(100% - (var(--space) * 2)));
  margin-inline: auto;
  gap: 0.85rem;
}

.category-tile {
  position: relative;
  min-height: clamp(240px, 34vw, 360px);
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  color: #fff;
  box-shadow: var(--shadow);
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.category-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 28%, rgba(20, 16, 14, 0.78));
}

.category-copy {
  position: absolute;
  left: 1.15rem;
  right: 1.15rem;
  bottom: 1.15rem;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
}

.category-label {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.4vw, 1.8rem);
}

.category-cta {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.85;
}

.category-tile:hover img {
  transform: scale(1.07);
}

.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  width: min(1280px, calc(100% - (var(--space) * 2)));
  margin: 0.25rem auto 0;
}

.editorial-panel {
  position: relative;
  min-height: clamp(320px, 42vw, 520px);
  overflow: hidden;
  border-radius: var(--radius);
  color: #fff;
  isolation: isolate;
}

.editorial-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.9s var(--ease);
}

.editorial-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 35%, rgba(15, 12, 10, 0.78));
}

.editorial-copy {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
}

.editorial-copy .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.editorial-copy h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0.35rem 0 0.75rem;
}

.editorial-link {
  display: inline-block;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  padding-bottom: 0.2rem;
}

.editorial-panel:hover img {
  transform: scale(1.06);
}

.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

.products-home {
  gap: 1.15rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.lookbook {
  padding: clamp(2rem, 4vw, 3.25rem) 0 clamp(2.5rem, 5vw, 4rem);
}

.lookbook-head {
  margin-bottom: 1.35rem;
}

.lookbook-head h2 {
  font-size: clamp(1.85rem, 4vw, 2.5rem);
  margin-top: 0.35rem;
}

.lookbook-grid {
  width: min(1280px, calc(100% - (var(--space) * 2)));
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  grid-template-rows: 240px 240px;
  gap: 0.85rem;
}

.lookbook-item {
  position: relative;
  overflow: hidden;
  border-radius: calc(var(--radius) - 4px);
  color: #fff;
  isolation: isolate;
}

.lookbook-item.tall {
  grid-row: 1 / span 2;
}

.lookbook-item.wide {
  grid-column: 2 / span 2;
}

.lookbook-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease);
}

.lookbook-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(15, 12, 10, 0.7));
}

.lookbook-item span {
  position: absolute;
  left: 1.1rem;
  bottom: 1.1rem;
  z-index: 1;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.lookbook-item:hover img {
  transform: scale(1.06);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--blush), var(--bg-warm));
  box-shadow: 0 10px 28px rgba(58, 50, 46, 0.06);
}

.product-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s var(--ease), transform 0.8s var(--ease);
}

.product-img.secondary {
  opacity: 0;
}

.product-media:hover .primary {
  opacity: 0;
  transform: scale(1.04);
}

.product-media:hover .secondary {
  opacity: 1;
  transform: scale(1.04);
}

.product-badge,
.product-discount {
  position: absolute;
  top: 0.85rem;
  z-index: 1;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.product-badge {
  left: 0.85rem;
}

.product-discount {
  right: 0.85rem;
  background: var(--gold);
  color: #fff;
}

.product-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.35rem;
}

.product-body h3 a:hover {
  color: var(--gold-dark);
}

.product-meta {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.85rem;
}

.price {
  font-weight: 500;
}

.price-old {
  color: var(--ink-soft);
  text-decoration: line-through;
  font-size: 0.9rem;
}


.promo {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(120deg, rgba(184, 146, 79, 0.95), rgba(212, 175, 106, 0.88)),
    url("https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1600&q=80") center/cover;
}

.promo-rich {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  min-height: 420px;
  background: #1f1a17;
}

.promo-media {
  min-height: 320px;
}

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

.promo-inner {
  width: min(780px, calc(100% - (var(--space) * 2)));
  margin: 0 auto;
  text-align: center;
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.promo-rich .promo-inner {
  width: auto;
  margin: 0;
  text-align: left;
  display: grid;
  align-content: center;
  justify-items: start;
  padding: clamp(2rem, 5vw, 3.5rem);
  background: linear-gradient(135deg, rgba(184, 146, 79, 0.95), rgba(120, 84, 48, 0.92));
}

.promo h2 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0.75rem 0 1rem;
}

.promo p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.75rem;
  max-width: 36ch;
}

.promo .btn-outline {
  border-color: #fff;
}

.promo-rich .eyebrow {
  color: rgba(255, 255, 255, 0.85);
}

.promise-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.promise-item {
  padding: 1.35rem 1.2rem;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.promise-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.45rem;
}

.promise-item p {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.cta-band {
  background:
    radial-gradient(700px 280px at 10% 0%, rgba(243, 221, 216, 0.55), transparent 60%),
    linear-gradient(180deg, #efe4dc, #e8d5cb);
  padding: clamp(2.5rem, 5vw, 3.75rem) 0;
  margin-top: 0.5rem;
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.cta-band h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin: 0.35rem 0 0.55rem;
}

.cta-band p {
  color: var(--ink-soft);
  max-width: 40ch;
}

.cta-band-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.btn-ghost-light {
  background: rgba(255, 255, 255, 0.65);
  border-color: rgba(58, 50, 46, 0.14);
  color: var(--ink);
}

.btn-ghost-light:hover {
  background: #fff;
  border-color: var(--gold);
}

.trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.trust-item {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(255, 255, 255, 0.8);
  box-shadow: var(--shadow);
}

.trust-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.trust-item p {
  color: var(--ink-soft);
  font-size: 0.95rem;
}

/* Page hero */
.page-hero {
  padding: 4.5rem 0 2.5rem;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(239, 215, 210, 0.45), transparent),
    var(--bg);
}

.page-hero h1 {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  margin: 0.5rem 0 0.75rem;
}

.page-hero p {
  color: var(--ink-soft);
  max-width: 48ch;
  margin-inline: auto;
}

/* Shop */
.shop-toolbar {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr) auto;
  gap: 0.85rem;
  align-items: end;
  margin-bottom: 2rem;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.field label {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 106, 0.18);
}

.result-count {
  align-self: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  padding-bottom: 0.35rem;
}

.shop-empty {
  grid-column: 1 / -1;
}

/* Product detail */
.product-detail {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: start;
  padding: 3rem 0 5rem;
}

.product-gallery img#product-main-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: calc(var(--radius) + 4px);
  background: var(--bg-warm);
}

.product-thumbs {
  display: flex;
  gap: 0.75rem;
  margin-top: 0.85rem;
}

.product-thumbs button {
  width: 84px;
  height: 104px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  background: none;
}

.product-thumbs button.is-active {
  border-color: var(--gold);
}

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

.product-detail-info h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin: 0.35rem 0 1rem;
}

.product-desc {
  color: var(--ink-soft);
  margin: 1.25rem 0;
}

.product-spec {
  margin-bottom: 0.4rem;
  font-size: 0.95rem;
}

.size-field {
  border: 0;
  margin: 1.5rem 0 1.25rem;
}

.size-field legend {
  margin-bottom: 0.65rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.size-options label {
  cursor: pointer;
}

.size-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.size-options span {
  display: inline-grid;
  place-items: center;
  min-width: 46px;
  height: 42px;
  padding: 0 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
}

.size-options input:checked + span {
  border-color: var(--gold);
  background: var(--gold);
  color: #fff;
}

.qty-field {
  margin-bottom: 1.5rem;
}

.qty-field > label {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.cart-qty {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.25rem;
  background: #fff;
}

.cart-qty button {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--bg-warm);
  cursor: pointer;
}

.cart-qty input,
.cart-qty span {
  width: 36px;
  text-align: center;
  border: 0;
  background: transparent;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.product-actions .btn-outline {
  border-color: var(--line);
  color: var(--ink);
}

.product-actions .btn-outline:hover {
  border-color: var(--gold);
  background: transparent;
  color: var(--gold-dark);
}

/* Checkout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 4rem;
}

.checkout-main {
  display: grid;
  gap: 1.25rem;
}

.checkout-card {
  padding: 1.5rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.checkout-card h2 {
  font-size: 1.45rem;
  margin-bottom: 1.1rem;
}

.checkout-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}

.checkout-fields .field-full {
  grid-column: 1 / -1;
}

.payment-options {
  display: grid;
  gap: 0.7rem;
}

.payment-option {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.85rem;
  align-items: start;
  padding: 0.95rem 1rem;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  cursor: pointer;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.payment-option:has(input:checked) {
  border-color: var(--gold);
  background: rgba(212, 175, 106, 0.12);
}

.payment-option input {
  margin-top: 0.2rem;
  accent-color: var(--gold-dark);
}

.payment-option strong {
  display: block;
  font-weight: 500;
}

.payment-option small {
  display: block;
  margin-top: 0.2rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.payment-note {
  margin-top: 0.95rem;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.checkout-summary {
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.checkout-items {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
  max-height: 280px;
  overflow: auto;
  padding-right: 0.25rem;
}

.checkout-item {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0.75rem;
  align-items: center;
}

.checkout-item img {
  width: 56px;
  height: 70px;
  object-fit: cover;
  border-radius: 10px;
  background: var(--bg-warm);
}

.checkout-item strong {
  display: block;
  font-size: 0.92rem;
  font-weight: 500;
}

.checkout-item p {
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.shipping-hint {
  margin: 0.35rem 0 1rem;
  color: var(--ink-soft);
  font-size: 0.85rem;
}

.checkout-success {
  max-width: 640px;
  margin: 0 auto 3rem;
  padding: 2rem;
  text-align: center;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.checkout-success h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin: 0.4rem 0 0.75rem;
}

.success-id {
  margin-bottom: 0.85rem;
}

.success-summary {
  margin: 1.5rem 0;
  text-align: left;
}

.email-status {
  margin: 0.85rem 0 0;
  font-size: 0.95rem;
}

.email-status.is-ok {
  color: #2f6b3a;
}

.email-status.is-warn {
  color: #8a5a12;
  background: rgba(212, 175, 106, 0.18);
  padding: 0.85rem 1rem;
  border-radius: 12px;
}

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  padding-bottom: 4rem;
}

.cart-row {
  display: grid;
  grid-template-columns: 96px 1.4fr auto auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.cart-thumb {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-warm);
}

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

.cart-info h3 {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
}

.cart-info p {
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.cart-remove {
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  font-size: 1.4rem;
  cursor: pointer;
  color: var(--ink-soft);
}

.cart-summary {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: fit-content;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.cart-summary h2 {
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.85rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.summary-row.total {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
}

.empty-state {
  text-align: center;
  padding: 4rem 1rem 5rem;
}

.empty-state h2 {
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.empty-state p {
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}

/* About / Contact */
.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
}

.split-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  margin: 0.5rem 0 1rem;
}

.split-copy p {
  color: var(--ink-soft);
  margin-bottom: 1rem;
}

.split-media {
  border-radius: calc(var(--radius) + 6px);
  overflow: hidden;
  min-height: 420px;
  background: var(--bg-warm);
}

.split-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 2rem;
  padding-bottom: 4rem;
}

.contact-card,
.contact-form {
  padding: 1.75rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--line);
}

.contact-card h2,
.contact-form h2 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.contact-card p {
  color: var(--ink-soft);
  margin-bottom: 0.75rem;
}

.contact-form {
  display: grid;
  gap: 0.9rem;
}

/* Footer */
.site-footer {
  background: #2b2623;
  color: rgba(255, 255, 255, 0.88);
  padding: 3.5rem 0 2rem;
  margin-top: 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.site-footer .logo {
  color: #fff;
  margin-bottom: 0.85rem;
  display: inline-block;
}

.site-footer .logo-text {
  color: #fff;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.site-footer a:hover {
  color: var(--gold);
}

.footer-col h3 {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-col ul {
  display: grid;
  gap: 0.55rem;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

.social-links {
  display: flex;
  gap: 1rem;
}

/* Toast + motion */
.toast {
  position: fixed;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%) translateY(20px);
  background: #2b2623;
  color: #fff;
  padding: 0.85rem 1.25rem;
  border-radius: 999px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease);
  z-index: 2000;
  box-shadow: var(--shadow);
}

.toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.08);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .products {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .categories,
  .trust,
  .promise-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .editorial,
  .promo-rich {
    grid-template-columns: 1fr;
  }

  .lookbook-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 220px 220px 220px;
  }

  .lookbook-item.tall {
    grid-row: auto;
    grid-column: 1 / span 2;
    min-height: 280px;
  }

  .lookbook-item.wide {
    grid-column: 1 / span 2;
  }

  .cta-band-inner {
    flex-direction: column;
    align-items: flex-start;
  }

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

  .shop-toolbar,
  .product-detail,
  .cart-layout,
  .checkout-layout,
  .split,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .product-detail {
    gap: 1.75rem;
    padding-top: 1.5rem;
  }

  .cart-row {
    grid-template-columns: 80px 1fr;
    grid-template-areas:
      "thumb info"
      "thumb qty"
      "thumb total"
      "thumb remove";
  }

  .cart-thumb {
    grid-area: thumb;
  }

  .cart-info {
    grid-area: info;
  }

  .cart-qty {
    grid-area: qty;
  }

  .cart-line-total {
    grid-area: total;
  }

  .cart-remove {
    grid-area: remove;
    justify-self: start;
  }

  .split-media,
  .split-media img {
    min-height: 320px;
  }
}

@media (max-width: 760px) {
  :root {
    --header-h: 64px;
  }

  /* Bottom tab bar handles mobile nav — hide hamburger + desktop links */
  .nav-toggle,
  .nav-links {
    display: none !important;
  }

  .hero {
    min-height: min(88svh, 720px);
    place-items: end stretch;
  }

  .hero-content {
    padding-bottom: 2.5rem;
    text-align: left;
  }

  .hero h2 {
    font-size: clamp(1.2rem, 5.5vw, 1.6rem);
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.35rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .category-tile {
    min-height: 210px;
  }

  .category-copy {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
  }

  .editorial-panel {
    min-height: 300px;
  }

  .lookbook-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .lookbook-item,
  .lookbook-item.tall,
  .lookbook-item.wide {
    grid-column: auto;
    min-height: 240px;
  }

  .promise-grid,
  .trust,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .promo-rich .promo-inner {
    text-align: left;
  }

  .cta-band-actions {
    width: 100%;
  }

  .cta-band-actions .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.85rem;
  }

  .product-body h3 {
    font-size: 0.98rem;
  }

  .product-meta {
    flex-wrap: wrap;
    margin-bottom: 0.65rem;
  }

  .btn-ghost {
    min-height: 40px;
    font-size: 0.85rem;
  }

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

  .shop-toolbar {
    grid-template-columns: 1fr;
    padding: 0.85rem;
  }

  .result-count {
    padding-bottom: 0;
  }

  .page-hero {
    padding: 3rem 0 1.5rem;
  }

  .page-hero h1 {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .product-actions .btn,
  .contact-form .btn,
  .cart-summary .btn {
    width: 100%;
  }

  .product-thumbs button {
    width: 68px;
    height: 84px;
  }

  .cart-summary {
    position: static;
  }

  .checkout-summary {
    position: static;
  }

  .checkout-fields {
    grid-template-columns: 1fr;
  }

  .success-actions .btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .social-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }

  .toast {
    left: var(--space);
    right: var(--space);
    bottom: calc(4.5rem + env(safe-area-inset-bottom, 0px));
    width: auto;
    transform: translateY(20px);
    text-align: center;
  }

  .toast.is-visible {
    transform: translateY(0);
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .whatsapp-float {
    width: 56px;
    height: 56px;
    min-height: 56px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }

  .logo-text {
    font-size: 1rem;
  }
}

@media (max-width: 420px) {
  .logo {
    font-size: 1.1rem;
  }

  .categories {
    grid-template-columns: 1fr 1fr;
  }

  .price,
  .price-old {
    font-size: 0.88rem;
  }

  .trust-item,
  .contact-card,
  .contact-form {
    padding: 1.25rem;
  }
}

@media (min-width: 761px) and (max-width: 980px) {
  .nav-links {
    gap: 1rem;
  }

  .nav-links a {
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-media img {
    animation: none;
  }
}

/* Product wishlist */
.product-card {
  position: relative;
}

.wish-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
}

.wish-btn svg {
  width: 18px;
  height: 18px;
}

.wish-btn.is-active {
  color: #c44b5a;
}

.wish-btn.is-active svg {
  fill: currentColor;
}

.mobile-promo,
.mobile-tabbar {
  display: none;
}

.shop-chips {
  display: none;
}

/* Khaadi-style mobile experience */
@media (max-width: 760px) {
  :root {
    --header-h: 58px;
    --bottom-nav-h: 64px;
    --radius: 14px;
  }

  body {
    background: #fff;
    padding-bottom: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
  }

  .mobile-promo {
    display: block;
    background: #6b2d3c;
    color: #fff;
    text-align: center;
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.55rem 0.75rem;
  }

  .site-header {
    height: var(--header-h);
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    box-shadow: none;
  }

  .navbar {
    width: calc(100% - 1.25rem);
    gap: 0.5rem;
  }

  .logo-text {
    font-size: 0.95rem;
  }

  .logo-img {
    width: 36px;
    height: 36px;
  }

  .nav-actions .icon-btn {
    display: none;
  }

  .hero {
    min-height: 58svh;
    border-radius: 0;
  }

  .hero-brand {
    font-size: clamp(1.8rem, 8vw, 2.4rem);
  }

  .hero h2 {
    font-size: 1.15rem;
  }

  .hero p {
    font-size: 0.88rem;
    margin-bottom: 1rem;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    min-height: 44px;
    border-radius: 999px;
  }

  .ticker {
    display: none;
  }

  .section,
  .section-tight,
  .lookbook {
    padding: 1.35rem 0;
  }

  .section-head-row {
    margin-bottom: 0.85rem;
  }

  .section-head-row h2,
  .lookbook-head h2,
  .page-hero h1 {
    font-size: 1.45rem;
  }

  .page-hero {
    padding: 1.25rem 0 0.75rem;
    background: #fff;
    text-align: left;
  }

  .page-hero p {
    margin-inline: 0;
  }

  .page-hero-shop {
    padding-bottom: 0.35rem;
  }

  .shop-chips {
    display: flex;
    gap: 0.55rem;
    overflow-x: auto;
    padding: 0.35rem 0 0.85rem;
    scrollbar-width: none;
  }

  .shop-chips::-webkit-scrollbar {
    display: none;
  }

  .shop-chip {
    flex: 0 0 auto;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: #fff;
    font-size: 0.82rem;
    color: var(--ink);
  }

  .section-shop {
    padding-top: 0.25rem;
  }

  .shop-toolbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
    padding: 0.75rem;
    margin-bottom: 0.85rem;
    border-radius: 14px;
  }

  .shop-toolbar .field:first-child,
  .shop-toolbar .result-count {
    grid-column: 1 / -1;
  }

  .categories-home,
  .editorial,
  .lookbook-grid,
  .products,
  .products-home,
  .products-shop {
    width: calc(100% - 1.25rem);
    margin-inline: auto;
  }

  .categories {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.55rem;
  }

  .category-tile {
    min-height: 170px;
    border-radius: 12px;
  }

  .editorial {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .editorial-panel {
    min-height: 220px;
    border-radius: 12px;
  }

  .products,
  .products-home,
  .products-shop {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.65rem;
  }

  .product-card {
    gap: 0.45rem;
  }

  .product-media {
    border-radius: 10px;
    aspect-ratio: 3 / 4;
  }

  .product-body h3 {
    font-size: 0.86rem;
    line-height: 1.3;
    margin-bottom: 0.2rem;
  }

  .product-meta {
    margin-bottom: 0.35rem;
    gap: 0.35rem;
  }

  .price,
  .price-old {
    font-size: 0.82rem;
  }

  .product-body .btn-ghost {
    display: none;
  }

  .lookbook-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    gap: 0.55rem;
  }

  .lookbook-item,
  .lookbook-item.tall,
  .lookbook-item.wide {
    grid-column: auto;
    min-height: 180px;
    border-radius: 12px;
  }

  .lookbook-item.tall {
    grid-column: 1 / -1;
    min-height: 220px;
  }

  .promo-rich {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .promo-media {
    min-height: 200px;
  }

  .promise-grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.55rem;
  }

  .promise-item {
    padding: 0.9rem;
  }

  .cta-band {
    margin-bottom: 0.5rem;
  }

  .whatsapp-float {
    bottom: calc(var(--bottom-nav-h) + 0.85rem + env(safe-area-inset-bottom, 0px));
    right: 0.85rem;
    width: 52px;
    height: 52px;
    min-height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }

  .mobile-tabbar {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2200;
    height: calc(var(--bottom-nav-h) + env(safe-area-inset-bottom, 0px));
    padding: 0.35rem 0.25rem calc(0.35rem + env(safe-area-inset-bottom, 0px));
    background: rgba(255, 255, 255, 0.98);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
  }

  .tab-item {
    position: relative;
    display: grid;
    justify-items: center;
    align-content: center;
    gap: 0.15rem;
    border: 0;
    background: transparent;
    color: #8a827c;
    font-size: 0.68rem;
    text-decoration: none;
    cursor: pointer;
  }

  .tab-item svg {
    width: 22px;
    height: 22px;
  }

  .tab-item.is-active {
    color: var(--ink);
  }

  .tab-badge {
    position: absolute;
    top: 0;
    right: calc(50% - 18px);
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    border-radius: 999px;
    background: var(--gold);
    color: #fff;
    font-size: 0.62rem;
    font-style: normal;
    display: grid;
    place-items: center;
  }

  .site-footer {
    margin-bottom: 0.5rem;
  }

  .toast {
    bottom: calc(var(--bottom-nav-h) + 1rem + env(safe-area-inset-bottom, 0px));
  }
}
