/* =========================================================
   Shreya's Collection — styles
   ========================================================= */
:root {
  --ivory: #fbf7f2;
  --cream: #f4ece2;
  --blush: #f3dfd8;
  --rose: #e7c3b8;
  --sage: #dfe6d6;
  --ink: #2b1d1a;
  --ink-soft: #5d4b45;
  --muted: #8a7870;
  --line: #e8ddd1;
  --plum: #6b2d3c;
  --plum-deep: #4f1f2b;
  --gold: #b8893b;
  --gold-soft: #e9d6ae;
  --wa: #1fa855;
  --wa-deep: #168a45;
  --white: #fff;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", system-ui, -apple-system, "Segoe UI", sans-serif;

  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 2px 10px rgba(75, 40, 30, .06);
  --shadow: 0 14px 40px -12px rgba(75, 40, 30, .22);
  --header-h: 72px;
  --promo-h: 38px;
  --fb: #1877f2;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + var(--promo-h) + 12px); -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, select, textarea { font: inherit; color: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; margin: 0 0 .5em; letter-spacing: -.01em; }
h1 em, h2 em { font-style: italic; color: var(--plum); }
p { margin: 0 0 1em; }
[hidden] { display: none !important; }
.no-email [data-needs-email] { display: none !important; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 6px; }

.container { width: min(1200px, 100% - 32px); margin-inline: auto; }
.ico { width: 20px; height: 20px; flex: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: .85em 1.5em; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 500; font-size: .95rem; letter-spacing: .02em; text-decoration: none;
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn-primary { background: var(--plum); color: var(--white); box-shadow: 0 10px 24px -10px rgba(107, 45, 60, .7); }
.btn-primary:hover { background: var(--plum-deep); }
.btn-outline { border-color: var(--plum); color: var(--plum); background: transparent; }
.btn-outline:hover { background: var(--plum); color: var(--white); }
.btn-wa { background: var(--wa); color: var(--white); box-shadow: 0 10px 22px -12px rgba(31, 168, 85, .8); }
.btn-wa:hover { background: var(--wa-deep); }
.btn-ghost { background: var(--cream); color: var(--ink); }
.btn-ghost:hover { background: var(--blush); }
.btn-sm { padding: .6em 1em; font-size: .85rem; }
.btn-block { width: 100%; }

.icon-btn {
  position: relative; display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 50%; border: 0; background: transparent; color: var(--ink);
  transition: background .2s;
}
.icon-btn:hover { background: var(--cream); }
.icon-btn .ico { width: 22px; height: 22px; }

.eyebrow {
  font-size: .78rem; font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: .8em;
}

/* ---------- announcement + header ---------- */
/* sticky promo strip: WhatsApp Community + Facebook, always on screen */
.promo-bar { display: flex; min-height: var(--promo-h); background: var(--plum-deep); }
.promo-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px; padding: 6px 12px;
  color: #fff; text-decoration: none; font-size: .86rem; font-weight: 500; letter-spacing: .02em;
  transition: background .2s;
}
.promo-bar a + a { border-left: 1px solid rgba(255, 255, 255, .16); }
.promo-bar a:hover { background: rgba(255, 255, 255, .08); }
.promo-bar .ico { width: 18px; height: 18px; }
.promo-wa .ico { color: #25d366; }
.promo-fb .ico { color: #fff; background: var(--fb); border-radius: 50%; padding: 2px; }
.promo-bar .arrow { color: var(--gold-soft); transition: transform .2s; }
.promo-bar a:hover .arrow { transform: translateX(3px); }
.promo-bar .short { display: none; }
@media (max-width: 640px) {
  .promo-bar a { font-size: .8rem; gap: 6px; padding: 6px 8px; }
  .promo-bar .long { display: none; }
  .promo-bar .short { display: inline; }
}

.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 247, 242, .86);
  backdrop-filter: saturate(1.4) blur(14px); -webkit-backdrop-filter: saturate(1.4) blur(14px);
  border-bottom: 1px solid transparent; transition: border-color .3s, box-shadow .3s;
}
.site-header.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.header-inner { height: var(--header-h); display: flex; align-items: center; gap: 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; }
.brand-mark {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--plum), var(--plum-deep)); color: var(--gold-soft);
  font-family: var(--font-display); font-size: 1.35rem; font-weight: 700; font-style: italic;
  box-shadow: inset 0 0 0 2px rgba(233, 214, 174, .35);
}
.brand-text { font-family: var(--font-display); font-size: 1.45rem; font-weight: 700; letter-spacing: .01em; }
.brand-text em { font-weight: 500; color: var(--plum); }

.nav { display: flex; align-items: center; gap: 4px; margin-left: auto; }
.nav a {
  text-decoration: none; font-size: .92rem; padding: .5em .75em; border-radius: 999px; color: var(--ink-soft);
  white-space: nowrap; transition: color .2s, background .2s;
}
.brand-text { white-space: nowrap; }
/* desktop bar keeps only the shopping links; Our Story / FAQ live in the phone menu and footer */
@media (min-width: 1141px) { .nav .nav-minor { display: none; } }
.nav a:hover { color: var(--plum); background: var(--cream); }
.nav .nav-cta { color: var(--white); margin-left: 8px; padding: .6em 1.1em; }
.nav .nav-cta:hover { color: var(--white); background: var(--wa-deep); }
.nav .nav-cta .ico { width: 18px; height: 18px; }
.nav .nav-fb {
  width: 40px; height: 40px; padding: 0; margin-left: 6px; border-radius: 50%;
  display: inline-grid; place-items: center; background: var(--fb); color: #fff;
  box-shadow: 0 8px 18px -10px rgba(24, 119, 242, .8); transition: transform .25s var(--ease), background .2s;
}
.nav .nav-fb:hover { background: #0f63d6; color: #fff; transform: translateY(-2px); }
.nav .nav-fb .ico { width: 20px; height: 20px; }
.nav-fb-text { display: none; }

.header-actions { display: flex; align-items: center; gap: 4px; }
.bag-count {
  position: absolute; top: 4px; right: 2px; min-width: 18px; height: 18px; padding: 0 5px;
  border-radius: 999px; background: var(--plum); color: var(--white); font-size: .7rem; font-weight: 600;
  display: grid; place-items: center; line-height: 1;
}
.bag-count.bump { animation: bump .4s var(--ease); }
@keyframes bump { 50% { transform: scale(1.35); } }
.menu-btn { display: none; }

@media (max-width: 1140px) {
  .menu-btn { display: inline-grid; }
  .header-actions { margin-left: auto; }
  .nav {
    /* header's backdrop-filter makes it the containing block */
    position: fixed; inset: calc(var(--promo-h) + var(--header-h)) 0 auto 0; margin: 0; max-height: calc(100vh - var(--promo-h) - var(--header-h)); overflow-y: auto;
    flex-direction: column; align-items: stretch; gap: 2px; padding: 12px 16px 24px;
    background: var(--ivory); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    transform: translateY(-12px); opacity: 0; visibility: hidden;
    transition: transform .3s var(--ease), opacity .3s, visibility .3s;
  }
  .nav.open { transform: none; opacity: 1; visibility: visible; }
  .nav a { padding: .85em 1em; font-size: 1.02rem; border-radius: var(--radius-sm); }
  .nav .nav-cta { margin: 10px 0 0; justify-content: center; }
  .nav .nav-fb { width: auto; height: auto; margin: 8px 0 0; padding: .85em 1em; border-radius: 999px; display: flex; justify-content: center; gap: .5em; font-weight: 500; }
  .nav .nav-fb:hover { transform: none; }
  .nav-fb-text { display: inline; }
}

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(900px 500px at 85% 20%, var(--blush) 0%, transparent 60%),
    radial-gradient(700px 500px at 0% 100%, var(--sage) 0%, transparent 55%),
    var(--ivory);
}
.hero-inner {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 48px; align-items: center;
  padding: clamp(40px, 7vw, 96px) 0 clamp(56px, 8vw, 110px);
}
.hero h1 { font-size: clamp(2.4rem, 5.4vw, 4.4rem); font-weight: 600; }
.lead { font-size: clamp(1rem, 1.3vw, 1.12rem); color: var(--ink-soft); max-width: 36em; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin: 28px 0 32px; }
.hero-points { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 10px 24px; color: var(--ink-soft); font-size: .92rem; }
.hero-points li { display: inline-flex; align-items: center; gap: 8px; }
.hero-points .ico { color: var(--gold); }

.hero-art { position: relative; height: clamp(360px, 42vw, 540px); }
.arch {
  position: absolute; overflow: hidden; border-radius: 999px 999px 24px 24px;
  box-shadow: var(--shadow); background: var(--cream);
  border: 6px solid var(--white);
}
.arch img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.arch:hover img { transform: scale(1.05); }
.arch-1 { width: 46%; height: 82%; left: 4%; top: 6%; animation: float 7s ease-in-out infinite; }
.arch-2 { width: 40%; height: 62%; right: 4%; top: 0; animation: float 8s ease-in-out -2s infinite; }
.arch-3 { width: 36%; height: 44%; right: 12%; bottom: 0; animation: float 9s ease-in-out -4s infinite; }
@keyframes float { 50% { transform: translateY(-10px); } }
.hero-badge {
  position: absolute; left: 0; bottom: 6%; z-index: 2;
  background: var(--white); border-radius: 999px; padding: 14px 22px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; line-height: 1.1;
}
.hb-top { font-size: .72rem; letter-spacing: .18em; text-transform: uppercase; color: var(--gold); }
.hb-main { font-family: var(--font-display); font-size: 1.4rem; font-weight: 600; font-style: italic; color: var(--plum); }

@media (max-width: 860px) {
  .hero-inner { grid-template-columns: 1fr; gap: 28px; }
  .hero-art { height: 340px; order: -1; max-width: 460px; width: 100%; margin-inline: auto; }
  .hero-copy { text-align: center; }
  .lead { margin-inline: auto; }
  .hero-ctas, .hero-points { justify-content: center; }
}
@media (max-width: 420px) {
  .hero-ctas .btn { width: 100%; }
  .hero-art { height: 290px; }
}

/* ---------- sections ---------- */
.section { padding: clamp(64px, 9vw, 112px) 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(32px, 5vw, 52px); }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-sub { color: var(--muted); margin: 0; }

/* collections */
.collections { padding-top: clamp(48px, 7vw, 88px); }
.collection-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 3vw, 32px); }
.collection-card {
  position: relative; display: block; text-decoration: none; border-radius: var(--radius);
  overflow: hidden; min-height: 380px; isolation: isolate; box-shadow: var(--shadow-sm);
  transition: box-shadow .4s, transform .4s var(--ease);
}
.collection-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.cc-media { position: absolute; inset: 0; z-index: -1; }
.cc-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.collection-card:hover .cc-media img { transform: scale(1.06); }
.collection-card::after {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 35%, rgba(43, 20, 22, .72) 100%);
}
.cc-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 28px; color: var(--white); }
.cc-body h3 { font-size: clamp(1.9rem, 3vw, 2.5rem); margin-bottom: .2em; }
.cc-body p { margin: 0 0 .9em; opacity: .9; letter-spacing: .04em; font-size: .95rem; }
.cc-link { display: inline-block; font-size: .85rem; letter-spacing: .14em; text-transform: uppercase; border-bottom: 1px solid rgba(255, 255, 255, .6); padding-bottom: 2px; }
@media (max-width: 700px) { .collection-grid { grid-template-columns: 1fr; } .collection-card { min-height: 300px; } }

/* ---------- shop ---------- */
.shop { background: var(--white); border-radius: 40px 40px 0 0; }
.shop-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; margin-bottom: 14px; }
.tabs { display: flex; gap: 6px; background: var(--cream); padding: 5px; border-radius: 999px; overflow-x: auto; scrollbar-width: none; max-width: 100%; }
.tabs::-webkit-scrollbar { display: none; }
.tabs button {
  border: 0; background: transparent; padding: .6em 1.15em; border-radius: 999px; font-size: .9rem;
  color: var(--ink-soft); white-space: nowrap; transition: background .25s, color .25s, box-shadow .25s;
}
.tabs button[aria-selected="true"] { background: var(--white); color: var(--plum); box-shadow: var(--shadow-sm); font-weight: 500; }
.toolbar-right { display: flex; gap: 10px; flex-wrap: wrap; }
.search {
  display: flex; align-items: center; gap: 8px; padding: 0 14px; height: 44px;
  background: var(--ivory); border: 1px solid var(--line); border-radius: 999px; color: var(--muted);
  transition: border-color .2s;
}
.search:focus-within { border-color: var(--gold); }
.search .ico { width: 18px; height: 18px; }
.search input { border: 0; background: transparent; outline: none; width: 200px; color: var(--ink); }
#sortSelect {
  height: 44px; padding: 0 36px 0 16px; border-radius: 999px; border: 1px solid var(--line); background: var(--ivory);
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 10l5 5 5-5' fill='none' stroke='%238a7870' stroke-width='1.8' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 12px center; background-size: 16px;
}
@media (max-width: 700px) {
  .toolbar-right { width: 100%; }
  .search { flex: 1; min-width: 0; }
  .search input { width: 100%; min-width: 0; }
  #sortSelect { flex: none; width: 128px; }
}

.chips { display: flex; flex-wrap: wrap; gap: 8px; min-height: 0; margin-bottom: 8px; }
.chips button {
  border: 1px solid var(--line); background: var(--white); padding: .42em 1em; border-radius: 999px;
  font-size: .85rem; color: var(--ink-soft); transition: all .2s;
}
.chips button:hover { border-color: var(--gold); }
.chips button[aria-pressed="true"] { background: var(--ink); border-color: var(--ink); color: var(--white); }
.result-count { color: var(--muted); font-size: .88rem; margin: 10px 0 18px; }

.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: clamp(14px, 2.2vw, 28px); }
@media (max-width: 560px) { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.card {
  display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--line); overflow: hidden;
  transition: box-shadow .35s, transform .35s var(--ease), border-color .35s;
  animation: cardIn .6s var(--ease) both; animation-delay: calc(var(--i, 0) * 45ms);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); border-color: transparent; }
@keyframes cardIn { from { opacity: 0; transform: translateY(16px); } }
.card-media { position: relative; display: block; aspect-ratio: 4 / 5; padding: 0; border: 0; background: var(--cream); overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card-media img { transform: scale(1.06); }
.badges { position: absolute; top: 12px; left: 12px; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; }
.badge {
  font-size: .68rem; font-weight: 600; letter-spacing: .12em; text-transform: uppercase;
  padding: .35em .8em; border-radius: 999px; background: var(--white); color: var(--plum); box-shadow: var(--shadow-sm);
}
.badge-new { background: var(--plum); color: var(--white); }
.badge-best { background: var(--gold-soft); color: var(--plum-deep); }
.badge-out { background: var(--ink); color: var(--white); }
img.fit-contain { object-fit: contain !important; background: var(--cream); }
.card.soldout .card-media img { filter: grayscale(.5) opacity(.8); }
.quick-view {
  position: absolute; left: 12px; right: 12px; bottom: 12px; padding: .6em; border-radius: 999px;
  background: rgba(255, 255, 255, .92); font-size: .82rem; font-weight: 500; letter-spacing: .08em; text-transform: uppercase;
  opacity: 0; transform: translateY(8px); transition: all .3s var(--ease);
}
.card:hover .quick-view { opacity: 1; transform: none; }
@media (hover: none) { .quick-view { display: none; } }

.card-body { padding: 16px 16px 18px; display: flex; flex-direction: column; flex: 1; }
.card-cat { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin: 0 0 4px; }
.card-title { font-size: 1.3rem; margin: 0 0 2px; }
.card-title button { border: 0; background: none; padding: 0; text-align: left; font: inherit; color: inherit; }
.card-title button:hover { color: var(--plum); }
.card-code { font-size: .78rem; color: var(--muted); margin: 0 0 10px; }
.price { font-weight: 600; font-size: 1.05rem; color: var(--plum); margin: auto 0 14px; }
.price-ask { font-weight: 500; font-size: .9rem; color: var(--ink-soft); font-style: italic; }
.card-actions { display: flex; gap: 8px; }
.card-actions .btn-wa { flex: 1; }
.card-actions .btn-add { width: 40px; height: 40px; padding: 0; border-radius: 50%; flex: none; }
.card-actions .btn-add.added { background: var(--plum); color: var(--white); }
.card-actions .btn-add .ico { width: 18px; height: 18px; }

@media (max-width: 560px) {
  .card-body { padding: 12px 12px 14px; }
  .card-title { font-size: 1.08rem; }
  .card-cat { font-size: .64rem; letter-spacing: .1em; }
  .card-code { font-size: .72rem; margin-bottom: 6px; }
  .price { font-size: .95rem; margin-bottom: 10px; }
  .card-actions .btn-wa { font-size: .74rem; padding: .6em .4em; gap: .3em; letter-spacing: 0; }
  .card-actions .btn-wa .ico { width: 15px; height: 15px; }
  /* phones: the order button takes the full width; "+ enquiry list" sits on the photo's corner */
  .card { position: relative; }
  .card-actions .btn-add {
    position: absolute; top: 10px; right: 10px; width: 34px; height: 34px; z-index: 2;
    background: rgba(255, 255, 255, .92); box-shadow: var(--shadow-sm);
  }
  .badge { font-size: .6rem; }
}

.empty { text-align: center; padding: 48px 16px; color: var(--muted); }

/* ---------- how ---------- */
.how { background: var(--white); padding-top: 0; }
.steps { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; counter-reset: s; }
.step { background: var(--ivory); border-radius: var(--radius); padding: 32px 28px; position: relative; }
.step-n {
  display: grid; place-items: center; width: 48px; height: 48px; border-radius: 50%; margin-bottom: 18px;
  background: var(--white); color: var(--plum); font-family: var(--font-display); font-size: 1.5rem; font-weight: 700;
  box-shadow: var(--shadow-sm);
}
.step h3 { font-size: 1.5rem; }
.step p { color: var(--ink-soft); margin: 0; }
@media (max-width: 800px) { .steps { grid-template-columns: 1fr; } }

/* ---------- custom ---------- */
.custom { background: linear-gradient(160deg, var(--blush), var(--cream) 60%, var(--sage)); }
.custom-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 5vw, 72px); align-items: center; }
.custom-copy h2 { font-size: clamp(2rem, 4vw, 3rem); }
.custom-copy > p { color: var(--ink-soft); }
.ticks { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.ticks li { position: relative; padding-left: 30px; }
.ticks li::before {
  content: ""; position: absolute; left: 0; top: .35em; width: 18px; height: 18px; border-radius: 50%;
  background: var(--plum) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6 12.5l4 4 8-9' fill='none' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center / 12px no-repeat;
}
.custom-form { background: var(--white); border-radius: 24px; padding: clamp(22px, 3.5vw, 36px); box-shadow: var(--shadow); display: grid; gap: 14px; }
.field { display: grid; gap: 6px; }
.field > span, .reply-pref legend { font-size: .82rem; font-weight: 500; color: var(--ink-soft); letter-spacing: .02em; }
.field input, .field select, .field textarea {
  width: 100%; border: 1px solid var(--line); border-radius: var(--radius-sm); padding: .8em 1em; background: var(--ivory);
  transition: border-color .2s, box-shadow .2s; outline: none;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(184, 137, 59, .15); }
.field textarea { resize: vertical; min-height: 90px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.reply-pref { border: 0; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px 18px; align-items: center; }
.reply-pref legend { float: left; width: 100%; margin-bottom: 6px; }
.reply-pref label { display: inline-flex; align-items: center; gap: 8px; font-size: .95rem; cursor: pointer; }
.reply-pref input { accent-color: var(--plum); width: 18px; height: 18px; }
.form-error { color: #b3261e; font-size: .88rem; margin: 0; }
.form-actions { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 4px; }
.form-actions .btn { flex: 1 1 180px; }
@media (max-width: 860px) { .custom-inner { grid-template-columns: 1fr; } }
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }

/* ---------- about ---------- */
.about-inner { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(28px, 6vw, 80px); align-items: center; }
.about-art { position: relative; }
.about-art img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; border-radius: 999px 999px 24px 24px; box-shadow: var(--shadow); }
.about-art::before {
  content: ""; position: absolute; inset: 24px -24px -24px 24px; z-index: -1;
  border: 1.5px solid var(--gold-soft); border-radius: 999px 999px 24px 24px;
}
.about-copy h2 { font-size: clamp(2rem, 4vw, 3rem); }
.about-copy p { color: var(--ink-soft); }
.signature { font-family: var(--font-display); font-style: italic; font-size: 1.6rem; color: var(--plum) !important; }
@media (max-width: 860px) {
  .about-inner { grid-template-columns: 1fr; }
  .about-art { max-width: 360px; margin: 0 auto 16px; width: 80%; }
}

/* ---------- reviews ---------- */
.love { background: var(--cream); }
.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review { background: var(--white); border-radius: var(--radius); padding: 30px 28px; box-shadow: var(--shadow-sm); position: relative; margin: 0; }
.review::before { content: "\201C"; font-family: var(--font-display); font-size: 4.5rem; line-height: 1; color: var(--rose); position: absolute; top: 10px; right: 22px; }
.stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 10px; }
.review blockquote { margin: 0 0 16px; font-family: var(--font-display); font-size: 1.25rem; line-height: 1.4; font-style: italic; color: var(--ink); }
.review figcaption { font-size: .88rem; color: var(--muted); }
.review figcaption strong { color: var(--ink); font-weight: 500; }
@media (max-width: 900px) {
  .reviews { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: min(85%, 340px); overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 12px; }
  .review { scroll-snap-align: start; }
}

/* ---------- faq ---------- */
.faq-inner { max-width: 820px; }
.faq-list { display: grid; gap: 12px; }
.faq details { background: var(--white); border: 1px solid var(--line); border-radius: var(--radius-sm); transition: box-shadow .3s; }
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  list-style: none; cursor: pointer; padding: 18px 56px 18px 22px; position: relative;
  font-weight: 500; font-size: 1.02rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 12px; height: 12px; margin-top: -8px;
  border-right: 1.8px solid var(--plum); border-bottom: 1.8px solid var(--plum); transform: rotate(45deg);
  transition: transform .3s var(--ease), margin .3s;
}
.faq details[open] summary::after { transform: rotate(225deg); margin-top: -2px; }
.faq details p { padding: 0 22px 20px; margin: 0; color: var(--ink-soft); }
.faq details a { color: var(--plum); }

/* ---------- join ---------- */
.join { padding: 0 0 clamp(64px, 9vw, 112px); }
.join-inner {
  text-align: center; border-radius: 32px; padding: clamp(40px, 6vw, 72px) 24px; color: var(--white);
  background:
    radial-gradient(600px 300px at 90% 0%, rgba(233, 214, 174, .25), transparent 60%),
    linear-gradient(135deg, var(--plum), var(--plum-deep));
}
.join-inner h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); color: var(--white); }
.join-inner p { opacity: .85; max-width: 520px; margin: 0 auto 26px; }
.join-ctas { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; }
.btn-light { background: var(--white); color: var(--plum); }
.btn-light:hover { background: var(--gold-soft); }

/* ---------- footer ---------- */
.site-footer { background: #22161a; color: #d9cbc4; padding: 64px 0 24px; }
.footer-inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 32px; }
.site-footer h4 { font-family: var(--font-body); font-size: .78rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); margin-bottom: 16px; font-weight: 500; }
.site-footer a { display: block; text-decoration: none; padding: 4px 0; color: #d9cbc4; transition: color .2s; cursor: pointer; }
.site-footer a:hover { color: var(--white); }
.brand-light .brand-text { color: var(--white); }
.brand-light .brand-text em { color: var(--gold-soft); }
.footer-tag { margin: 14px 0 18px; font-size: .95rem; opacity: .8; }
.socials { display: flex; gap: 10px; }
.socials a { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 50%; border: 1px solid rgba(255, 255, 255, .18); padding: 0; }
.socials a:hover { background: rgba(255, 255, 255, .08); }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); margin-top: 40px; padding-top: 20px; font-size: .85rem; opacity: .7; }
.footer-bottom p { margin: 0; }
@media (max-width: 700px) { .footer-inner { grid-template-columns: 1fr 1fr; } .footer-inner > div:first-child { grid-column: 1 / -1; } }

/* ---------- floating WhatsApp ---------- */
.wa-float {
  position: fixed; right: 18px; bottom: calc(18px + env(safe-area-inset-bottom, 0px)); z-index: 40; width: 58px; height: 58px; border-radius: 50%;
  background: var(--wa); color: var(--white); display: grid; place-items: center;
  box-shadow: 0 12px 28px -8px rgba(31, 168, 85, .7); transition: transform .3s var(--ease);
}
.wa-float svg { width: 30px; height: 30px; }
.wa-float:hover { transform: scale(1.08); }
.wa-float::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%; border: 2px solid var(--wa);
  animation: ping 2.4s ease-out infinite;
}
@keyframes ping { 0% { transform: scale(1); opacity: .7; } 80%, 100% { transform: scale(1.6); opacity: 0; } }

/* ---------- product modal ---------- */
.modal {
  width: min(1000px, 100% - 32px); max-height: min(92vh, 900px); padding: 0; border: 0; border-radius: 24px;
  background: var(--white); color: var(--ink); box-shadow: 0 30px 80px -20px rgba(30, 10, 10, .5); overflow: hidden;
}
.modal::backdrop { background: rgba(34, 22, 26, .55); backdrop-filter: blur(4px); }
.modal[open] { animation: modalIn .4s var(--ease); }
@keyframes modalIn { from { opacity: 0; transform: translateY(20px) scale(.98); } }
.modal-close { position: absolute; top: 12px; right: 12px; z-index: 3; background: rgba(255, 255, 255, .9); box-shadow: var(--shadow-sm); }
.pm { display: grid; grid-template-columns: 1.05fr 1fr; max-height: min(92vh, 900px); }
.pm-gallery { background: var(--cream); display: flex; flex-direction: column; min-height: 0; }
.pm-main { flex: 1; min-height: 0; aspect-ratio: 4 / 5; }
.pm-main img { width: 100%; height: 100%; object-fit: cover; }
.pm-thumbs { display: flex; gap: 8px; padding: 10px; overflow-x: auto; background: var(--white); }
.pm-thumbs button { width: 64px; height: 64px; flex: none; padding: 0; border: 2px solid transparent; border-radius: 10px; overflow: hidden; background: var(--cream); }
.pm-thumbs button[aria-current="true"] { border-color: var(--plum); }
.pm-thumbs img { width: 100%; height: 100%; object-fit: cover; }
.pm-info { padding: clamp(24px, 3.5vw, 40px); overflow-y: auto; display: flex; flex-direction: column; }
.pm-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); margin-bottom: .2em; padding-right: 36px; }
.pm-code { display: inline-block; font-size: .8rem; color: var(--muted); background: var(--ivory); border: 1px dashed var(--line); padding: .2em .7em; border-radius: 6px; margin-bottom: 14px; }
.pm-price { font-size: 1.5rem; font-weight: 600; color: var(--plum); margin-bottom: 14px; }
.pm-price .price-ask { font-size: 1rem; }
.pm-desc { color: var(--ink-soft); }
.pm-details { padding: 0; margin: 0 0 18px; list-style: none; display: grid; gap: 6px; font-size: .93rem; }
.pm-details li { padding-left: 20px; position: relative; }
.pm-details li::before { content: "✦"; position: absolute; left: 0; color: var(--gold); font-size: .75rem; top: .2em; }
.pm-stock { font-size: .88rem; margin-bottom: 18px; display: inline-flex; align-items: center; gap: 8px; }
.pm-stock::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--wa); }
.pm-stock.out::before { background: #b3261e; }
.pm-enquire { border-top: 1px solid var(--line); padding-top: 18px; margin-top: auto; display: grid; gap: 12px; }
.pm-enquire .field-row { grid-template-columns: 1fr; }
.pm-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pm-actions .btn-wa { grid-column: 1 / -1; padding: 1em; font-size: 1rem; }
@media (max-width: 760px) {
  .modal { width: 100%; max-width: 100%; max-height: 94vh; margin: auto 0 0; border-radius: 24px 24px 0 0; }
  .modal[open] { animation: sheetIn .4s var(--ease); }
  .pm { grid-template-columns: 1fr; overflow-y: auto; max-height: 94vh; }
  .pm-main { aspect-ratio: 1 / 1; flex: none; }
  .pm-info { overflow: visible; }
}
@keyframes sheetIn { from { transform: translateY(40px); opacity: 0; } }

/* ---------- drawer ---------- */
.drawer-backdrop { position: fixed; inset: 0; background: rgba(34, 22, 26, .45); z-index: 60; animation: fade .3s; }
@keyframes fade { from { opacity: 0; } }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 61; width: min(420px, 100%);
  background: var(--white); display: flex; flex-direction: column; box-shadow: var(--shadow);
  transform: translateX(100%); transition: transform .4s var(--ease); visibility: hidden;
}
.drawer.open { transform: none; visibility: visible; }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { margin: 0; font-size: 1.6rem; }
.drawer-body { flex: 1; overflow-y: auto; padding: 16px 20px; }
.drawer-foot { padding: 16px 20px 20px; border-top: 1px solid var(--line); display: grid; gap: 12px; background: var(--ivory); }
.bag-item { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.bag-item img { width: 64px; height: 64px; border-radius: 10px; object-fit: cover; background: var(--cream); }
.bag-item h4 { font-family: var(--font-body); font-size: .95rem; font-weight: 500; margin: 0; }
.bag-item p { margin: 0; font-size: .8rem; color: var(--muted); }
.bag-empty { text-align: center; color: var(--muted); padding: 48px 12px; }
.bag-empty .ico { width: 48px; height: 48px; color: var(--rose); margin: 0 auto 12px; }
.link-btn { border: 0; background: none; color: var(--muted); font-size: .85rem; text-decoration: underline; padding: 4px; }
.link-btn:hover { color: var(--plum); }

/* ---------- toast ---------- */
.toast {
  position: fixed; left: 50%; bottom: calc(24px + env(safe-area-inset-bottom, 0px)); z-index: 100; transform: translate(-50%, 30px);
  background: var(--ink); color: var(--white); padding: .8em 1.4em; border-radius: 999px; font-size: .92rem;
  opacity: 0; pointer-events: none; transition: all .35s var(--ease); max-width: calc(100% - 32px); text-align: center;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ---------- reveal ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.in { opacity: 1; transform: none; }

/* ---------- today's special ---------- */
.today {
  padding: clamp(48px, 7vw, 84px) 0;
  background:
    radial-gradient(700px 360px at 100% 0%, rgba(233, 214, 174, .55), transparent 60%),
    linear-gradient(180deg, var(--blush), var(--ivory));
}
.today-head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 12px 32px; margin-bottom: 28px; }
.today-head h2 { font-size: clamp(2.1rem, 4.4vw, 3.2rem); margin-bottom: .15em; }
.today-date { margin: 0; color: var(--ink-soft); font-size: .95rem; }
.today-note { max-width: 380px; margin: 0; color: var(--ink-soft); font-size: .95rem; }
.live-dot { display: inline-block; width: 8px; height: 8px; border-radius: 50%; background: #d94a5a; margin-right: 6px; vertical-align: 1px; animation: live 1.8s infinite; }
@keyframes live { 0% { box-shadow: 0 0 0 0 rgba(217, 74, 90, .6); } 70%, 100% { box-shadow: 0 0 0 8px rgba(217, 74, 90, 0); } }
.today .card { border-color: rgba(107, 45, 60, .12); }
.card-msg {
  font-size: .88rem; color: var(--ink-soft); margin: 0 0 10px; white-space: pre-line;
  display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden;
}
.pm-desc { white-space: pre-line; }
.nav .nav-today { color: var(--plum); font-weight: 500; }
@media (max-width: 560px) {
  /* one swipeable row on phones */
  .today-grid { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 72%; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
  .today-grid .card { scroll-snap-align: start; }
  .today-grid:has(.card:only-child) { grid-auto-columns: 100%; }
  .card-msg { font-size: .8rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; scroll-behavior: auto !important; }
  .js .reveal { opacity: 1; transform: none; }
}
