/* ============================================================
   Saas Bahu Collection — Premium boutique design system
   ============================================================ */

:root {
  --maroon: #5c3d2e;
  --maroon-dark: #3e281e;
  --maroon-light: #7a5540;
  --gold: #b8935a;
  --gold-light: #cbae7e;
  --gold-soft: #e8d7bb;
  --ivory: #f6efe4;
  --ivory-deep: #efe3d0;
  --ink: #2b211a;
  --ink-soft: #6b5c4d;
  --line: #e6d8c3;
  --white: #ffffff;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --radius: 2px;
  --shadow-soft: 0 10px 40px -12px rgba(43, 33, 26, 0.18);
  --shadow-card: 0 6px 24px -10px rgba(92, 61, 46, 0.18);
  --transition: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

@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;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.14;
  margin: 0 0 0.5em;
  color: var(--maroon-dark);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.6rem, 5.2vw, 4.2rem); font-weight: 700; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); }

p {
  margin: 0 0 1em;
  color: var(--ink-soft);
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow::before,
.eyebrow::after {
  content: '';
  width: 22px;
  height: 1px;
  background: var(--gold);
}

.section {
  padding: 88px 0;
}

.section--tight {
  padding: 56px 0;
}

.section--ivory-deep {
  background: var(--ivory-deep);
}

.section--maroon {
  background: var(--maroon);
  color: var(--gold-soft);
}

.section--maroon h2,
.section--maroon h3 {
  color: var(--white);
}

.section--maroon p {
  color: var(--gold-soft);
}

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}

.section-head p {
  margin-top: 14px;
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 32px;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn-primary {
  position: relative;
  overflow: hidden;
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -60%;
  width: 40%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  transform: skewX(-20deg);
  transition: left 600ms ease;
}

.btn-primary:hover::before {
  left: 120%;
}

.btn-primary:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-gold {
  background: var(--gold);
  color: var(--maroon-dark);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-outline {
  background: transparent;
  color: var(--maroon);
  border-color: var(--maroon);
}

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

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--maroon-dark);
  border-color: var(--white);
}

.btn-whatsapp {
  background: var(--maroon);
  color: var(--white);
  border-color: var(--maroon);
}

.btn-whatsapp:hover {
  background: var(--maroon-dark);
  border-color: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.btn-whatsapp svg {
  color: #6fdf9c;
}

.btn-block {
  width: 100%;
}

.btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 239, 228, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 400ms var(--ease);
  transform: translateY(-100%);
  animation: headerDown 650ms var(--ease) forwards;
  animation-delay: 60ms;
}

@keyframes headerDown {
  to { transform: translateY(0); }
}

.site-header.scrolled {
  box-shadow: 0 10px 28px -16px rgba(43, 33, 26, 0.28);
}

.trust-marquee {
  background: var(--maroon-dark);
  overflow: hidden;
  white-space: nowrap;
}

.trust-marquee-track {
  display: inline-flex;
  gap: 48px;
  padding: 7px 0;
  animation: marqueeScroll 28s linear infinite;
}

.trust-marquee-track span {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-soft);
  flex-shrink: 0;
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  transition: height 380ms var(--ease);
}

.site-header.scrolled .header-inner {
  height: 66px;
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-mark {
  font-family: var(--font-display);
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--maroon-dark);
  letter-spacing: 0.02em;
  transition: font-size 380ms var(--ease), color 300ms ease;
}

.brand:hover .brand-mark {
  color: var(--maroon);
}

.site-header.scrolled .brand-mark {
  font-size: 1.4rem;
}

.brand-sub {
  position: relative;
  display: inline-block;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
  transition: opacity 300ms ease, margin-top 380ms var(--ease);
}

.site-header.scrolled .brand-sub {
  opacity: 0;
  margin-top: -2px;
  pointer-events: none;
}

.nav-desktop {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-desktop a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color var(--transition), letter-spacing var(--transition);
}

.nav-desktop a:hover {
  letter-spacing: 0.07em;
}

.nav-desktop a::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 320ms var(--ease);
  transform: translateX(-50%);
}

.nav-desktop a:hover,
.nav-desktop a.active {
  color: var(--maroon);
}

.nav-desktop a:hover::after,
.nav-desktop a.active::after {
  width: 100%;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  color: var(--maroon);
  transition: border-color var(--transition), background var(--transition);
}

.cart-btn:hover {
  border-color: var(--maroon);
  background: var(--ivory-deep);
}

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

.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--maroon);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  align-items: center;
  justify-content: center;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-toggle span {
  width: 24px;
  height: 1.5px;
  background: var(--maroon-dark);
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--ivory);
  border-top: 1px solid var(--line);
  padding: 8px 24px 24px;
}

.nav-mobile a {
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-mobile.open {
  display: flex;
}

@media (max-width: 900px) {
  .nav-desktop { display: none; }
  .nav-toggle { display: flex; }
}

@media (max-width: 480px) {
  .header-inner { height: 68px; }
  .site-header.scrolled .header-inner { height: 58px; }
  .brand-mark { font-size: 1.15rem; }
  .site-header.scrolled .brand-mark { font-size: 1.05rem; }
  .brand-sub { font-size: 0.5rem; letter-spacing: 0.18em; margin-top: 2px; }
  .header-actions { gap: 8px; }
  .header-actions .btn-whatsapp,
  .header-actions .btn-outline {
    padding: 9px 10px !important;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    justify-content: center;
  }
  .header-actions .btn-whatsapp span,
  .header-actions .btn-outline span {
    display: none;
  }
  .cart-btn, .nav-toggle { width: 36px; height: 36px; }
}

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

.hero {
  position: relative;
  height: 94vh;
  min-height: 640px;
  max-height: 980px;
  overflow: hidden;
  background: var(--maroon-dark);
}

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

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(0deg, rgba(20,10,10,0.86) 0%, rgba(20,10,10,0.55) 32%, rgba(20,10,10,0.15) 58%, rgba(20,10,10,0.35) 100%),
    linear-gradient(100deg, rgba(20,10,10,0.6) 0%, rgba(20,10,10,0.15) 42%, transparent 62%);
  pointer-events: none;
}

@keyframes heroKenBurns {
  0% { transform: scale(1); }
  100% { transform: scale(1.1); }
}

.hero-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 88px;
}

.hero-copy .eyebrow { margin-bottom: 20px; color: var(--gold-light); }
.hero-copy .eyebrow::before,
.hero-copy .eyebrow::after { background: var(--gold-light); }

.hero-copy {
  max-width: 720px;
  opacity: 0;
  transform: translateY(24px);
}

@keyframes heroUp {
  to { opacity: 1; transform: translateY(0); }
}

.page-loaded .hero-copy {
  animation: heroUp 900ms var(--ease) forwards;
  animation-delay: 200ms;
}

.hero-copy h1 .line {
  display: block;
  overflow: hidden;
}

.hero-copy h1 .line-inner {
  display: inline-block;
  opacity: 0;
  transform: translateY(110%);
}

@keyframes lineUp {
  to { opacity: 1; transform: translateY(0); }
}

.page-loaded .hero-copy h1 .line-inner {
  animation: lineUp 750ms var(--ease) forwards;
}

.page-loaded .hero-copy h1 .line:nth-child(1) .line-inner { animation-delay: 140ms; }
.page-loaded .hero-copy h1 .line:nth-child(2) .line-inner { animation-delay: 300ms; }

.hero-copy h1 {
  margin-bottom: 22px;
  color: var(--white);
  text-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

.hero-copy h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-copy p {
  font-size: 1.1rem;
  max-width: 480px;
  margin-bottom: 34px;
  color: rgba(255,255,255,0.88);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(20px);
}

.page-loaded .hero-actions {
  animation: heroUp 800ms var(--ease) forwards;
  animation-delay: 480ms;
}

.hero-statement {
  position: absolute;
  z-index: 2;
  top: 44px;
  right: 24px;
  max-width: 240px;
  text-align: right;
  padding: 20px 22px;
  background: rgba(20,10,10,0.38);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
  opacity: 0;
  transform: translateY(-16px);
}

.page-loaded .hero-statement {
  animation: heroUp 800ms var(--ease) forwards;
  animation-delay: 620ms;
}

.hero-statement-label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 8px;
}

.hero-statement p {
  font-family: var(--font-display);
  font-size: 1.2rem;
  line-height: 1.35;
  color: var(--white);
  margin: 0;
}

.hero-clip {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1);
  transition: opacity 900ms ease;
}

.hero-clip.active {
  opacity: 1;
  z-index: 1;
  animation: heroKenBurns 4500ms ease-out forwards;
}

.hero-visual-dots {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 8px;
  margin-top: 30px;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition);
}

.hero-dot.active {
  background: var(--gold);
  transform: scale(1.3);
}

.hero-visual-buy {
  display: none;
}

@media (max-width: 900px) {
  .hero-statement {
    top: auto;
    bottom: 208px;
    right: 24px;
    left: 24px;
    max-width: none;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .hero { height: 88vh; min-height: 560px; }
  .hero-overlay { padding-bottom: 30px; }

  .hero-statement {
    position: static;
    background: none;
    backdrop-filter: none;
    border: none;
    padding: 0 0 18px;
    text-align: left;
    max-width: 100%;
  }
  .hero-statement p { font-size: 1.05rem; }

  .hero-copy .eyebrow { margin-top: 0; }
  .hero-copy h1 { font-size: clamp(2.1rem, 9vw, 2.7rem); }
  .hero-copy p { font-size: 0.98rem; margin-bottom: 22px; }
  .hero-actions { gap: 12px; margin-bottom: 6px; }
  .hero-actions .btn { flex: 1 1 auto; }

  .hero-visual-buy {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 16px;
    order: 3;
  }

  .hero-visual-dots { margin-top: 16px; order: 4; }

  h2 { font-size: clamp(1.6rem, 7vw, 2.1rem); }
  .section { padding: 52px 0; }
  .section--tight { padding: 36px 0; }
  .section-head { margin-bottom: 32px; }
  .collections-featured-wrap { display: flex; flex-direction: column-reverse; }
}

/* ---------- Placeholder product artwork ---------- */

.ph-art {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(150deg, var(--c1, #5c3d2e), var(--c2, #b8935a));
}

.ph-art::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.5;
  background-image: radial-gradient(rgba(255,255,255,0.35) 1px, transparent 1.5px);
  background-size: 22px 22px;
  mix-blend-mode: overlay;
}

.ph-art::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.06) 0 2px, transparent 2px 26px),
    linear-gradient(0deg, rgba(0,0,0,0.28), transparent 55%);
}

.ph-art .ph-tag {
  position: relative;
  z-index: 2;
  margin: 18px;
  padding: 8px 14px;
  background: rgba(251,247,240,0.92);
  color: var(--maroon-dark);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border-radius: 2px;
}

.ph-art .ph-sku {
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 2;
  font-family: var(--font-accent);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
}

.ph-art.ph-square { aspect-ratio: 1 / 1; }

.ph-art.ph-photo {
  background: var(--ivory-deep);
}

.ph-art.ph-photo::before,
.ph-art.ph-photo::after {
  content: none;
}

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

/* ---------- Trust strip ---------- */

.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  padding: 40px 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.trust-item .icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ivory-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
}

.trust-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--ink);
}

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

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

@media (max-width: 760px) {
  .trust-grid { gap: 14px 10px; padding: 24px 0; }
  .trust-item { flex-direction: column; text-align: center; gap: 8px; }
  .trust-item .icon { width: 34px; height: 34px; }
  .trust-item .icon svg { width: 16px; height: 16px; }
  .trust-item strong { font-size: 0.68rem; line-height: 1.25; }
  .trust-item span { font-size: 0.6rem; line-height: 1.3; display: block; margin-top: 1px; }
}

/* ---------- Category cards ---------- */

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

.category-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: var(--shadow-card);
  transition: transform var(--transition);
}

.category-card:hover {
  transform: translateY(-6px);
}

.category-card .ph-art {
  transition: transform 650ms var(--ease);
}

.category-card:hover .ph-art {
  transform: scale(1.06);
}

.category-card .cat-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  background: linear-gradient(0deg, rgba(20,10,14,0.78) 0%, transparent 55%);
  z-index: 3;
}

.category-card h3 {
  color: var(--white);
  margin-bottom: 6px;
}

.category-card span {
  color: var(--gold-light);
  font-size: 0.78rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

@media (max-width: 760px) {
  .category-grid {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    margin: 0 -24px;
    padding: 4px 24px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .category-grid::-webkit-scrollbar { display: none; }
  .category-card {
    flex: 0 0 72%;
    scroll-snap-align: start;
  }
}

/* ---------- Photo band (real-photo gallery strip) ---------- */

.photo-band {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.photo-band-item {
  display: block;
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.photo-band-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 650ms var(--ease);
}

.photo-band-item:hover img {
  transform: scale(1.08);
}

@media (max-width: 1100px) {
  .photo-band { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .photo-band {
    display: flex;
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 10px;
    margin: 0 -24px;
    padding: 4px 24px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .photo-band::-webkit-scrollbar { display: none; }
  .photo-band-item {
    flex: 0 0 42%;
    scroll-snap-align: start;
  }
}

/* ---------- Product grid & cards ---------- */

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 18px;
  margin-bottom: 40px;
}

.tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.tab-btn {
  padding: 10px 20px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
}

.tab-btn:hover {
  border-color: var(--maroon);
}

.tab-btn.active {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}

.sort-select {
  padding: 10px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.03em;
  color: var(--ink);
  cursor: pointer;
}

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

@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 760px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; }
}

.product-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 12px -6px rgba(43,35,32,0.12);
  transition: transform var(--transition), box-shadow var(--transition);
  opacity: 0;
  transform: translateY(18px);
}

.pc-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 3;
  background: var(--gold);
  color: var(--maroon-dark);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 5px 10px;
  border-radius: 3px;
}

.product-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

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

.product-card a.pc-link {
  display: block;
}

.product-card .ph-art {
  aspect-ratio: 3 / 4;
  transition: transform 650ms var(--ease);
}

.product-card:hover .ph-art {
  transform: scale(1.055);
}

.pc-body {
  padding: 18px 18px 22px;
}

.pc-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--ink);
  margin-bottom: 6px;
  min-height: 2.6em;
}

.pc-craft {
  font-size: 0.72rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 10px;
}

.pc-price {
  font-family: var(--font-display);
  font-size: 1.2rem;
  color: var(--maroon);
  font-weight: 600;
}

.pc-swatches {
  display: flex;
  gap: 6px;
  margin-top: 10px;
}

.swatch {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid rgba(0,0,0,0.12);
  transition: transform 200ms ease;
}

.swatch-more {
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--ink-soft);
  margin-left: 2px;
  align-self: center;
}

.pc-quickbuy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin: 4px 18px 18px;
  padding: 9px 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--maroon);
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
}

.pc-quickbuy svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

.pc-quickbuy:hover {
  background: var(--maroon);
  border-color: var(--maroon);
  color: var(--white);
}

.pd-color:hover .swatch {
  transform: scale(1.18);
}

.empty-state {
  text-align: center;
  padding: 80px 24px;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.empty-state h3 { margin-bottom: 8px; }

/* ---------- Product detail ---------- */

.product-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: flex-start;
}

.pd-gallery-main {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  margin-bottom: 16px;
  background: var(--ivory-deep);
}

.pd-gallery-main img,
.pd-gallery-main video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pd-thumbs {
  display: flex;
  gap: 12px;
}

.pd-thumb {
  position: relative;
  width: 76px;
  height: 90px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color var(--transition);
}

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

.pd-thumb-video .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(43, 33, 26, 0.4);
}

.pd-thumb-video .play-icon svg {
  width: 20px;
  height: 20px;
  color: var(--white);
}

.pd-thumb.active {
  border-color: var(--gold);
}

.pd-info .eyebrow { margin-bottom: 16px; }

.pd-sku {
  font-size: 0.78rem;
  color: var(--ink-soft);
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

.pd-price {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--maroon);
  margin: 10px 0 22px;
}

.pd-section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  margin: 26px 0 12px;
}

.pd-colors {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.pd-color {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px 8px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  background: var(--white);
  font-size: 0.82rem;
  transition: border-color var(--transition);
}

.pd-color .swatch {
  width: 20px;
  height: 20px;
}

.pd-color.active {
  border-color: var(--maroon);
  background: var(--ivory-deep);
}

.pd-color-out {
  opacity: 0.45;
}

.btn-disabled {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
}

.pd-desc {
  margin: 26px 0;
  color: var(--ink-soft);
}

.pd-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 380px;
}

.pd-meta-list {
  list-style: none;
  padding: 0;
  margin: 24px 0 0;
  display: grid;
  gap: 10px;
}

.pd-meta-list li {
  display: flex;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--ink-soft);
}

.pd-meta-list li strong {
  color: var(--ink);
  min-width: 110px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Story / About sections ---------- */

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: center;
}

.story-grid.reverse {
  grid-template-columns: 1.1fr 0.9fr;
}

.story-grid.reverse .story-visual { order: 2; }

.story-visual {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.story-visual .ph-art {
  position: relative;
  height: 122%;
  top: -11%;
  will-change: transform;
}

.story-copy .eyebrow { margin-bottom: 18px; }

@media (max-width: 900px) {
  .story-grid, .story-grid.reverse {
    grid-template-columns: 1fr;
  }
  .story-grid.reverse .story-visual { order: 0; }
}

/* ---------- Steps ---------- */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.step-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 26px;
  position: relative;
}

.step-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 14px;
}

.step-card h3 {
  font-size: 1.15rem;
  margin-bottom: 8px;
}

.step-card p {
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Trust ribbon ---------- */

.trust-ribbon {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 28px;
  background: var(--ivory-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust-ribbon .icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
}

.trust-ribbon strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--maroon-dark);
  margin-bottom: 4px;
}

.trust-ribbon p {
  margin: 0;
  font-size: 0.9rem;
}

/* ---------- Video call note ---------- */

.video-call-note {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-top: 48px;
  padding: 26px 30px;
  background: var(--ivory-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.video-call-note .icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
}

.video-call-note strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--maroon-dark);
  margin-bottom: 6px;
}

.video-call-note p {
  margin: 0;
  font-size: 0.92rem;
}

/* ---------- Forms ---------- */

.form-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 44px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.field {
  margin-bottom: 20px;
}

.field label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 8px;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  background: var(--ivory);
  color: var(--ink);
  transition: border-color var(--transition);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}

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

.form-note {
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin-top: 14px;
}

@media (max-width: 700px) {
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
}

/* ---------- Contact info cards ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: flex-start;
}

.info-card {
  background: var(--maroon);
  color: var(--gold-soft);
  border-radius: var(--radius);
  padding: 40px 34px;
}

.info-card h3 { color: var(--white); }

.info-row {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.14);
}

.info-row:first-of-type { border-top: none; padding-top: 0; }

.info-row .icon {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-row strong {
  display: block;
  color: var(--white);
  font-size: 0.86rem;
  margin-bottom: 3px;
}

.info-row span, .info-row a {
  font-size: 0.85rem;
  color: var(--gold-soft);
}

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

/* ---------- Wholesale banner ---------- */

.banner {
  background: linear-gradient(120deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  border-radius: var(--radius);
  padding: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
  color: var(--white);
}

.banner h2 { color: var(--white); margin-bottom: 10px; }

.banner p { color: var(--gold-soft); max-width: 460px; margin: 0; }

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

.site-footer {
  background: var(--maroon-dark);
  color: var(--gold-soft);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}

.footer-brand .brand-mark {
  color: var(--white);
}

.footer-brand p {
  color: rgba(232,213,168,0.75);
  font-size: 0.88rem;
  margin-top: 14px;
  max-width: 280px;
}

.footer-col h4 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.footer-col a, .footer-col span {
  display: block;
  color: rgba(232,213,168,0.85);
  font-size: 0.88rem;
  margin-bottom: 12px;
  transition: color var(--transition);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.78rem;
  color: rgba(232,213,168,0.6);
}

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

/* ---------- Sticky mobile buy bar ---------- */

.sticky-buy-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 150;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 24px -12px rgba(47, 33, 41, 0.22);
  padding: 12px 18px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transform: translateY(100%);
  transition: transform 320ms var(--ease);
}

.sticky-buy-bar .sb-info {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
}

.sticky-buy-bar .sb-name {
  font-size: 0.72rem;
  color: var(--ink-soft);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-buy-bar .sb-price {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--maroon);
}

.sticky-buy-bar .btn {
  padding: 12px 20px;
  font-size: 0.76rem;
  flex-shrink: 0;
}

@media (max-width: 760px) {
  .sticky-buy-bar { display: flex; }
  .sticky-buy-bar.visible { transform: translateY(0); }
}

/* ---------- Site-wide sticky WhatsApp bar (mobile) ---------- */

.site-sticky-bar {
  display: none;
}

@media (max-width: 760px) {
  .site-sticky-bar {
    display: flex;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 250;
    background: var(--maroon-dark);
    padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
    box-shadow: 0 -6px 20px -10px rgba(0,0,0,0.35);
  }
  .site-sticky-bar a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gold);
    color: var(--maroon-dark);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    padding: 13px 16px;
    border-radius: 999px;
    text-decoration: none;
  }
  .site-sticky-bar svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  body:has(.site-sticky-bar) {
    padding-bottom: 68px;
  }
  /* Replaced by the persistent bottom bar on mobile — avoid duplicate WhatsApp CTAs. */
  body:has(.site-sticky-bar) .wa-float {
    display: none;
  }
}

/* ---------- Floating WhatsApp ---------- */

.wa-float {
  position: fixed;
  bottom: 26px;
  right: 26px;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 0;
  background: var(--maroon-dark);
  color: var(--white);
  height: 52px;
  width: 52px;
  padding: 0;
  border-radius: 999px;
  box-shadow: 0 8px 22px -8px rgba(43, 9, 20, 0.55);
  font-size: 0.82rem;
  font-weight: 600;
  overflow: hidden;
  white-space: nowrap;
  transition: width 420ms var(--ease), transform var(--transition), box-shadow var(--transition), opacity 500ms ease;
  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
}

.wa-float.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.wa-float .wa-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.wa-float .wa-icon svg {
  width: 22px;
  height: 22px;
  color: #6fdf9c;
}

.wa-float .wa-dot {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3fce78;
  animation: dotPulse 2.6s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { box-shadow: 0 0 0 2px var(--maroon-dark), 0 0 0 0 rgba(63, 206, 120, 0.45); }
  50% { box-shadow: 0 0 0 2px var(--maroon-dark), 0 0 0 5px rgba(63, 206, 120, 0); }
}

.wa-float span.wa-label {
  padding-right: 20px;
  opacity: 0;
  transition: opacity 250ms ease 80ms;
}

.wa-float:hover {
  width: 178px;
  box-shadow: 0 12px 28px -8px rgba(43, 9, 20, 0.6);
}

.wa-float:hover span.wa-label {
  opacity: 1;
}

@media (max-width: 600px) {
  .wa-float:hover { width: 52px; }
  .wa-float span.wa-label { display: none; }
}

/* ---------- Lead popup ---------- */

.lead-backdrop {
  position: fixed;
  inset: 0;
  z-index: 400;
  background: rgba(43, 33, 26, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity 500ms ease;
}

.lead-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.lead-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.99);
  z-index: 401;
  width: 420px;
  max-width: 90vw;
  background: var(--ivory);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  padding: 40px 34px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 550ms ease, transform 550ms ease, visibility 550ms;
}

.lead-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.lead-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 4px;
}

.lead-modal h3 {
  margin: 8px 0 10px;
}

.lead-modal p {
  margin-bottom: 22px;
}

.lead-skip {
  display: block;
  width: 100%;
  text-align: center;
  background: none;
  border: none;
  margin-top: 12px;
  font-size: 0.85rem;
  color: var(--ink-soft);
  cursor: pointer;
  text-decoration: underline;
}

.lead-thanks {
  text-align: center;
  padding: 20px 0;
}

/* ---------- Cart drawer ---------- */

.cart-backdrop {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(47, 33, 41, 0.45);
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms var(--ease);
}

.cart-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 301;
  width: 420px;
  max-width: 92vw;
  background: var(--ivory);
  box-shadow: -12px 0 40px -14px rgba(47, 33, 41, 0.4);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 380ms var(--ease);
}

.cart-drawer.open {
  transform: translateX(0);
}

.cart-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 24px;
  border-bottom: 1px solid var(--line);
}

.cart-drawer-header h3 {
  margin: 0;
}

.cart-close {
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 4px;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 8px 24px;
}

.cart-line {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.cart-line-info {
  flex: 1;
  min-width: 0;
}

.cart-line-title {
  font-size: 0.86rem;
  color: var(--ink);
  font-weight: 500;
}

.cart-line-color {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-top: 2px;
}

.cart-line-price {
  font-family: var(--font-display);
  color: var(--maroon);
  font-size: 0.95rem;
  margin-top: 4px;
}

.cart-line-qty {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.qty-btn {
  width: 26px;
  height: 26px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 50%;
  cursor: pointer;
  font-size: 0.9rem;
  line-height: 1;
  color: var(--maroon);
  transition: border-color var(--transition);
}

.qty-btn:hover {
  border-color: var(--maroon);
}

.cart-line-remove {
  flex-shrink: 0;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 4px;
}

.cart-empty {
  text-align: center;
  padding: 60px 20px;
}

.cart-drawer-footer {
  padding: 20px 24px 24px;
  border-top: 1px solid var(--line);
}

.cart-total-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  font-size: 0.95rem;
}

.cart-total-row strong {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--maroon);
}

/* ---------- Quantity stepper ---------- */

.qty-stepper {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 6px 14px;
}

.qty-stepper .qty-btn {
  width: 24px;
  height: 24px;
}

/* ---------- Stock badge ---------- */

.stock-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  vertical-align: middle;
  margin-left: 10px;
}

.stock-in {
  background: #e7efdd;
  color: #3b5c1f;
}

.stock-low {
  background: #faeed7;
  color: #8a5a10;
}

.stock-out {
  background: #f1e2e2;
  color: #8a2f2f;
}

/* ---------- Section divider ---------- */

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 6px 0;
}

.section-divider .divider-line {
  width: 56px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
}

.section-divider .divider-diamond {
  width: 8px;
  height: 8px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
}

/* ---------- Testimonials ---------- */

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

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: 0 2px 12px -6px rgba(43, 35, 32, 0.1);
}

.testimonial-quote-mark {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}

.testimonial-text {
  font-size: 0.9rem;
  color: var(--ink-soft);
  font-style: italic;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 0.8rem;
  color: var(--maroon);
  font-weight: 600;
}

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

/* ---------- Utility ---------- */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.reveal h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 16px;
}

.reveal h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 650ms var(--ease) 150ms;
}

.text-center.reveal h2::after,
.section-head.reveal h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.reveal.in-view h2::after {
  width: 52px;
}

.text-center { text-align: center; }
.mt-0 { margin-top: 0; }

.divider-gold {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 22px auto;
}

.breadcrumb {
  font-size: 0.78rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
}

.breadcrumb a { color: var(--maroon); }

.page-hero {
  padding: 64px 0 48px;
  text-align: center;
  background: var(--ivory-deep);
  border-bottom: 1px solid var(--line);
}

.page-hero .eyebrow { justify-content: center; }
.page-hero h1 { margin-top: 14px; }

/* ---------- Site loader ---------- */

#siteLoader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ivory);
  transition: opacity 500ms var(--ease), visibility 500ms var(--ease);
}

#siteLoader.loader-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-mark {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  color: var(--maroon);
  opacity: 0;
  transform: scale(0.92);
  animation: loaderIn 700ms var(--ease) forwards;
}

.loader-mark::after {
  content: '';
  display: block;
  width: 34px;
  height: 2px;
  margin: 10px auto 0;
  background: var(--gold);
  transform: scaleX(0);
  animation: loaderLine 500ms var(--ease) forwards 400ms;
}

@keyframes loaderIn {
  to { opacity: 1; transform: scale(1); }
}

@keyframes loaderLine {
  to { transform: scaleX(1); }
}

/* ---------- Page transitions ---------- */

body {
  opacity: 1;
  transition: opacity 260ms ease;
}

body.pt-exit {
  opacity: 0;
}

/* ---------- Custom cursor (desktop, fine-pointer only) ---------- */

@media (pointer: fine) {
  html.has-custom-cursor,
  html.has-custom-cursor a,
  html.has-custom-cursor button {
    cursor: none;
  }

  .custom-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10000;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: var(--gold);
    pointer-events: none;
    transition: transform 140ms ease, opacity 200ms ease;
    opacity: 0;
  }

  .custom-cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    width: 34px;
    height: 34px;
    margin: -17px 0 0 -17px;
    border-radius: 50%;
    border: 1px solid rgba(184,147,90,0.55);
    pointer-events: none;
    transition: transform 220ms var(--ease), opacity 200ms ease, width 220ms ease, height 220ms ease, margin 220ms ease;
    opacity: 0;
  }

  .custom-cursor.visible,
  .custom-cursor-ring.visible {
    opacity: 1;
  }

  .custom-cursor-ring.hovering {
    width: 52px;
    height: 52px;
    margin: -26px 0 0 -26px;
    border-color: var(--gold);
    background: rgba(184,147,90,0.08);
  }
}

/* ---------- Gold-foil texture ---------- */

.texture-gold {
  position: relative;
}

.texture-gold::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.5;
  background-image: radial-gradient(rgba(184,147,90,0.16) 1px, transparent 1.4px);
  background-size: 26px 26px;
}

.texture-gold > * {
  position: relative;
  z-index: 1;
}

/* ---------- Gold glow hover on imagery ---------- */

.product-card .ph-art,
.photo-band-item,
.category-card,
.pd-gallery-main,
.story-visual {
  transition: box-shadow 380ms ease;
}

.product-card:hover .ph-art,
.photo-band-item:hover,
.category-card:hover,
.pd-gallery-main:hover {
  box-shadow: 0 0 0 2px var(--gold), 0 14px 30px -10px rgba(184,147,90,0.45);
}

/* ---------- Blur-up lazy image reveal ---------- */

.img-blur {
  filter: blur(14px);
  transform: scale(1.03);
  transition: filter 550ms ease, transform 550ms ease;
}

.img-blur.img-loaded {
  filter: blur(0);
  transform: scale(1);
}

/* ---------- Price reveal ---------- */

.price-in {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 550ms var(--ease), transform 550ms var(--ease);
}

.price-in.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Quick View ---------- */

.pc-quickview {
  position: absolute;
  z-index: 4;
  right: 12px;
  top: 12px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(251,247,240,0.94);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--maroon);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 220ms ease, transform 220ms ease, background 200ms ease;
  box-shadow: 0 4px 14px -4px rgba(43,33,26,0.35);
}

.pc-quickview svg {
  width: 17px;
  height: 17px;
}

.product-card:hover .pc-quickview {
  opacity: 1;
  transform: translateY(0);
}

.pc-quickview:hover {
  background: var(--maroon);
  color: var(--white);
}

@media (max-width: 900px) {
  .pc-quickview { opacity: 1; transform: none; }
}

.qv-backdrop {
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(20,10,10,0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 320ms ease, visibility 320ms;
}

.qv-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.qv-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.97);
  z-index: 501;
  width: 720px;
  max-width: 92vw;
  max-height: 86vh;
  overflow: auto;
  background: var(--ivory);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  display: grid;
  grid-template-columns: 1fr 1fr;
  opacity: 0;
  visibility: hidden;
  transition: opacity 380ms ease, transform 380ms ease, visibility 380ms;
}

.qv-modal.open {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.qv-media {
  aspect-ratio: 4 / 5;
  background: var(--ivory-deep);
}

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

.qv-body {
  padding: 34px 30px;
  position: relative;
}

.qv-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--ink-soft);
  cursor: pointer;
  padding: 4px;
}

.qv-body .eyebrow { margin-bottom: 14px; }
.qv-body h3 { margin-bottom: 8px; }
.qv-price { font-family: var(--font-display); font-size: 1.5rem; color: var(--maroon); margin: 8px 0 18px; }
.qv-swatches { display: flex; gap: 8px; margin-bottom: 24px; }
.qv-actions { display: flex; flex-direction: column; gap: 10px; }

@media (max-width: 700px) {
  .qv-modal { grid-template-columns: 1fr; }
  .qv-media { aspect-ratio: 4 / 3; }
}
