/* ═══════════════════════════════════════════════════════
   partiliyoruz.com  |  Premium Sweet Party Shop Design
   ═══════════════════════════════════════════════════════ */

@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,900;1,500;1,700&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap");

/* ─── Design tokens ─── */
:root {
  --rose:          #C85B7A;
  --rose-dark:     #8A2B4D;
  --rose-light:    #F0B8CA;
  --blush:         #FDE8EC;
  --gold:          #C9956C;
  --gold-light:    #F0D8C0;
  --gold-dark:     #A07040;
  --sage:          #6B8C7A;
  --sage-light:    #C5D9CF;
  --mint:          #9DD4C0;
  --butter:        #F4C85F;
  --plum:          #7C4F7A;

  --ink:           #18120F;
  --ink-80:        rgba(24,18,15,0.80);
  --ink-60:        rgba(24,18,15,0.60);
  --ink-40:        rgba(24,18,15,0.40);
  --ink-20:        rgba(24,18,15,0.20);
  --ink-12:        rgba(24,18,15,0.12);
  --ink-06:        rgba(24,18,15,0.06);

  --cream:         #FBF7F2;
  --cream-warm:    #FFF4E8;
  --white:         #FFFFFF;

  --font-display:  'Playfair Display', 'Iowan Old Style', Georgia, serif;
  --font-body:     'Plus Jakarta Sans', 'DM Sans', 'Segoe UI', system-ui, sans-serif;

  --radius-xs:     6px;
  --radius-sm:     10px;
  --radius:        16px;
  --radius-lg:     24px;
  --radius-xl:     32px;
  --radius-full:   9999px;

  --shadow-xs:     0 1px 3px rgba(24,18,15,0.06), 0 2px 8px rgba(24,18,15,0.04);
  --shadow-sm:     0 2px 8px rgba(24,18,15,0.06), 0 6px 20px rgba(24,18,15,0.05);
  --shadow:        0 4px 16px rgba(24,18,15,0.08), 0 16px 40px rgba(24,18,15,0.06);
  --shadow-lg:     0 8px 28px rgba(24,18,15,0.10), 0 28px 70px rgba(24,18,15,0.10);
  --shadow-xl:     0 16px 48px rgba(24,18,15,0.13), 0 56px 120px rgba(24,18,15,0.14);

  --ease-spring:   cubic-bezier(0.34, 1.12, 0.64, 1);
  --ease-out:      cubic-bezier(0, 0.55, 0.45, 1);
  --dur:           220ms;
}

/* ─── Reset & base ─── */
*, *::before, *::after { box-sizing: border-box; }

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

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, h3, h4, p { margin-top: 0; }
img { display: block; max-width: 100%; }

/* ─── Announcement bar ─── */
.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 36px;
  height: 38px;
  padding-inline: 16px;
  background: linear-gradient(100deg, var(--rose-dark) 0%, #6B2D6A 45%, var(--rose-dark) 100%);
  background-size: 200% 100%;
  animation: barGradient 7s linear infinite;
  color: rgba(255,255,255,0.92);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
}

@keyframes barGradient {
  0%, 100% { background-position: 0% 0%; }
  50%       { background-position: 100% 0%; }
}

.announcement-bar span { display: flex; align-items: center; gap: 7px; }
.announcement-bar span::before { content: '✦'; font-size: 0.6rem; color: var(--butter); opacity: 0.8; }

/* ─── Header ─── */
.site-header {
  position: sticky;
  top: 38px;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  height: 74px;
  padding-inline: clamp(16px, 5vw, 76px);
  background: rgba(251,247,242,0.88);
  border-bottom: 1px solid var(--ink-06);
  backdrop-filter: blur(22px) saturate(160%);
  -webkit-backdrop-filter: blur(22px) saturate(160%);
  transition: box-shadow var(--dur) ease;
}

.site-header.scrolled { box-shadow: 0 6px 28px rgba(24,18,15,0.08); }

/* ─── Brand ─── */
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  min-width: max-content;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(140deg, var(--rose) 0%, var(--plum) 100%);
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  font-family: var(--font-display);
  box-shadow: 0 6px 18px rgba(200,91,122,0.35);
  flex-shrink: 0;
}

/* ─── Nav ─── */
.nav {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 5px;
  border-radius: var(--radius-full);
  border: 1px solid var(--ink-06);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(12px);
}

.nav a {
  padding: 7px 15px;
  border-radius: var(--radius-full);
  color: var(--ink-60);
  font-size: 0.86rem;
  font-weight: 600;
  transition: all var(--dur) ease;
}

.nav a:hover {
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-xs);
}

/* ─── Cart button ─── */
.cart-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 8px 20px;
  border: 0;
  border-radius: var(--radius-full);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) ease;
}

.cart-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 28px rgba(24,18,15,0.28);
}

.cart-button strong {
  display: grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--butter);
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
}

/* ─── Primary / secondary buttons ─── */
.primary-button,
.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 52px;
  padding: 0 32px;
  border: 0;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(200,91,122,0.28);
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) ease;
  text-decoration: none;
}

.primary-button:hover,
.primary-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(200,91,122,0.42);
}

.secondary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border: 1.5px solid var(--ink-20);
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.72);
  color: var(--ink);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: all var(--dur) ease;
  text-decoration: none;
}

.secondary-link:hover {
  background: #fff;
  border-color: var(--ink-40);
  transform: translateY(-1px);
}

/* ─── Hero ─── */
.hero {
  position: relative;
  min-height: min(840px, calc(100vh - 112px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 430px);
  align-items: center;
  gap: clamp(24px, 4vw, 64px);
  padding: clamp(72px, 12vw, 148px) clamp(20px, 6vw, 80px) clamp(44px, 9vw, 96px);
  overflow: hidden;
}

.hero-image,
.hero-overlay,
.hero-deco {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  background:
    linear-gradient(100deg,
      rgba(18,12,8,0.82) 0%,
      rgba(24,18,15,0.60) 42%,
      rgba(24,18,15,0.12) 100%),
    linear-gradient(0deg,
      rgba(18,12,8,0.55) 0%,
      rgba(18,12,8,0.0) 52%);
}

/* Animated glow blobs */
.hero-deco { overflow: hidden; pointer-events: none; z-index: 0; }

.hero-deco::before {
  content: '';
  position: absolute;
  top: -140px;
  right: -100px;
  width: 680px;
  height: 680px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,91,122,0.22) 0%, transparent 68%);
  animation: glow 9s ease-in-out infinite;
}

.hero-deco::after {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 28%;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,149,108,0.18) 0%, transparent 68%);
  animation: glow 12s ease-in-out infinite reverse;
}

@keyframes glow {
  0%, 100% { transform: translateY(0) scale(1); }
  50%       { transform: translateY(-28px) scale(1.06); }
}

/* ─── Hero content ─── */
.hero-content,
.hero-showcase,
.hero-stats { position: relative; z-index: 2; }

/* ─── Eyebrow ─── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 7px 15px;
  border-radius: var(--radius-full);
  background: var(--blush);
  border: 1px solid rgba(200,91,122,0.18);
  color: var(--rose-dark);
  font-size: 0.71rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '✦';
  color: var(--rose);
  font-size: 0.6rem;
}

/* Dark background eyebrow overrides */
.hero-content .eyebrow,
.intro .eyebrow,
.commerce-roadmap .eyebrow {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.88);
  backdrop-filter: blur(10px);
}

.hero-content .eyebrow::before,
.intro .eyebrow::before,
.commerce-roadmap .eyebrow::before {
  color: var(--butter);
}

/* ─── Typography ─── */
h1 {
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 8.5vw, 8rem);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: -0.02em;
}

h2 {
  margin-bottom: 16px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; }

.domain-title {
  color: #fff;
  text-shadow: 0 20px 60px rgba(0,0,0,0.42);
}

.domain-title span { display: block; }
.domain-title span:last-child {
  color: var(--butter);
  font-style: italic;
  font-size: 0.82em;
}

.hero-copy {
  max-width: 600px;
  color: rgba(255,255,255,0.80);
  font-size: clamp(1rem, 1.9vw, 1.2rem);
  line-height: 1.68;
  margin-bottom: 36px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero .secondary-link {
  border-color: rgba(255,255,255,0.38);
  background: rgba(255,255,255,0.10);
  color: #fff;
}

.hero .secondary-link:hover {
  background: rgba(255,255,255,0.20);
  border-color: rgba(255,255,255,0.55);
}

/* ─── Hero stats ─── */
.hero-stats {
  position: absolute;
  bottom: 36px;
  left: clamp(20px, 6vw, 80px);
  z-index: 2;
  display: flex;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.hero-stats span {
  padding: 14px 22px;
  color: rgba(255,255,255,0.65);
  font-size: 0.80rem;
  font-weight: 600;
  border-right: 1px solid rgba(255,255,255,0.10);
}

.hero-stats span:last-child { border: 0; }

.hero-stats strong {
  display: block;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 800;
  font-family: var(--font-display);
}

/* ─── Hero showcase cards ─── */
.hero-showcase {
  display: grid;
  gap: 12px;
  align-self: center;
}

.showcase-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.54);
  background: rgba(255,255,255,0.88);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  overflow: hidden;
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) ease;
}

.showcase-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-xl); }

.showcase-card.large {
  flex-direction: column;
  align-items: stretch;
  gap: 0;
  padding: 0;
}

.showcase-card img {
  width: 84px;
  height: 84px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.showcase-card.large img {
  width: 100%;
  height: 200px;
  border-radius: 0;
  aspect-ratio: auto;
}

.showcase-card > div { padding: 4px 2px; }
.showcase-card.large > div { padding: 14px 16px; }

.showcase-card span {
  display: block;
  margin-bottom: 3px;
  color: var(--rose);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.showcase-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.2;
}

/* ─── Section base ─── */
section {
  padding: clamp(60px, 9vw, 112px) clamp(20px, 6vw, 80px);
}

.band { background: var(--cream-warm); }

.section-head {
  max-width: 820px;
  margin-bottom: 48px;
}

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

/* ─── Intro (dark) ─── */
.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
  background: var(--ink);
  color: #fff;
}

.intro h2 { color: #fff; }

.intro p {
  color: rgba(255,255,255,0.62);
  font-size: 1.05rem;
  line-height: 1.72;
}

/* ─── Service strip ─── */
.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  padding: 0;
  background: #fff;
  border-block: 1px solid var(--ink-06);
}

.service-strip article {
  padding: 30px 26px;
  border-right: 1px solid var(--ink-06);
  transition: background var(--dur) ease;
}

.service-strip article:last-child { border: 0; }
.service-strip article:hover { background: var(--blush); }

.service-strip strong {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 7px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--ink);
}

.service-strip strong::before {
  content: '';
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--plum));
  flex-shrink: 0;
}

.service-strip span { color: var(--ink-60); font-size: 0.875rem; line-height: 1.5; }

/* ─── Commerce roadmap (dark) ─── */
.commerce-roadmap {
  background: var(--ink);
  color: #fff;
}

.commerce-roadmap .section-head h2 { color: #fff; }

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

.commerce-grid article {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,0.09);
  background: rgba(255,255,255,0.04);
  transition: background var(--dur) ease, transform var(--dur) var(--ease-spring);
}

.commerce-grid article:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-5px);
}

.commerce-grid span {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 26px;
  border-radius: 50%;
  background: var(--butter);
  color: var(--ink);
  font-weight: 800;
  font-size: 0.84rem;
}

.commerce-grid strong {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
}

.commerce-grid p {
  margin: 0;
  color: rgba(255,255,255,0.58);
  font-size: 0.9rem;
  line-height: 1.68;
}

/* ─── Editorial picks ─── */
.editorial-picks { background: #fff; }

.pick-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(2, minmax(200px, 0.7fr));
  gap: 18px;
}

.pick-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 390px;
  padding: 30px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  color: #fff;
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  transition: transform var(--dur) var(--ease-spring);
}

.pick-card:hover { transform: scale(1.015); }

.pick-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg,
    rgba(18,12,8,0.92) 0%,
    rgba(18,12,8,0.38) 46%,
    rgba(18,12,8,0.04) 100%);
}

.pick-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 400ms ease;
}

.pick-card:hover img { transform: scale(1.07); }

.pick-card span,
.pick-card strong { position: relative; z-index: 1; }

.pick-card span {
  display: block;
  margin-bottom: 9px;
  color: var(--butter);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pick-card strong {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.2vw, 3.4rem);
  font-weight: 700;
  line-height: 1.0;
  color: #fff;
}

.pick-card:not(.hero-pick) strong { font-size: clamp(1.3rem, 2.4vw, 2.1rem); }

/* ─── Collections ─── */
.collections { background: var(--cream); }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-bottom: 32px;
}

.category-card {
  padding: 30px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-12);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) ease;
}

.category-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.category-card p { color: var(--ink-60); font-size: 0.9rem; margin: 0; }

.swatch {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 24px;
  border-radius: 50%;
}

.blush  { background: linear-gradient(135deg, #F4A7B6 0%, #E87B98 100%); }
.mint   { background: linear-gradient(135deg, #9DD4C0 0%, #70BAA4 100%); }
.yellow { background: linear-gradient(135deg, #F4C85F 0%, #E0B040 100%); }
.coral  { background: linear-gradient(135deg, #F08878 0%, #E06050 100%); }

/* ─── Dynamic category grid ─── */
.dynamic-category-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.category-pill {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-height: 96px;
  padding: 18px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--ink-12);
  background: #fff;
  cursor: pointer;
  text-align: left;
  transition: all var(--dur) var(--ease-spring);
}

.category-pill:hover {
  border-color: var(--rose-light);
  background: var(--blush);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.category-pill strong {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  color: var(--ink);
}

.category-pill span { color: var(--ink-60); font-size: 0.82rem; font-weight: 600; }

/* ─── Category directory ─── */
.category-directory {
  margin-top: 26px;
  padding: clamp(20px, 3vw, 34px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-12);
  background: #fff;
  box-shadow: var(--shadow);
}

.directory-head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-end;
  margin-bottom: 24px;
}

.directory-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
}

.directory-head label { width: min(100%, 340px); }

.category-browser {
  display: grid;
  grid-template-columns: minmax(200px, 0.3fr) minmax(0, 1fr);
  gap: 12px;
}

.category-group-tabs { display: grid; gap: 6px; max-height: 480px; overflow: auto; }

.category-group-tabs button {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  min-height: 52px;
  padding: 12px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--ink-12);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  transition: all var(--dur) ease;
}

.category-group-tabs button:hover { background: var(--blush); border-color: var(--rose-light); }

.category-group-tabs button.is-active {
  border-color: var(--rose-light);
  background: var(--blush);
  box-shadow: var(--shadow-xs);
}

.category-group-tabs strong { font-family: var(--font-display); font-size: 1rem; font-weight: 700; }

.category-group-tabs span {
  display: grid;
  place-items: center;
  min-width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--ink-06);
  color: var(--ink-60);
  font-size: 0.74rem;
  font-weight: 700;
}

.category-panel {
  border-radius: var(--radius);
  border: 1px solid var(--ink-06);
  overflow: hidden;
}

.category-panel-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-end;
  padding: 18px 22px;
  background: var(--blush);
}

.category-panel-head h4 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
}

.category-panel-head .eyebrow { margin-bottom: 6px; }

.category-panel-head > span { color: var(--ink-60); font-size: 0.82rem; font-weight: 700; white-space: nowrap; }

.category-link-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 4px;
  max-height: 480px;
  overflow: auto;
  padding: 10px;
}

.category-link-list button {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 10px 12px;
  border: 0;
  border-radius: var(--radius-sm);
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
  font-size: 0.875rem;
  transition: background var(--dur) ease;
}

.category-link-list button:hover { background: var(--blush); }
.category-link-list small { color: var(--ink-60); font-weight: 700; white-space: nowrap; }

/* ─── Products section ─── */
.products.band {
  background: linear-gradient(180deg, var(--cream-warm) 0%, #fff 100%);
}

.shop-toolbar {
  position: sticky;
  top: 112px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(240px, 1.2fr) minmax(140px, 0.8fr) minmax(140px, 0.8fr) minmax(140px, 0.8fr) auto auto;
  gap: 10px;
  align-items: end;
  margin-bottom: 24px;
  padding: 16px 20px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-12);
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.search-field { grid-column: 1; }

.checkbox-label {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink-12);
  background: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
}

.checkbox-label input { width: auto; min-height: 0; accent-color: var(--rose); }

.active-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -8px 0 24px;
}

.active-filter-row span,
.active-filter-row button {
  min-height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--ink-12);
  background: #fff;
  color: var(--ink-60);
  font-size: 0.80rem;
  font-weight: 700;
}

.active-filter-row button { cursor: pointer; color: var(--rose); border-color: rgba(200,91,122,0.25); }

.catalog-insights {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 26px;
}

.catalog-insights article {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 16px 20px;
  border-radius: var(--radius);
  border: 1px solid var(--ink-12);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.catalog-insights strong { font-size: 1.28rem; font-weight: 800; }
.catalog-insights span { color: var(--ink-60); font-size: 0.76rem; font-weight: 700; }

.result-count { margin: 0; color: var(--ink-60); font-weight: 600; font-size: 0.875rem; white-space: nowrap; }

/* ─── Product grid ─── */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* ─── Product card ─── */
.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-12);
  background: #fff;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) ease;
}

.product-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow-xl);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--rose-light), var(--gold-light), var(--sage-light));
  opacity: 0;
  transition: opacity var(--dur) ease;
}

.product-card:hover::before { opacity: 1; }

/* Favorite */
.favorite-button {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.92);
  color: var(--ink-20);
  cursor: pointer;
  font-size: 0.88rem;
  backdrop-filter: blur(8px);
  box-shadow: var(--shadow-xs);
  transition: all var(--dur) var(--ease-spring);
}

.favorite-button:hover { transform: scale(1.12); background: #fff; color: var(--rose-light); }
.favorite-button.is-favorite { color: var(--rose); background: var(--blush); }

/* Product image */
.product-art {
  position: relative;
  display: block;
  width: 100%;
  min-height: 140px;
  background: linear-gradient(135deg, var(--blush) 0%, var(--cream-warm) 100%);
  border: 0;
  cursor: pointer;
  overflow: hidden;
}

.product-art.has-image {
  aspect-ratio: 1 / 1;
  min-height: 0;
  background: #fff;
}

.product-art img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 10px;
  background: #fff;
  transition: transform 320ms ease;
}

.product-card:hover .product-art img { transform: scale(1.07); }

.product-art span {
  position: absolute;
  bottom: 10px;
  left: 10px;
  padding: 5px 11px;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.92);
  color: var(--ink);
  font-size: 0.70rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  backdrop-filter: blur(6px);
}

/* Product body */
.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 8px;
  padding: 20px 22px;
}

.product-kicker {
  display: flex;
  justify-content: space-between;
  color: var(--ink-60);
  font-size: 0.70rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.product-body h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  line-height: 1.22;
  color: var(--ink);
  min-height: 2.44em;
}

.product-body > p {
  flex: 1;
  color: var(--ink-60);
  font-size: 0.875rem;
  line-height: 1.55;
  margin: 0;
  min-height: 4.2em;
}

.tag-row { display: flex; flex-wrap: wrap; gap: 5px; }

.tag-row span {
  padding: 4px 10px;
  border-radius: var(--radius-full);
  background: rgba(107,140,122,0.10);
  color: var(--sage);
  font-size: 0.70rem;
  font-weight: 700;
}

.stock-meter {
  height: 4px;
  border-radius: var(--radius-full);
  background: var(--ink-06);
  overflow: hidden;
  margin-top: 6px;
}

.stock-meter span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--mint), var(--butter));
}

.product-meta {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-06);
}

.price {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 1.28rem;
  font-weight: 800;
  color: var(--ink);
  font-family: var(--font-body);
}

.price small {
  color: var(--ink-40);
  font-size: 0.76rem;
  font-weight: 600;
  text-decoration: line-through;
}

.product-actions {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 7px;
  width: 100%;
}

.detail-button,
.add-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: var(--radius-full);
  font-size: 0.80rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--dur) var(--ease-spring);
  white-space: nowrap;
  text-decoration: none;
}

.detail-button {
  border: 1.5px solid var(--ink-20);
  background: #fff;
  color: var(--ink);
}

.detail-button:hover {
  border-color: var(--ink-40);
  background: var(--cream);
  transform: translateY(-1px);
}

.add-button {
  border: 0;
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(200,91,122,0.22);
}

.add-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(200,91,122,0.42);
}

.add-button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

a.detail-button { text-align: center; }

.empty-state {
  margin: 0;
  padding: 48px;
  border-radius: var(--radius-lg);
  border: 2px dashed var(--ink-12);
  color: var(--ink-60);
  text-align: center;
  font-size: 1rem;
}

.load-more-row {
  display: flex;
  justify-content: center;
  margin-top: 36px;
}

.load-more-row .secondary-link {
  border-color: var(--ink-20);
  background: #fff;
  color: var(--ink);
  min-height: 48px;
}

/* ─── Custom / quote ─── */
.custom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  background: #fff;
}

.custom-copy .eyebrow {
  background: var(--blush);
  border-color: rgba(200,91,122,0.18);
  color: var(--rose-dark);
}

.custom-copy .eyebrow::before { color: var(--rose); }

.check-list {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--ink-80);
  font-size: 0.95rem;
}

.check-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--sage);
  font-weight: 800;
}

.quote-form {
  display: grid;
  gap: 14px;
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-12);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

/* ─── Form elements ─── */
label {
  display: grid;
  gap: 8px;
  color: var(--ink-60);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

input, select, textarea {
  width: 100%;
  padding: 0 14px;
  border: 1.5px solid var(--ink-12);
  border-radius: var(--radius-sm);
  background: var(--cream);
  color: var(--ink);
  transition: border-color var(--dur) ease, background var(--dur) ease;
}

input, select { min-height: 48px; }
textarea { min-height: 100px; padding-top: 12px; resize: vertical; }

input:focus, select:focus, textarea:focus {
  border-color: var(--rose);
  outline: none;
  background: #fff;
}

button:focus-visible, a:focus-visible {
  outline: 3px solid rgba(200,91,122,0.38);
  outline-offset: 3px;
}

.form-note { margin: 0; color: var(--ink-60); font-size: 0.85rem; }

/* ─── Trust / reviews ─── */
.trust.band { background: var(--blush); }

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

.review-grid figure {
  margin: 0;
  padding: 30px;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(200,91,122,0.14);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease-spring);
}

.review-grid figure:hover { transform: translateY(-5px); }

.review-grid blockquote {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--ink);
  line-height: 1.62;
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
  color: var(--butter);
  font-size: 1rem;
}

.review-grid figcaption {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--rose-dark);
}

/* ─── FAQ ─── */
.faq { background: var(--cream); }

.faq .section-head { max-width: 800px; margin-inline: auto; }

details {
  max-width: 800px;
  margin: 0 auto 12px;
  padding: 20px 26px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-12);
  background: #fff;
  box-shadow: var(--shadow-sm);
}

summary {
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  color: var(--ink);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

summary::-webkit-details-marker { display: none; }

summary::after {
  content: '+';
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--blush);
  color: var(--rose-dark);
  font-size: 1.3rem;
  font-weight: 300;
  flex-shrink: 0;
  line-height: 1;
  transition: transform var(--dur) var(--ease-spring), background var(--dur) ease;
}

details[open] summary::after {
  transform: rotate(45deg);
  background: var(--rose);
  color: #fff;
}

details p { margin: 16px 0 0; color: var(--ink-60); line-height: 1.68; }

/* ─── Cart drawer ─── */
.cart-drawer {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  justify-content: flex-end;
  background: rgba(18,12,8,0.44);
  backdrop-filter: blur(5px);
}

.cart-drawer.is-open { display: flex; }

.cart-panel {
  width: min(440px, 100%);
  height: 100%;
  padding: 26px;
  background: var(--cream);
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 26px;
}

.cart-head h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 700;
}

.icon-button {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--ink-06);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.2rem;
  transition: all var(--dur) ease;
}

.icon-button:hover { background: var(--ink); color: #fff; }

.cart-items {
  flex: 1;
  display: grid;
  align-content: start;
  gap: 0;
  margin-bottom: 24px;
  overflow-y: auto;
}

.cart-line {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid var(--ink-06);
}

.cart-line small { display: block; color: var(--ink-60); font-size: 0.80rem; margin-top: 2px; }

.quantity-controls {
  display: flex;
  gap: 6px;
  align-items: center;
  margin-top: 10px;
  flex-wrap: wrap;
}

.quantity-controls button {
  min-width: 32px;
  height: 32px;
  border: 1px solid var(--ink-12);
  border-radius: var(--radius-full);
  background: #fff;
  color: var(--ink);
  cursor: pointer;
  font-weight: 700;
  transition: all var(--dur) ease;
}

.quantity-controls button:hover { background: var(--ink); color: #fff; border-color: var(--ink); }

.quantity-controls button:last-child {
  padding: 0 12px;
  color: var(--rose);
  border-color: rgba(200,91,122,0.2);
}

.cart-total,
.cart-head,
.cart-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-total {
  padding: 16px 0;
  border-top: 1px solid var(--ink-12);
  font-size: 1.1rem;
  font-weight: 700;
}

.cart-summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 8px 16px;
  margin-top: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--ink-06);
  color: var(--ink-60);
  font-size: 0.875rem;
}

.cart-summary strong { color: var(--ink); }

.checkout { width: 100%; margin-top: 14px; }

.payment-note { margin: 10px 0 0; color: var(--ink-60); font-size: 0.78rem; text-align: center; }

/* ─── Toast ─── */
.toast {
  position: fixed;
  left: 50%;
  bottom: 26px;
  z-index: 200;
  transform: translate(-50%, 24px);
  max-width: min(400px, calc(100vw - 32px));
  padding: 13px 22px;
  border-radius: var(--radius-full);
  background: var(--ink);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease, transform 200ms ease;
  box-shadow: var(--shadow-lg);
}

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

/* ─── Dialogs ─── */
.product-dialog,
.checkout-dialog {
  width: min(920px, calc(100vw - 32px));
  padding: 0;
  border: 0;
  border-radius: var(--radius-xl);
  background: var(--cream);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.checkout-dialog { width: min(600px, calc(100vw - 32px)); }

.product-dialog::backdrop,
.checkout-dialog::backdrop {
  background: rgba(18,12,8,0.52);
  backdrop-filter: blur(5px);
}

.dialog-close { position: absolute; top: 16px; right: 16px; z-index: 5; }

.product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.9fr);
}

.detail-media {
  min-height: 500px;
  background: linear-gradient(135deg, var(--blush), var(--sage-light));
}

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

.detail-copy, .checkout-form {
  padding: clamp(26px, 5vw, 48px);
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 20px 0;
}

.detail-facts span {
  padding: 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--ink-12);
  background: #fff;
  color: var(--ink-60);
  font-size: 0.80rem;
}

.detail-facts strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 2px; }

.checkout-form { display: grid; gap: 14px; }

.checkout-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  margin-bottom: 20px;
}

.checkout-steps span {
  padding: 10px;
  border-radius: var(--radius-full);
  border: 1px solid var(--ink-12);
  background: var(--cream);
  color: var(--ink-60);
  font-size: 0.78rem;
  font-weight: 700;
  text-align: center;
}

.checkout-steps .is-active { background: var(--ink); color: #fff; border-color: var(--ink); }

/* ─── Footer ─── */
.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 52px clamp(20px, 6vw, 80px);
  background: radial-gradient(circle at 78% 24%, rgba(200,91,122,0.14), transparent 40%), var(--ink);
  color: #fff;
}

.footer-brand { color: #fff; }
.footer-brand .brand-mark { box-shadow: 0 6px 18px rgba(200,91,122,0.22); }

.site-footer p { color: rgba(255,255,255,0.50); font-size: 0.875rem; max-width: 380px; margin-top: 8px; }

.footer-links { display: flex; gap: 22px; }

.footer-links a {
  color: rgba(255,255,255,0.58);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color var(--dur) ease;
}

.footer-links a:hover { color: #fff; }

/* ─── Loading shimmer ─── */
@keyframes shimmer {
  0%   { background-position: -600px 0; }
  100% { background-position: 600px 0; }
}

.product-loading {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.loading-shimmer-gallery {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-xl);
  background: linear-gradient(90deg, var(--ink-06) 25%, var(--ink-12) 50%, var(--ink-06) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}

.loading-shimmer-info {
  display: grid;
  gap: 16px;
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-06);
  background: #fff;
}

.shimmer-line {
  height: 18px;
  border-radius: var(--radius-full);
  background: linear-gradient(90deg, var(--ink-06) 25%, var(--ink-12) 50%, var(--ink-06) 75%);
  background-size: 600px 100%;
  animation: shimmer 1.6s ease-in-out infinite;
}

.shimmer-line.wide { height: 56px; }
.shimmer-line.narrow { width: 55%; }

/* ─── Product sale page ─── */
.product-page main { background: var(--cream); }

.product-sale-page {
  padding: clamp(24px, 5vw, 72px) clamp(18px, 5vw, 64px);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 26px;
  color: var(--ink-60);
  font-size: 0.875rem;
  font-weight: 600;
}

.breadcrumb strong { color: var(--ink); }

.product-sale-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.92fr) minmax(0, 1.08fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.sale-gallery {
  position: sticky;
  top: 124px;
  display: grid;
  place-items: center;
  min-height: min(640px, 70vh);
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-12);
  background: linear-gradient(135deg, var(--blush) 0%, #fff 50%, var(--gold-light) 100%);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.sale-gallery img {
  width: 100%;
  height: 100%;
  max-height: 640px;
  object-fit: contain;
  padding: clamp(20px, 4vw, 48px);
}

.sale-info {
  display: grid;
  gap: 20px;
  padding: clamp(26px, 4vw, 48px);
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-12);
  background: #fff;
  box-shadow: var(--shadow-lg);
}

.sale-info h1 { margin: 0; font-size: clamp(2.5rem, 5.5vw, 5rem); line-height: 0.95; }
.sale-description { color: var(--ink-60); font-size: 1rem; line-height: 1.72; }

.sale-price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: baseline;
}

.sale-price-row strong { font-size: clamp(1.8rem, 3.5vw, 3rem); }
.sale-price-row span { color: var(--ink-60); font-weight: 700; text-decoration: line-through; }

.sale-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.sale-facts span,
.sale-trust article {
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid var(--ink-12);
  background: var(--cream);
  color: var(--ink-60);
  font-size: 0.875rem;
  font-weight: 600;
}

.sale-facts strong,
.sale-trust strong { display: block; color: var(--ink); font-weight: 700; margin-bottom: 2px; }

.sale-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

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

.sale-trust span { display: block; margin-top: 4px; color: var(--ink-60); font-size: 0.85rem; font-weight: 500; }

/* Sale page enhancements */
.sale-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--rose) 0%, var(--rose-dark) 100%);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  box-shadow: 0 4px 16px rgba(200,91,122,0.32);
}

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  height: 100%;
  color: var(--rose-dark);
}

.gallery-placeholder p {
  margin: 0;
  color: var(--ink-60);
  font-size: 0.875rem;
  font-weight: 700;
}

.compare-price {
  color: var(--ink-40) !important;
  text-decoration: line-through;
  font-weight: 600 !important;
  font-size: 1.1rem !important;
}

.sale-qty-row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.qty-label {
  display: block;
  color: var(--ink-60);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  gap: 0;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 0;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--ink-12);
  background: #fff;
  overflow: hidden;
}

.qty-controls button {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1.2rem;
  font-weight: 300;
  cursor: pointer;
  transition: background var(--dur) ease;
}

.qty-controls button:hover { background: var(--blush); }

.qty-controls span {
  min-width: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 0.95rem;
  border-inline: 1.5px solid var(--ink-06);
  line-height: 44px;
}

.related-products { padding-top: 60px; }

/* ─── Scroll reveal ─── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 600ms ease, transform 600ms ease;
}

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

.reveal-delay-1 { transition-delay: 80ms; }
.reveal-delay-2 { transition-delay: 160ms; }
.reveal-delay-3 { transition-delay: 240ms; }
.reveal-delay-4 { transition-delay: 320ms; }

/* ══════════════════════════════════════════
   NEW PREMIUM COMPONENTS
   ══════════════════════════════════════════ */

/* ─── Hero badge + scroll hint ─── */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,255,255,0.28);
  background: rgba(255,255,255,0.10);
  color: rgba(255,255,255,0.92);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--butter);
  box-shadow: 0 0 0 3px rgba(244,200,95,0.3);
  animation: pulse 2s ease-in-out infinite;
  flex-shrink: 0;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(244,200,95,0.3); }
  50%       { box-shadow: 0 0 0 7px rgba(244,200,95,0.08); }
}

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  right: clamp(20px, 6vw, 80px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.52);
  font-size: 0.70rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-scroll-hint span {
  width: 1.5px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255,255,255,0.6) 0%, transparent 100%);
  animation: scrollLine 1.8s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 0; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(0); transform-origin: bottom; opacity: 0; }
}

/* ─── Marquee ─── */
.marquee {
  overflow: hidden;
  background: var(--blush);
  border-block: 1px solid rgba(200,91,122,0.16);
  padding: 18px 0;
}

.marquee-inner {
  display: flex;
  width: max-content;
  animation: marqueeScroll 38s linear infinite;
}

.marquee:hover .marquee-inner { animation-play-state: paused; }

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--rose-dark);
  white-space: nowrap;
}

.marquee-item::before {
  content: '✦';
  color: var(--rose);
  font-size: 0.56rem;
}

/* ─── Stats band ─── */
.stats-band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ink);
}

.stats-band-item {
  padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 44px);
  border-right: 1px solid rgba(255,255,255,0.07);
  transition: background var(--dur) ease;
}

.stats-band-item:last-child { border: 0; }
.stats-band-item:hover { background: rgba(255,255,255,0.03); }

.stat-value {
  display: block;
  margin-bottom: 10px;
  font-family: var(--font-display);
  font-size: clamp(2.6rem, 4.5vw, 4.2rem);
  font-weight: 900;
  color: var(--butter);
  line-height: 1;
  letter-spacing: -0.02em;
}

.stat-label {
  margin: 0;
  color: rgba(255,255,255,0.50);
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
}

/* ─── Collections section head ─── */
.collections .section-head p:last-child {
  color: var(--ink-60);
  font-size: 1rem;
  margin-top: 8px;
}

/* ─── Category visual grid ─── */
.category-visual-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-template-rows: 295px 295px;
  gap: 14px;
  margin-bottom: 24px;
}

.category-visual-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  text-decoration: none;
  color: #fff;
  transition: transform var(--dur) var(--ease-spring), box-shadow var(--dur) ease;
}

.category-visual-card:first-child { grid-row: 1 / 3; }

.category-visual-card:hover {
  transform: scale(1.018);
  box-shadow: var(--shadow-xl);
}

.category-visual-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 540ms ease;
  display: block;
}

.category-visual-card:hover img { transform: scale(1.08); }

.category-visual-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    0deg,
    rgba(18,12,8,0.88) 0%,
    rgba(18,12,8,0.28) 52%,
    rgba(18,12,8,0.04) 100%
  );
  pointer-events: none;
}

.category-visual-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(18px, 2.5vw, 30px);
}

.category-visual-overlay .eyebrow {
  background: rgba(255,255,255,0.14);
  border-color: rgba(255,255,255,0.24);
  color: rgba(255,255,255,0.88);
  margin-bottom: 10px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.category-visual-overlay .eyebrow::before { color: var(--butter); }

.category-visual-overlay h3 {
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 2.2vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}

.category-visual-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.42);
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 240ms ease, transform 240ms ease;
  width: fit-content;
}

.category-visual-card:hover .category-visual-cta {
  opacity: 1;
  transform: translateY(0);
}

/* ─── Lifestyle editorial ─── */
.lifestyle-section {
  background: #fff;
  padding: clamp(60px, 9vw, 112px) clamp(20px, 6vw, 80px);
}

.lifestyle-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.lifestyle-header .section-head { margin-bottom: 0; }

.lifestyle-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr 1fr;
  grid-template-rows: 285px 285px;
  gap: 12px;
}

.lifestyle-item {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--ink-06);
}

.lifestyle-item.tall { grid-row: 1 / 3; }

.lifestyle-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 540ms ease;
}

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

/* ─── Aggregate rating ─── */
.aggregate-rating {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 52px;
  text-align: center;
}

.aggregate-rating > strong {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 7vw, 5.5rem);
  font-weight: 900;
  color: var(--rose-dark);
  line-height: 1;
  letter-spacing: -0.02em;
}

.aggregate-rating > .review-stars {
  font-size: 1.5rem;
  gap: 4px;
}

.aggregate-rating > span {
  color: var(--ink-60);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ─── Footer v2 (3-column grid) ─── */
.site-footer {
  display: grid;
  grid-template-columns: 1.4fr 0.9fr 1.3fr;
  gap: clamp(32px, 6vw, 72px);
  padding: clamp(52px, 8vw, 88px) clamp(20px, 6vw, 80px) clamp(32px, 4vw, 44px);
  background:
    radial-gradient(circle at 80% 18%, rgba(200,91,122,0.18), transparent 42%),
    radial-gradient(circle at 10% 80%, rgba(124,79,122,0.12), transparent 40%),
    var(--ink);
  color: #fff;
  align-items: start;
}

.footer-brand-col { display: flex; flex-direction: column; }

.footer-brand { color: #fff; }
.footer-brand .brand-mark { box-shadow: 0 6px 18px rgba(200,91,122,0.28); }

.footer-brand-col > p {
  color: rgba(255,255,255,0.46);
  font-size: 0.875rem;
  line-height: 1.7;
  max-width: 290px;
  margin: 14px 0 0;
}

.social-links {
  display: flex;
  gap: 10px;
  margin-top: 26px;
}

.social-link {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.16);
  color: rgba(255,255,255,0.62);
  text-decoration: none;
  transition: all var(--dur) ease;
}

.social-link:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.36);
  color: #fff;
  transform: translateY(-2px);
}

.footer-heading {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.footer-links a {
  color: rgba(255,255,255,0.52);
  font-size: 0.875rem;
  font-weight: 600;
  transition: color var(--dur) ease;
  text-decoration: none;
}

.footer-links a:hover { color: #fff; }

.footer-newsletter-desc {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  margin: -10px 0 18px;
  line-height: 1.6;
}

.newsletter-form {
  display: flex;
  border-radius: var(--radius-full);
  border: 1.5px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.06);
  overflow: hidden;
  transition: border-color var(--dur) ease;
}

.newsletter-form:focus-within { border-color: rgba(200,91,122,0.6); }

.newsletter-form input {
  flex: 1;
  min-height: 50px;
  padding: 0 18px;
  border: 0;
  background: transparent;
  color: #fff;
  font-size: 0.875rem;
  border-radius: 0;
  min-width: 0;
}

.newsletter-form input::placeholder { color: rgba(255,255,255,0.32); }
.newsletter-form input:focus { outline: none; }

.newsletter-form .primary-button {
  min-height: 50px;
  padding: 0 22px;
  border-radius: 0;
  font-size: 0.82rem;
  box-shadow: none;
  border-left: 1.5px solid rgba(255,255,255,0.12);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 18px;
}

.footer-contact a {
  color: rgba(255,255,255,0.45);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--dur) ease;
}

.footer-contact a:hover { color: rgba(255,255,255,0.8); }

.footer-bottom {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.30);
  font-size: 0.78rem;
}

.footer-legal {
  display: flex;
  gap: 22px;
}

.footer-legal a {
  color: rgba(255,255,255,0.36);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--dur) ease;
  font-size: 0.78rem;
}

.footer-legal a:hover { color: rgba(255,255,255,0.7); }

/* Custom section band override */
.custom.band { background: var(--cream-warm); }

/* ─── Responsive (new components) ─── */
@media (max-width: 1100px) {
  .category-visual-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 260px 260px 260px;
  }
  .category-visual-card:first-child { grid-row: 1 / 2; }
  .lifestyle-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 240px;
  }
  .lifestyle-item.tall { grid-row: 1 / 3; }
}

@media (max-width: 860px) {
  .stats-band { grid-template-columns: repeat(2, 1fr); }
  .stats-band-item { border-bottom: 1px solid rgba(255,255,255,0.07); }
  .site-footer { grid-template-columns: 1fr 1fr; }
  .footer-brand-col { grid-column: 1 / -1; }
  .hero-scroll-hint { display: none; }
}

@media (max-width: 640px) {
  .category-visual-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .category-visual-card { aspect-ratio: 16/9; }
  .category-visual-card:first-child { grid-row: auto; }
  .lifestyle-grid {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
  }
  .lifestyle-item { aspect-ratio: 4/3; }
  .lifestyle-item.tall { grid-row: auto; }
  .lifestyle-header { flex-direction: column; align-items: flex-start; }
  .stats-band { grid-template-columns: 1fr 1fr; }
  .site-footer { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal { flex-wrap: wrap; gap: 12px; }
  .hero-badge { font-size: 0.66rem; }
}

/* ─── Responsive ─── */
@media (min-width: 1300px) {
  .product-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
}

@media (max-width: 1200px) {
  .product-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 1050px) {
  .hero {
    grid-template-columns: 1fr;
    align-items: flex-end;
  }
  .hero-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-bottom: 88px;
  }
  .showcase-card,
  .showcase-card.large {
    flex-direction: column;
    align-items: stretch;
  }
  .showcase-card img,
  .showcase-card.large img {
    width: 100%;
    height: auto;
    aspect-ratio: 4/3;
  }
  .pick-grid { grid-template-columns: 1fr; }
  .commerce-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .intro { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .nav { display: none; }
  .hero-stats { position: relative; bottom: auto; left: auto; width: auto; }
  .category-grid,
  .dynamic-category-grid,
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-toolbar { grid-template-columns: 1fr 1fr; position: static; }
  .category-browser { grid-template-columns: 1fr; }
  .category-link-list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .catalog-insights { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .product-detail { grid-template-columns: 1fr; }
  .product-sale-layout,
  .sale-trust { grid-template-columns: 1fr; }
  .custom { grid-template-columns: 1fr; }
  .service-strip { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .review-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
  .announcement-bar { gap: 20px; font-size: 0.64rem; }
  .announcement-bar span:nth-child(3) { display: none; }
  .hero-showcase { display: none; }
  .pick-card { min-height: 280px; }
  .site-footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 600px) {
  h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  h2 { font-size: clamp(1.8rem, 10vw, 2.8rem); }
  .category-grid,
  .dynamic-category-grid,
  .product-grid,
  .hero-stats,
  .shop-toolbar,
  .commerce-grid { grid-template-columns: 1fr; }
  .catalog-insights { grid-template-columns: 1fr; }
  .category-link-list { grid-template-columns: 1fr; }
  .directory-head { flex-direction: column; align-items: stretch; }
  .brand span:last-child { display: none; }
  .cart-button span { display: none; }
  .detail-facts,
  .sale-facts { grid-template-columns: 1fr; }
  .service-strip { grid-template-columns: 1fr; }
}
