/* ============================================================
   LaRa — Stylesheet
   Boutique palette: Bag Brown, Warm Ivory, Antique Gold, Dusty Blush.
   ============================================================ */
:root {
  /* LaRa boutique palette
     Bag Brown #3B2418 · La Pink #D8A3B4 · Ra Gold #C89A3D
     Warm Ivory #FFF9F4 · Espresso Brown #4A3126 · Body Text #6A544A
     Legacy variable names retained so all rules keep resolving; values now
     map to the new boutique palette. */
  --terracotta: #4A3126;        /* Espresso brown — brand text, active states */
  --terracotta-dark: #3B2418;   /* Bag Brown — hero midtone */
  --terracotta-deep: #2A1A11;   /* Deepest brown — footer, hero shadow */
  --gold: #E5C888;              /* Soft gold — accents, hero kicker */
  --gold-deep: #C89A3D;         /* Warm antique gold — PRIMARY buttons */
  --gold-dark: #A97D2D;         /* Gold hover */
  --pink: #D8A3B4;              /* Dusty blush — "La" logo, highlights on dark bg */
  --pink-strong: #B0708A;       /* Deeper dusty rose — for text on light bg (contrast) */
  --pink-soft: #E9C2CB;         /* Soft rose — accents */
  --cream: #FFF9F4;             /* Warm Ivory — page background */
  --cream-warm: #F7F0E8;        /* Light Beige — alt section background */
  --cream-dark: #EADFD5;        /* Borders & cards */
  --ink: #4A3126;               /* Dark Text — headings */
  --ink-soft: #6A544A;          /* Body Text */
  --white: #FFFFFF;
  --green: #3e7d4f;
  --amber: #b97a1c;
  --red: #c0392b;
  --shadow: 0 10px 30px rgba(59, 36, 24, 0.12);
  --radius: 18px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito", "Segoe UI", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--terracotta-deep);
  color: var(--cream);
  text-align: center;
  font-size: 0.85rem;
  padding: 8px 16px;
  letter-spacing: 0.02em;
}
.announce strong { color: var(--gold); }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 12px clamp(16px, 4vw, 48px);
  background: rgba(255, 249, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cream-dark);
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 52px; height: 52px; border-radius: 50%; box-shadow: var(--shadow); }
.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--pink-strong);   /* "La" — deeper rose for contrast on ivory */
  display: block;
  line-height: 1;
}
.brand-name em { font-style: normal; color: var(--gold-deep); }  /* "Ra" in warm antique gold */
.brand-tag {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav { margin-left: auto; display: flex; gap: clamp(12px, 2.5vw, 32px); font-weight: 700; font-size: 0.95rem; }
.nav a { color: var(--ink-soft); transition: color 0.2s; position: relative; }
.nav a:hover { color: var(--terracotta); }
.cart-btn {
  position: relative;
  margin-left: auto;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  background: var(--terracotta);
  color: var(--cream);
  border-radius: 50%;
  transition: transform 0.2s, background 0.2s;
}
.cart-btn:hover { background: var(--terracotta-dark); transform: scale(1.06); }
.cart-btn svg { width: 21px; height: 21px; }
.cart-count {
  position: absolute; top: -4px; right: -6px;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.7rem; font-weight: 800;
  min-width: 20px; height: 20px;
  border-radius: 10px;
  display: grid; place-items: center;
  padding: 0 5px;
  border: 2px solid var(--cream);
}
.cart-count.bump { animation: bump 0.35s ease; }
@keyframes bump { 40% { transform: scale(1.45); } }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--terracotta) 0%, var(--terracotta-dark) 70%, var(--terracotta-deep) 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 96px) clamp(20px, 4vw, 48px) clamp(90px, 10vw, 130px);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.hero-kicker {
  display: inline-block;
  background: rgba(200, 154, 61, 0.18);
  color: var(--gold);
  font-weight: 800;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.hero h1 { font-size: clamp(2.1rem, 4.6vw, 3.6rem); margin-bottom: 16px; }
.squiggle {
  color: var(--pink);
  position: relative;
  white-space: nowrap;
}
.squiggle::after {
  content: "";
  position: absolute; left: 0; right: 0; bottom: -6px; height: 8px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'%3E%3Cpath d='M0 6 Q12 0 25 6 T50 6 T75 6 T100 6' fill='none' stroke='%23D8A3B4' stroke-width='3' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center / 100% 100%;
}
.hero-sub { font-size: clamp(1rem, 1.6vw, 1.15rem); opacity: 0.92; max-width: 46ch; margin-bottom: 28px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.btn {
  display: inline-block;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.98rem;
  transition: transform 0.18s, box-shadow 0.18s, background 0.18s;
}
.btn-primary {
  background: var(--gold-deep);
  color: #fff;
  box-shadow: 0 6px 18px rgba(74, 49, 38, 0.22);
}
.btn-primary:hover { transform: translateY(-2px); background: var(--gold-dark); color: #fff; }
.btn-ghost {
  border: 2px solid rgba(255, 249, 244, 0.5);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }
.btn-block { width: 100%; text-align: center; }
.hero-perks { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; font-size: 0.9rem; font-weight: 700; opacity: 0.9; }

.hero-collage { position: relative; height: clamp(320px, 36vw, 440px); }
.collage-blob {
  position: absolute; inset: 8% 4%;
  background: radial-gradient(circle at 30% 30%, rgba(242,194,102,0.35), rgba(242,194,102,0.06) 70%);
  border-radius: 50% 45% 55% 50% / 55% 50% 50% 45%;
}
.collage-card {
  position: absolute;
  width: 46%;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.28);
  border: 4px solid var(--cream);
  transform: rotate(var(--tilt, 0deg));
  transition: transform 0.3s ease;
}
.collage-card:hover { transform: rotate(0deg) scale(1.04); z-index: 3; }
.collage-card img { width: 100%; height: 100%; object-fit: cover; }
.c1 { --tilt: -6deg; top: 0; left: 4%; z-index: 2; }
.c2 { --tilt: 5deg; top: 6%; right: 2%; }
.c3 { --tilt: 4deg; bottom: 2%; left: 12%; }
.c4 { --tilt: -5deg; bottom: 0; right: 8%; z-index: 2; }
.hero-wave { position: absolute; bottom: -1px; left: 0; right: 0; line-height: 0; }
.hero-wave svg { width: 100%; height: clamp(40px, 6vw, 90px); }

/* ---------- Shop ---------- */
.shop { max-width: 1240px; margin: 0 auto; padding: clamp(40px, 6vw, 72px) clamp(16px, 4vw, 48px); }
.section-head { text-align: center; margin-bottom: 36px; }
.section-head h2 { font-size: clamp(1.7rem, 3.2vw, 2.5rem); color: var(--terracotta); }
.section-head p { color: var(--ink-soft); margin-top: 6px; }
.section-head.light h2 { color: var(--cream); }
.section-head.light p { color: rgba(255, 249, 244, 0.75); }

.filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.filter-btn {
  padding: 9px 20px;
  border-radius: 999px;
  background: var(--white);
  border: 2px solid var(--cream-dark);
  font-weight: 800;
  font-size: 0.9rem;
  color: var(--ink-soft);
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--terracotta); }
.filter-btn.active {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}
/* Seasonal "School Season" filter — pink accent so it stands out */
.filter-btn.filter-season {
  border-color: var(--pink);
  color: var(--pink-strong);
  background: var(--pink-soft);
}
.filter-btn.filter-season:hover { border-color: var(--pink-strong); color: var(--terracotta); }
.filter-btn.filter-season.active {
  background: var(--pink-strong);
  border-color: var(--pink-strong);
  color: #fff;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(255px, 1fr));
  gap: 26px;
}
.card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: rise 0.45s ease both;
}
@keyframes rise { from { opacity: 0; transform: translateY(14px); } }
.card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px rgba(74, 49, 38, 0.18); }
.card.sold-out .card-media img, .card.sold-out .card-media video { filter: grayscale(0.85) opacity(0.7); }

.card-media { position: relative; aspect-ratio: 1; background: var(--cream-dark); overflow: hidden; }
.card-media img, .card-media video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold);
  color: var(--terracotta-deep);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 5px 12px;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.stock-pill {
  position: absolute; top: 12px; right: 12px;
  font-size: 0.72rem; font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  background: var(--white);
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.stock-pill.in { color: var(--green); }
.stock-pill.low { color: var(--amber); }
.stock-pill.out { color: var(--red); }
.stock-pill.soon { color: var(--terracotta); background: var(--gold); }
.stock-pill .dot { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: currentColor; margin-right: 5px; }

/* Coming-soon products: subtle wash + amber accents; keep the images crisp. */
.card.is-soon .card-media img { filter: saturate(0.9); }
.card.is-soon .card-body { position: relative; }
.price.soon-price {
  font-size: 1.05rem;
  font-family: var(--font-body);
  font-weight: 800;
  color: var(--amber);
  letter-spacing: 0.02em;
}
.add-btn.notify-btn { background: var(--gold); color: var(--terracotta-deep); }
.add-btn.notify-btn:hover { background: var(--gold-deep); color: var(--cream); transform: scale(1.04); }

.play-hint {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(58, 32, 24, 0.65);
  color: var(--cream);
  font-size: 0.72rem; font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  pointer-events: none;
}

.card-body { padding: 18px 18px 20px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-cat { font-size: 0.72rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-deep); }
.card-name { font-family: var(--font-display); font-size: 1.12rem; font-weight: 600; }
.card-desc { font-size: 0.86rem; color: var(--ink-soft); flex: 1; }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 10px; gap: 10px; }
.price { font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; color: var(--terracotta); }
.price small { font-size: 0.7rem; font-family: var(--font-body); font-weight: 800; color: var(--ink-soft); }
.add-btn {
  background: var(--gold-deep);
  color: #fff;
  font-weight: 800;
  font-size: 0.88rem;
  padding: 10px 18px;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.add-btn:hover { background: var(--gold-dark); transform: scale(1.04); }
.add-btn:disabled { background: var(--cream-dark); color: var(--ink-soft); cursor: not-allowed; transform: none; }

/* ---------- Coming soon ---------- */
.coming-soon {
  margin-top: 48px;
  background: var(--white);
  border: 2px dashed var(--gold-deep);
  border-radius: var(--radius);
  padding: 20px 26px;
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}
.cs-label {
  font-weight: 800;
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  color: var(--terracotta);
}
.cs-items { display: flex; gap: 10px; flex-wrap: wrap; }
.cs-chip {
  background: var(--cream);
  border-radius: 999px;
  padding: 7px 16px;
  font-weight: 700;
  font-size: 0.88rem;
  color: var(--ink-soft);
}
.cs-note { font-size: 0.85rem; color: var(--ink-soft); }

/* ---------- Featured videos ---------- */
.featured {
  background: linear-gradient(160deg, var(--terracotta-dark), var(--terracotta-deep));
  padding: clamp(48px, 7vw, 84px) clamp(16px, 4vw, 48px);
}
.video-row {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 22px;
}
.video-card {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0,0,0,0.3);
  position: relative;
  background: #000;
}
.video-card video { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }
.video-card .vc-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 30px 16px 12px;
  background: linear-gradient(transparent, rgba(0,0,0,0.75));
  color: var(--cream);
  font-weight: 700;
  font-size: 0.9rem;
}

/* ---------- About ---------- */
.about { padding: clamp(48px, 7vw, 84px) clamp(16px, 4vw, 48px); }
.about-card {
  max-width: 900px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 48px);
  display: flex;
  gap: 32px;
  align-items: center;
}
.about-logo { width: clamp(90px, 12vw, 130px); border-radius: 50%; flex-shrink: 0; box-shadow: var(--shadow); }
.about-card h2 { color: var(--terracotta); margin-bottom: 12px; font-size: clamp(1.4rem, 2.6vw, 1.9rem); }
.about-card p { color: var(--ink-soft); margin-bottom: 10px; }
.about-highlight {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  padding: 10px 16px;
  border-radius: 8px;
  font-weight: 700;
  color: var(--terracotta) !important;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--terracotta-deep);
  color: var(--cream);
  padding: clamp(40px, 6vw, 64px) clamp(20px, 4vw, 48px) 24px;
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto 32px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}
.footer-brand { font-family: var(--font-display); font-size: 2rem; font-weight: 700; }
.footer-brand em { font-style: normal; color: var(--gold); }
.footer-tag { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; }
.footer h4 { color: var(--gold); margin-bottom: 10px; font-size: 1rem; }
.footer p { font-size: 0.92rem; opacity: 0.85; margin-bottom: 6px; }
.footer-note { text-align: center; font-size: 0.78rem; opacity: 0.55; border-top: 1px solid rgba(250,243,234,0.15); padding-top: 18px; max-width: 1100px; margin: 0 auto; }

/* ---------- Cart drawer ---------- */
.overlay {
  position: fixed; inset: 0;
  background: rgba(58, 32, 24, 0.45);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
  z-index: 90;
}
.overlay.show { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--cream);
  z-index: 100;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: -12px 0 40px rgba(0,0,0,0.18);
}
.drawer.open { transform: translateX(0); }
.drawer-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--cream-dark);
}
.drawer-head h3 { color: var(--terracotta); font-size: 1.3rem; }
.icon-btn {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream-dark);
  font-size: 1rem;
  display: grid; place-items: center;
  transition: background 0.2s;
}
.icon-btn:hover { background: var(--gold); }
.drawer-body { flex: 1; overflow-y: auto; padding: 18px 24px; }
.empty-cart { text-align: center; color: var(--ink-soft); padding: 48px 12px; }
.empty-cart .big { font-size: 3rem; margin-bottom: 12px; }
.cart-item {
  display: grid;
  grid-template-columns: 64px 1fr auto;
  gap: 14px;
  align-items: center;
  background: var(--white);
  border-radius: 14px;
  padding: 12px;
  margin-bottom: 12px;
  box-shadow: 0 4px 14px rgba(111,37,18,0.07);
}
.cart-item img { width: 64px; height: 64px; object-fit: cover; border-radius: 10px; }
.ci-name { font-weight: 800; font-size: 0.9rem; line-height: 1.3; }
.ci-price { font-size: 0.82rem; color: var(--ink-soft); }
.ci-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 26px; height: 26px;
  border-radius: 50%;
  background: var(--cream);
  font-weight: 800;
  transition: background 0.15s;
}
.qty-btn:hover { background: var(--gold); }
.ci-qty { font-weight: 800; min-width: 18px; text-align: center; }
.ci-remove { font-size: 0.72rem; color: var(--red); font-weight: 700; margin-top: 4px; }
.ci-max { font-size: 0.7rem; color: var(--amber); font-weight: 700; }
.drawer-foot { padding: 18px 24px 24px; border-top: 1px solid var(--cream-dark); background: var(--white); }
.bulk-hint { font-size: 0.82rem; color: var(--amber); font-weight: 700; margin-bottom: 8px; min-height: 1em; }
.total-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 1.05rem; margin-bottom: 14px;
}
.total-row strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--terracotta); }

/* ---------- Checkout modal ---------- */
.modal {
  position: fixed; inset: 0;
  display: grid; place-items: center;
  padding: 20px;
  background: rgba(58, 32, 24, 0.5);
  opacity: 0; pointer-events: none;
  transition: opacity 0.25s;
  z-index: 110;
}
.modal.show { opacity: 1; pointer-events: auto; }
.modal-card {
  position: relative;
  background: var(--cream);
  width: min(480px, 100%);
  max-height: 90vh;
  overflow-y: auto;
  border-radius: 22px;
  padding: 30px 28px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s;
}
.modal.show .modal-card { transform: none; }
.modal-close { position: absolute; top: 14px; right: 14px; }
.modal-card h3 { color: var(--terracotta); font-size: 1.5rem; margin-bottom: 6px; }
.modal-sub { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 18px; }
.modal-card label { display: block; font-weight: 800; font-size: 0.85rem; margin-bottom: 14px; }
.modal-card input, .modal-card select, .modal-card textarea {
  width: 100%;
  margin-top: 5px;
  padding: 11px 14px;
  border: 2px solid var(--cream-dark);
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  background: var(--white);
  transition: border-color 0.2s;
}
.modal-card input:focus, .modal-card select:focus, .modal-card textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.order-summary {
  background: var(--white);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 0.88rem;
  margin-bottom: 18px;
}
.order-summary .os-row { display: flex; justify-content: space-between; padding: 3px 0; }
.order-summary .os-total { border-top: 1px dashed var(--cream-dark); margin-top: 8px; padding-top: 8px; font-weight: 800; color: var(--terracotta); }
.modal-fine { font-size: 0.75rem; color: var(--ink-soft); text-align: center; margin-top: 12px; }
.pick-contact { font-weight: 800; font-size: 0.85rem; color: var(--ink-soft); margin: 4px 0 8px; }
.checkout-actions { display: flex; flex-direction: column; gap: 10px; }
.checkout-actions .wa-btn { background: #25D366; color: #fff; }   /* WhatsApp green */
.checkout-actions .wa-btn:hover { background: #1ebb5b; color: #fff; }
.checkout-actions .wa-btn .wa-icon { margin-right: 6px; font-size: 1.05em; }
.checkout-actions .wa-btn strong { font-weight: 800; letter-spacing: 0.02em; }
.checkout-actions .email-btn { color: var(--terracotta); border-color: var(--cream-dark); }
.checkout-actions .email-btn:hover { border-color: var(--gold); color: var(--terracotta-dark); }
.done-emoji { font-size: 3.4rem; text-align: center; margin-bottom: 10px; }
#checkoutDone h3 { text-align: center; }
#checkoutDone .modal-sub { text-align: center; }

/* ---------- Social links ---------- */
.social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 12px; }
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 999px;
  background: rgba(200, 154, 61, 0.14);
  border: 1.5px solid rgba(200, 154, 61, 0.45);
  color: var(--gold);
  font-size: 0.85rem;
  font-weight: 800;
  transition: background 0.2s, transform 0.2s, color 0.2s;
}
.social-btn svg { width: 17px; height: 17px; }
.social-btn:hover {
  background: var(--gold);
  color: var(--terracotta-deep);
  transform: translateY(-2px);
}
/* on the light About card, use terracotta styling instead of gold-on-dark */
.about-socials .social-btn {
  background: var(--cream);
  border-color: var(--cream-dark);
  color: var(--terracotta);
}
.about-socials .social-btn:hover {
  background: var(--terracotta);
  border-color: var(--terracotta);
  color: var(--cream);
}

/* ---------- Toast ---------- */
.toast {
  position: fixed;
  bottom: 26px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  background: var(--ink);
  color: var(--cream);
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  box-shadow: 0 12px 30px rgba(0,0,0,0.25);
  opacity: 0;                 /* fully hidden until shown */
  visibility: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease, visibility 0.3s;
  z-index: 120;
  pointer-events: none;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}
/* Never let the toast overlap the drawer's checkout bar or the checkout
   modal — it collides with the fixed action button underneath. */
.drawer.open ~ .toast,
.modal.show ~ .toast {
  transform: translateX(-50%) translateY(120px) !important;
  opacity: 0;
}

/* ---------- "Tap to view" hint on cards ---------- */
.card-media { cursor: pointer; }
.view-hint {
  position: absolute; bottom: 12px; right: 12px;
  background: rgba(58, 32, 24, 0.72);
  color: var(--cream);
  font-size: 0.72rem; font-weight: 800;
  padding: 5px 12px;
  border-radius: 999px;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.2s, transform 0.2s;
  pointer-events: none;
}
.card:hover .view-hint { opacity: 1; transform: translateY(0); }
@media (hover: none) { .view-hint { opacity: 1; transform: none; } }

/* Featured card badge */
.vc-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--gold);
  color: var(--terracotta-deep);
  font-size: 0.72rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.06em;
  padding: 5px 12px; border-radius: 999px;
  z-index: 2;
}
.video-card { cursor: pointer; }
.video-card img { width: 100%; aspect-ratio: 3/4; object-fit: cover; display: block; }

/* ---------- Product gallery modal ---------- */
.gallery .gallery-card {
  position: relative;
  background: var(--cream);
  width: min(560px, 100%);
  max-height: 92vh;
  overflow-y: auto;
  border-radius: 22px;
  padding: 20px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transform: translateY(16px) scale(0.98);
  transition: transform 0.25s;
}
.gallery.show .gallery-card { transform: none; }
.gallery-close { position: absolute; top: 14px; right: 14px; z-index: 3; }
.gallery-stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  display: grid;
  place-items: center;
}
.gallery-stage img {
  width: 100%;
  max-height: 62vh;
  object-fit: contain;
  background: var(--white);
}
.gallery-nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px;
  border-radius: 50%;
  background: rgba(58, 32, 24, 0.6);
  color: var(--cream);
  font-size: 1.6rem; line-height: 1;
  display: grid; place-items: center;
  transition: background 0.2s;
  z-index: 2;
}
.gallery-nav:hover { background: var(--terracotta); }
.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }
.gallery-thumbs {
  display: flex; gap: 10px; flex-wrap: wrap;
  justify-content: center;
  margin-top: 14px;
}
.g-thumb {
  width: 68px; height: 68px;
  border-radius: 10px;
  overflow: hidden;
  border: 3px solid transparent;
  transition: border-color 0.2s;
  padding: 0;
  background: var(--white);
}
.g-thumb img { width: 100%; height: 100%; object-fit: cover; }
.g-thumb.active { border-color: var(--gold-deep); }
.gallery-info {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-top: 18px; flex-wrap: wrap;
}
.gallery-info h3 { color: var(--terracotta); font-size: 1.25rem; }
.gallery-price { font-family: var(--font-display); font-weight: 700; color: var(--ink); }
#galleryAdd:disabled { background: var(--cream-dark); color: var(--ink-soft); cursor: not-allowed; }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-collage { order: -1; height: 300px; max-width: 420px; margin: 0 auto; width: 100%; }
  .nav { display: none; }
  .about-card { flex-direction: column; text-align: center; }
}
