/* ==========================================================================
   Rajasthani Threads — global stylesheet
   ========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600;9..144,700&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --cream:    #faf6ef;
  --cream-2:  #f3ecdf;
  --ink:      #221d18;
  --ink-soft: #5b524a;
  --line:     #e6ddcd;
  --indigo:   #cb8e1e;
  --indigo-d: #a9720f;
  --terra:    #c75146;
  --mustard:  #d9a13b;
  --sage:     #7a8b6f;
  --gold:     #b8893b;
  --white:    #ffffff;
  --shadow:   0 10px 30px rgba(34,29,24,.10);
  --shadow-sm:0 4px 14px rgba(34,29,24,.08);
  --radius:   14px;
  --radius-sm: 9px;
  --maxw: 1280px;
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Jost', system-ui, -apple-system, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17.5px; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
@media (max-width: 600px) { html { font-size: 15px; } }
@media (max-width: 380px) { html { font-size: 14.25px; } }
body.no-scroll { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
h1,h2,h3,h4 { font-family: var(--serif); font-weight: 600; line-height: 1.15; margin: 0; letter-spacing: -.01em; }
.muted { color: var(--ink-soft); }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

/* ---------- buttons ---------------------------------------------------- */
.btn {
  font-family: var(--sans); font-weight: 600; font-size: .76rem;
  padding: 14px 28px; border-radius: 4px; border: 1.5px solid transparent;
  cursor: pointer; transition: .18s ease; display: inline-flex; align-items: center;
  justify-content: center; gap: 8px; letter-spacing: .14em; text-transform: uppercase; white-space: nowrap;
}
.btn-primary { background: var(--indigo); color: #fff; }
.btn-primary:hover { background: var(--indigo-d); transform: translateY(-1px); }
.btn-ghost { background: transparent; border-color: var(--ink); color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-terra { background: var(--terra); color: #fff; }
.btn-terra:hover { filter: brightness(.93); }
.btn-block { width: 100%; }
.btn-lg { padding: 15px 30px; font-size: .82rem; }
.link-btn { background: none; border: 0; color: var(--ink-soft); cursor: pointer; text-decoration: underline; font-size: .82rem; padding: 0; }
.link-btn:hover { color: var(--terra); }

/* ---------- announcement bar / header --------------------------------- */
#site-header { position: relative; z-index: 60; background: var(--cream); transition: box-shadow .2s; }
#site-header.scrolled { box-shadow: none; }
.announce {
  background: var(--indigo); color: #fff; font-size: .78rem; letter-spacing: .03em;
  display: flex; justify-content: center; gap: 48px; padding: 8px 16px; overflow: hidden;
}
.announce span:nth-child(n+2) { display: none; }
@media (min-width: 760px) { .announce span:nth-child(n+2) { display: inline; } }
.announce strong { color: var(--mustard); }

/* ---- header: icons (left) · LOGO dead-centre · icons (right) ---- */
.header-main {
  max-width: var(--maxw); margin: 0 auto; padding: 10px 24px;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 14px;
}
.header-side { display: flex; align-items: center; gap: 2px; }
.header-left { justify-self: start; }
.header-actions { justify-self: end; }
.brand { display: flex; align-items: center; gap: 10px; justify-self: center; }
/* logo mark stacked over the wordmark, both centred — sizes are tuned separately
   so the wordmark can be scaled without touching the mark */
.brand.has-logo { flex-direction: column; justify-content: center; gap: 6px; min-width: 0; }
.brand-logo { width: auto; max-width: 100%; object-fit: contain; display: block; transition: height .2s; }
/* the wordmark is a very wide, short image (~13:1), so its height reads much
   smaller than the mark's — tune .brand-logo-text height to taste */
.brand-logo-mark { height: 108px; }
.brand-logo-text { height: 18px; }
@media (min-width: 1080px) {
  .brand-logo-mark { height: 122px; }
  .brand-logo-text { height: 21px; }
}
.brand-mark {
  width: 40px; height: 40px; border-radius: 50%; background: var(--terra); color: #fff;
  display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 1.05rem;
  letter-spacing: .02em; flex: none;
}
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 1.32rem; line-height: 1; color: var(--ink); }
.brand-name span { color: var(--terra); }
/* category bar — its own full-width row below the logo/actions, so the big logo
   and the categories never compete for space */
.header-nav { display: none; border-top: 1px solid var(--line); background: var(--cream); }
@media (min-width: 1080px) { .header-nav { display: block; } }
.primary-nav { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 2px;
  max-width: var(--maxw); margin: 0 auto; padding: 11px 24px; }
/* inline-flex so a link sits identically whether it is a direct child of the nav
   or nested inside a .nav-item drop-down wrapper */
.nav-link {
  display: inline-flex; align-items: center;
  font-size: .82rem; padding: 6px 14px; color: var(--ink-soft);
  font-weight: 500; transition: color .15s; white-space: nowrap;
}
.nav-link:hover { color: var(--indigo); }

/* sub-category drop-down (e.g. Suits › Cotton, Gajji Silk, …) */
.nav-item.has-sub { position: relative; display: inline-flex; align-items: center; }
.nav-sub {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(6px);
  min-width: 190px; padding: 6px; background: #fff; border: 1px solid var(--line);
  border-radius: 10px; box-shadow: 0 14px 34px rgba(60, 30, 20, .13);
  display: flex; flex-direction: column; gap: 1px; z-index: 60;
  opacity: 0; visibility: hidden; transition: opacity .16s, transform .16s;
}
.nav-item.has-sub:hover .nav-sub, .nav-item.has-sub:focus-within .nav-sub {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-sub a {
  padding: 8px 12px; border-radius: 7px; font-size: .82rem; color: var(--ink-soft);
  white-space: nowrap; transition: background .14s, color .14s;
}
.nav-sub a:hover { background: var(--cream); color: var(--indigo); }
.mobile-nav .mobile-sub { padding-left: 30px; font-size: .88rem; opacity: .82; }

.header-actions { display: flex; align-items: center; gap: 2px; justify-self: end; }
.menu-toggle { justify-self: start; }
.icon-btn {
  width: 44px; height: 44px; border: 0; background: transparent; border-radius: 50%;
  font-size: 1.15rem; cursor: pointer; display: grid; place-items: center; color: var(--ink);
  position: relative; transition: background .18s, color .18s, transform .18s;
}
.icon-btn svg { width: 22px; height: 22px; display: block; transition: stroke .18s; }
.icon-btn:hover { background: var(--cream-2); color: var(--indigo); }
.icon-btn:active { transform: scale(.92); }
.search-ic { display: inline-grid; place-items: center; color: var(--ink-soft); }
.search-ic svg { width: 20px; height: 20px; }
.menu-toggle { display: inline-grid; }
@media (min-width: 1080px) { .menu-toggle { display: none; } }
.badge {
  position: absolute; top: 3px; right: 3px; min-width: 17px; height: 17px; padding: 0 4px;
  background: var(--terra); color: #fff; font-size: .64rem; font-weight: 700; border-radius: 10px;
  display: none; place-items: center; font-family: var(--sans);
  box-shadow: 0 0 0 2px var(--cream);
}
.badge.on { display: grid; }

/* ---------- hero ------------------------------------------------------- */
.hero { position: relative; }
.hero-slides { position: relative; overflow: hidden; border-radius: 0; }
/* Banner artwork is 2:1 (upload 2400x1200), and the frame holds that exact
   ratio — so the image spans the full width with nothing letterboxed above or
   below it. max-height only bites past ~1640px wide, where it trims a little
   off the top and bottom, so keep the subject clear of those edges. */
.hero-slide {
  display: none; width: 100%; aspect-ratio: 2 / 1; max-height: 820px;
  align-items: center; justify-content: center;
  position: relative; overflow: hidden; background: var(--ink);
}
.hero-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center;
}
.hero-slide.active { display: flex; animation: fade .7s ease; }
@keyframes fade { from { opacity: .3; } to { opacity: 1; } }
.hero-slide::after { content: ""; position: absolute; inset: 0; background: linear-gradient(rgba(40,20,28,.34), rgba(40,20,28,.42)); }
.hero-inner { position: relative; z-index: 2; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; width: 100%; text-align: center; }
.hero-copy { max-width: 760px; margin: 0 auto; color: #fff; overflow-wrap: break-word; }
.hero-eyebrow { text-transform: uppercase; letter-spacing: .22em; font-size: .74rem; color: var(--mustard); font-weight: 600; }
.hero-copy h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); margin: 14px 0 16px; color: #fff; }
.hero-copy p { font-size: 1.08rem; opacity: .92; margin-bottom: 26px; }
.hero-dots { display: flex; gap: 8px; justify-content: center; padding: 16px; }
.hero-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); border: 0; cursor: pointer; }
.hero-dot.active { background: var(--terra); width: 26px; border-radius: 6px; }

/* ---------- colour picker (product page) ------------------------------ */
/* One image per colour, so the shopper picks a shade before adding to cart. */
.color-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 0 0 20px; }
.color-chip {
  font-family: var(--sans); font-size: .82rem; font-weight: 500; color: var(--ink);
  padding: 9px 18px; border-radius: 100px; cursor: pointer;
  background: var(--white); border: 1.5px solid var(--line); transition: .18s;
}
.color-chip:hover { border-color: var(--terra); color: var(--terra); }
.color-chip.active { background: var(--ink); border-color: var(--ink); color: var(--cream); }
.chosen-color { font-weight: 600; color: var(--ink); text-transform: none; letter-spacing: 0; }
.req-star { color: var(--terra); }
.color-error { color: var(--terra); font-size: .84rem; margin: -12px 0 18px; font-weight: 500; }
.line-color { font-size: .82rem; }

/* ---------- marquee / trust bar --------------------------------------- */
.trust-bar { background: var(--ink); color: #f3ecdf; }
.trust-bar .container { display: flex; flex-wrap: wrap; justify-content: space-around; gap: 14px; padding: 16px 24px; }
.trust-item { font-size: .82rem; letter-spacing: .04em; display: flex; align-items: center; gap: 8px; }
.trust-item b { color: var(--mustard); font-family: var(--serif); }

/* ---------- section scaffolding --------------------------------------- */
section.block { padding: 84px 0; }
.section-head { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-head .eyebrow { text-transform: uppercase; letter-spacing: .24em; font-size: .72rem; color: var(--terra); font-weight: 600; }
.section-head h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin: 14px 0 10px; }
.section-head p { color: var(--ink-soft); margin: 0; }
.section-head.left { text-align: left; margin-left: 0; }

/* ---------- category grid (full-bleed, big images) -------------------- */
.cat-grid-wrap { width: 100%; padding: 0 clamp(14px, 3vw, 40px); }
/* mobile-first: ONE category per row on phones */
.cat-grid { display: grid; grid-template-columns: 1fr; gap: 22px; max-width: 1720px; margin: 0 auto; }
@media (min-width: 640px)  { .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
/* four categories per row on desktop; the rest wrap onto the next row */
@media (min-width: 1080px) { .cat-grid { grid-template-columns: repeat(4, 1fr); gap: 26px; max-width: 1400px; } }
/* Plush Abode style — big image on top, name + description below */
.cat-card { display: block; text-decoration: none; color: inherit; }
.cat-card-media { position: relative; aspect-ratio: 3/4; border-radius: 14px; overflow: hidden;
  background: var(--cream-2); box-shadow: 0 10px 28px rgba(125,45,73,.08); }
/* crop from the top so a model's face survives when a tall photo is cropped to 3:4 */
.cat-card-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; transition: transform .7s ease; }
.cat-card:hover .cat-card-media img { transform: scale(1.05); }
.cat-card-body { padding: 18px 6px 0; text-align: center; }
.cat-card-body h3 { font-family: var(--display); font-size: 1.5rem; font-weight: 600; color: var(--ink); line-height: 1.15; }
.cat-card-body p { font-size: .84rem; color: var(--ink-soft); margin: 6px 0 10px; line-height: 1.5; }
.cat-card-cta { display: inline-block; font-size: .69rem; font-weight: 600; text-transform: uppercase;
  letter-spacing: .16em; color: var(--royal); border-bottom: 1.5px solid currentColor; padding-bottom: 2px; transition: color .2s; }
.cat-card:hover .cat-card-cta { color: var(--terra); }
@media (max-width: 640px) { .cat-card-body h3 { font-size: 1.75rem; } .cat-card-body p { font-size: 1rem; } }

/* ---------- product grid / cards -------------------------------------- */
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
@media (min-width: 680px)  { .product-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; } }
@media (min-width: 980px)  { .product-grid { grid-template-columns: repeat(3, 1fr); gap: 34px; } }
.product-card { position: relative; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: .2s; display: flex; flex-direction: column; }
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card-media { position: relative; display: block; aspect-ratio: 4/5; overflow: hidden; background: var(--cream-2); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: .4s; }
.product-card:hover .card-media img { transform: scale(1.04); }
/* in-card image slider */
.card-slides { position: absolute; inset: 0; }
.card-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center top; opacity: 0; transition: opacity .5s ease, transform .5s ease; }
.card-slide.active { opacity: 1; }
.card-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.88); color: var(--ink); font-size: 1.3rem; line-height: 1; cursor: pointer;
  display: grid; place-items: center; opacity: 0; transition: opacity .2s, background .2s; z-index: 3; box-shadow: var(--shadow-sm); }
.card-prev { left: 10px; } .card-next { right: 10px; }
.product-card:hover .card-arrow { opacity: 1; }
.card-arrow:hover { background: #fff; }
.card-dots { position: absolute; bottom: 12px; left: 50%; transform: translateX(-50%); display: flex; gap: 6px; z-index: 3; transition: opacity .2s; }
.card-dot { width: 6px; height: 6px; border-radius: 50%; background: rgba(255,255,255,.6); cursor: pointer; transition: .25s; box-shadow: 0 0 3px rgba(0,0,0,.25); }
.card-dot.active { background: #fff; width: 18px; border-radius: 3px; }
.product-card:hover .card-dots { opacity: 0; }   /* arrows take over on hover */
@media (hover: none) { .card-arrow { opacity: .92; } .product-card:hover .card-dots { opacity: 1; } }
.card-tag { position: absolute; top: 12px; left: 12px; z-index: 2; font-size: .66rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; padding: 4px 9px; border-radius: 6px; color: #fff; }
.tag-best { background: var(--terra); }
.tag-new { background: var(--sage); }
.card-discount { position: absolute; bottom: 12px; left: 12px; z-index: 2; background: rgba(34,29,24,.82); color: #fff; font-size: .68rem; font-weight: 600; padding: 4px 8px; border-radius: 6px; }
.wish-btn {
  position: absolute; top: 10px; right: 10px; z-index: 3; width: 36px; height: 36px; border-radius: 50%;
  border: 0; background: rgba(255,255,255,.92); cursor: pointer; font-size: 1.05rem; color: #b6ada0;
  display: grid; place-items: center; transition: .15s; box-shadow: var(--shadow-sm);
}
.wish-btn:hover { transform: scale(1.1); }
.wish-btn.active { color: var(--terra); }
.card-body { padding: 14px 14px 16px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.card-cat { font-size: .68rem; text-transform: uppercase; letter-spacing: .08em; color: var(--gold); margin: 0; font-weight: 600; }
.card-subcat { color: var(--ink-soft); font-weight: 500; }
.product-card { cursor: pointer; }
.card-title { font-family: var(--serif); font-size: .98rem; font-weight: 500; line-height: 1.3; color: var(--ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 2.5em; }
.card-title:hover { color: var(--indigo); }
.card-rating { font-size: .78rem; color: var(--mustard); }
.card-rating span { color: var(--ink-soft); }
.card-price { display: flex; align-items: baseline; gap: 8px; margin-top: 2px; }
.card-price strong { font-size: 1.05rem; color: var(--ink); }
.mrp { text-decoration: line-through; color: #b6ada0; font-size: .82rem; }
/* View (ghost) + Add to Cart (primary) sit side by side at the base of the card */
.card-actions { display: flex; gap: 8px; margin-top: auto; }
.card-actions .btn { padding: 12px 10px; font-size: .68rem; white-space: nowrap; }
.card-actions .card-view { flex: 0 0 30%; }
.card-actions .card-add { flex: 1; margin-top: 0; }
.card-add { margin-top: auto; }

/* horizontal scroller variant */
.rail-wrap { width: 100%; padding: 0 clamp(14px, 3vw, 40px); }
/* rail heading aligns to the same left edge as the rail below it */
.rail-wrap > .rail-head { max-width: 1720px; margin: 0 auto 22px; }
.product-rail { display: grid; grid-auto-flow: column; grid-auto-columns: 80%; gap: 22px; overflow-x: auto;
  scroll-snap-type: x proximity; padding: 6px 0 16px; max-width: 1720px; margin: 0 auto;
  scrollbar-width: none; }
.product-rail::-webkit-scrollbar { display: none; }
.product-rail .product-card { scroll-snap-align: start; }
/* home-page rail cards are a touch more compact than the collection grid */
@media (min-width: 680px) { .product-rail { grid-auto-columns: 34%; } }
@media (min-width: 1024px) { .product-rail { grid-auto-columns: 21%; } }
@media (min-width: 1400px) { .product-rail { grid-auto-columns: 18%; } }
.product-rail .card-body { padding: 12px 14px 14px; gap: 5px; }
.product-rail .card-title { font-size: .9rem; }
.product-rail .card-price strong { font-size: 1rem; }

/* ---------- feature split --------------------------------------------- */
.split { display: grid; gap: 30px; align-items: center; grid-template-columns: 1fr; }
@media (min-width: 880px) { .split { grid-template-columns: 1fr 1fr; } }
.split.reverse .split-media { order: -1; }
@media (min-width: 880px) { .split.reverse .split-media { order: 1; } }
.split-media { border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-copy h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-bottom: 14px; }
.split-copy p { color: var(--ink-soft); margin-bottom: 18px; }

/* ---------- value props ----------------------------------------------- */
.values { background: var(--cream-2); }

/* ---------- craft band ------------------------------------------------- */
/* Full-bleed warm band so the craftsmanship story reads as its own chapter
   rather than a continuation of the category grid above it. */
.craft-band {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fdeef0 0%, #f9e4e8 100%);
  border-top: 1px solid rgba(199, 81, 70, .16);
  border-bottom: 1px solid rgba(199, 81, 70, .16);
}
/* the same resist-dot motif that runs through the illustration */
.craft-band::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(199, 81, 70, .11) 2px, transparent 2px);
  background-size: 26px 26px;
}
.craft-band > .container { position: relative; z-index: 1; }
.craft-band .split-media { box-shadow: 0 28px 60px -30px rgba(122, 45, 30, .5); }
.craft-band .eyebrow { color: var(--terra); }
/* flex + center so any number of value props (4, 5, …) stays centered rather
   than left-aligned in a fixed 5-column grid */
.value-grid { display: flex; flex-wrap: wrap; justify-content: center; gap: 20px 28px; }
.value-card { flex: 0 1 150px; text-align: center; }
@media (min-width: 760px) { .value-card { flex-basis: 190px; } }
.value-icon { font-size: 2rem; }
.value-card h4 { font-size: 1rem; margin: 10px 0 6px; }
.value-card p { font-size: .82rem; color: var(--ink-soft); margin: 0; }

/* ---------- testimonials ---------------------------------------------- */
.review-grid { display: grid; grid-template-columns: 1fr; gap: 18px; }
@media (min-width: 680px) { .review-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .review-grid { grid-template-columns: repeat(3, 1fr); } }
.review-card { background: var(--white); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.review-stars { color: var(--mustard); font-size: .95rem; }
.review-card p { margin: 10px 0 0; color: var(--ink); }
/* prominent customer photo at the top of each testimonial */
.review-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.review-avatar { width: 68px; height: 68px; border-radius: 50%; background: var(--indigo); color: #fff;
  display: grid; place-items: center; font-weight: 600; font-family: var(--serif); font-size: 1.4rem;
  overflow: hidden; flex: none; box-shadow: 0 0 0 3px var(--cream), 0 0 0 4px var(--blush); }
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-who b { display: block; font-size: .98rem; }
.review-who small { color: var(--ink-soft); font-size: .8rem; }
/* keep legacy author row (product page) working too */
.review-author { display: flex; align-items: center; gap: 12px; margin-top: 16px; }
.review-author .review-avatar { width: 52px; height: 52px; font-size: 1.1rem; }
.review-author b { display: block; font-size: .9rem; }
.review-author small { color: var(--ink-soft); }

/* ---------- newsletter ------------------------------------------------- */
.newsletter { background: var(--indigo); color: #fff; text-align: center; }
.newsletter h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.newsletter p { opacity: .85; margin: 10px 0 22px; }
.newsletter form { display: flex; gap: 10px; max-width: 480px; margin: 0 auto; flex-wrap: wrap; }
.newsletter input { flex: 1; min-width: 220px; padding: 14px 18px; border-radius: 100px; border: 0; font-family: var(--sans); font-size: .95rem; }

/* ---------- footer ----------------------------------------------------- */
#site-footer { background: var(--ink); color: #cabfb1; margin-top: 40px; }
.footer-grid { max-width: var(--maxw); margin: 0 auto; padding: 56px 24px 32px; display: grid; gap: 32px; grid-template-columns: 1fr; }
@media (min-width: 680px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1fr 1.2fr; } }
.footer-col h4 { color: #fff; font-size: 1rem; margin-bottom: 14px; }
.footer-col a { display: block; color: #cabfb1; font-size: .88rem; padding: 4px 0; transition: .15s; }
.footer-col a:hover { color: var(--mustard); }
.footer-brand p { font-size: .88rem; line-height: 1.7; margin: 14px 0; }
.footer-brand .brand-name { color: #fff; }
.socials { display: flex; gap: 14px; }
.socials a { display: inline; font-size: .82rem; text-decoration: underline; }
.footer-contact p { font-size: .88rem; margin: 6px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding: 18px 24px; max-width: var(--maxw); margin: 0 auto; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; font-size: .78rem; color: #9b9183; }

/* ---------- drawers / scrim / modals ---------------------------------- */
.scrim { position: fixed; inset: 0; background: rgba(20,17,14,.5); opacity: 0; visibility: hidden; transition: .25s; z-index: 80; }
.scrim.show { opacity: 1; visibility: visible; }
.drawer { position: fixed; top: 0; right: 0; height: 100%; width: min(420px, 92vw); background: var(--cream); z-index: 90; transform: translateX(100%); transition: transform .3s ease; display: flex; flex-direction: column; box-shadow: var(--shadow); }
.drawer.open { transform: translateX(0); }
.mobile-drawer { left: 0; right: auto; transform: translateX(-100%); }
.mobile-drawer.open { transform: translateX(0); }
.drawer-head { display: flex; align-items: center; justify-content: space-between; padding: 18px 20px; border-bottom: 1px solid var(--line); }
.drawer-head h3 { font-size: 1.2rem; }
.drawer-body { flex: 1; overflow-y: auto; padding: 12px 20px; }
.drawer-foot { border-top: 1px solid var(--line); padding: 18px 20px; }
.mobile-nav { display: flex; flex-direction: column; padding: 8px 0; overflow-y: auto; }
.mobile-nav a { padding: 13px 20px; border-bottom: 1px solid var(--line); font-weight: 500; }
.mobile-nav a:hover { background: var(--cream-2); color: var(--indigo); }

.cart-line { display: grid; grid-template-columns: 64px 1fr auto; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--line); }
.cart-line img { width: 64px; height: 80px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-line-info a { font-family: var(--serif); font-size: .9rem; font-weight: 500; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cart-line-info .muted { font-size: .78rem; margin: 2px 0 8px; }
.qty-row { display: inline-flex; align-items: center; gap: 12px; border: 1px solid var(--line); border-radius: 100px; padding: 3px 10px; background: #fff; }
.qty-btn { width: 22px; height: 22px; border: 0; background: none; cursor: pointer; font-size: 1rem; color: var(--ink); }
.cart-line-right { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
.cart-summary-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: .92rem; }
.cart-summary-row.muted { font-size: .82rem; }
.cart-summary-row + .btn { margin-top: 8px; }
.empty-state { text-align: center; padding: 50px 16px; color: var(--ink-soft); display: flex; flex-direction: column; gap: 16px; align-items: center; }

/* ---------- search modal ---------------------------------------------- */
.search-modal { position: fixed; inset: 0; z-index: 95; background: rgba(20,17,14,.45); opacity: 0; visibility: hidden; transition: .2s; display: flex; justify-content: center; align-items: flex-start; padding: 8vh 16px 16px; }
.search-modal.open { opacity: 1; visibility: visible; }
.search-box { background: var(--cream); width: min(620px, 100%); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.search-input-row { display: flex; align-items: center; gap: 10px; padding: 16px 18px; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
.search-input-row input { flex: 1; border: 0; background: none; font-family: var(--sans); font-size: 1rem; outline: none; }
.search-results { max-height: 56vh; overflow-y: auto; padding: 8px; }
.search-hint { color: var(--ink-soft); text-align: center; padding: 30px; font-size: .9rem; }
.search-result { display: flex; align-items: center; gap: 12px; padding: 10px; border-radius: var(--radius-sm); transition: .12s; }
.search-result:hover { background: var(--cream-2); }
.search-result img { width: 46px; height: 56px; object-fit: cover; border-radius: 6px; }
.search-result div { display: flex; flex-direction: column; }
.search-result span { font-size: .9rem; font-family: var(--serif); }
.search-result small { color: var(--terra); font-weight: 600; }

/* ---------- toasts ----------------------------------------------------- */
.toast-stack { position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%); z-index: 120; display: flex; flex-direction: column; gap: 10px; align-items: center; }
.toast { background: var(--ink); color: #fff; padding: 12px 20px; border-radius: 100px; font-size: .88rem; box-shadow: var(--shadow); opacity: 0; transform: translateY(12px); transition: .3s; }
.toast.show { opacity: 1; transform: translateY(0); }

/* ---------- breadcrumb / page header ---------------------------------- */
.crumb { font-size: .8rem; color: var(--ink-soft); padding: 18px 0 0; }
.crumb a:hover { color: var(--terra); }
.page-hero { background: var(--cream-2); padding: 40px 0; text-align: center; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); }
.page-hero p { color: var(--ink-soft); margin: 8px 0 0; }

/* ---------- collection layout ----------------------------------------- */
.collection-wrap { display: grid; grid-template-columns: 1fr; gap: 28px; padding: 30px 0 60px; }
@media (min-width: 940px) { .collection-wrap { grid-template-columns: 250px 1fr; } }
.filters { align-self: start; }
.filter-group { border-bottom: 1px solid var(--line); padding: 16px 0; }
.filter-group:first-child { padding-top: 0; }
.filter-group h4 { font-size: .92rem; margin-bottom: 12px; font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; }
.filter-opt { display: flex; align-items: center; gap: 9px; padding: 5px 0; font-size: .9rem; cursor: pointer; color: var(--ink-soft); }
.filter-opt:hover { color: var(--ink); }
.filter-opt input { accent-color: var(--indigo); width: 16px; height: 16px; }
.swatch { width: 15px; height: 15px; border-radius: 50%; border: 1px solid var(--line); display: inline-block; }
.collection-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.collection-toolbar .count { font-size: .88rem; color: var(--ink-soft); }
.collection-toolbar select { padding: 9px 14px; border-radius: 100px; border: 1px solid var(--line); font-family: var(--sans); background: #fff; font-size: .85rem; }
.filter-toggle { display: inline-flex; }
/* .filters[data-filters] out-specifies the global [hidden] rule so the
   sidebar always shows on desktop even though the markup has the hidden attr */
@media (min-width: 940px) { .filter-toggle { display: none; } .filters[data-filters] { display: block !important; } }
.no-results { text-align: center; padding: 60px 20px; color: var(--ink-soft); }
.active-filters { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 16px; }
.chip { background: var(--cream-2); border: 1px solid var(--line); border-radius: 100px; padding: 5px 12px; font-size: .8rem; display: inline-flex; gap: 6px; align-items: center; cursor: pointer; }
.chip:hover { border-color: var(--terra); color: var(--terra); }

/* ---------- product detail page --------------------------------------- */
.pdp { display: grid; grid-template-columns: 1fr; gap: 36px; padding: 24px 0 60px; }
@media (min-width: 900px) { .pdp { grid-template-columns: 1.05fr 1fr; } }
.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/5; background: var(--cream-2); box-shadow: var(--shadow-sm); }
/* slides are stacked and cross-faded by the auto-advancing slideshow */
.gallery-slide { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 0; transition: opacity .6s ease; pointer-events: none; }
.gallery-slide.active { opacity: 1; }
.gallery-dots { position: absolute; left: 0; right: 0; bottom: 14px; display: flex; justify-content: center; gap: 7px; z-index: 2; }
.gallery-dot { width: 8px; height: 8px; padding: 0; border: 0; border-radius: 50%; cursor: pointer;
  background: rgba(255, 255, 255, .55); box-shadow: 0 1px 3px rgba(0, 0, 0, .28); transition: background .2s, transform .2s; }
.gallery-dot.active { background: #fff; transform: scale(1.35); }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 12px; }
.gallery-thumbs img { width: 70px; height: 88px; object-fit: cover; border-radius: 8px; cursor: pointer; border: 2px solid transparent; opacity: .7; }
.gallery-thumbs img.active { border-color: var(--indigo); opacity: 1; }
.pdp-cat { font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--gold); font-weight: 600; }
.pdp h1 { font-size: clamp(1.6rem, 3vw, 2.2rem); margin: 8px 0 10px; }
.pdp-rating { color: var(--mustard); font-size: .92rem; margin-bottom: 16px; }
.pdp-rating a { color: var(--ink-soft); text-decoration: underline; margin-left: 6px; }
.pdp-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.pdp-price strong { font-size: 1.8rem; }
.pdp-price .mrp { font-size: 1.1rem; }
.pdp-price .save { color: var(--terra); font-weight: 600; font-size: .9rem; }
.tax-note { font-size: .8rem; color: var(--ink-soft); margin-bottom: 22px; }
.opt-label { font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .05em; margin-bottom: 10px; }
.size-opts { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 22px; }
.size-opt { padding: 9px 18px; border: 1.5px solid var(--line); border-radius: 100px; background: #fff; cursor: pointer; font-family: var(--sans); font-size: .88rem; transition: .15s; }
.size-opt:hover { border-color: var(--ink); }
.size-opt.active { border-color: var(--indigo); background: var(--indigo); color: #fff; }
.pdp-qty { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.pdp-actions { display: flex; gap: 12px; margin-bottom: 28px; }
.pdp-actions .btn { flex: 1; }
.pdp-wish { flex: none !important; width: 52px; }
.pdp-meta { border-top: 1px solid var(--line); padding-top: 22px; display: grid; gap: 12px; }
.pdp-meta-row { display: flex; gap: 10px; font-size: .9rem; }
.pdp-meta-row b { min-width: 110px; }
.accordion { border-top: 1px solid var(--line); margin-top: 24px; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head { width: 100%; text-align: left; background: none; border: 0; padding: 16px 0; font-family: var(--serif); font-size: 1.02rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--ink); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height .25s ease; }
.acc-body-inner { padding: 0 0 16px; color: var(--ink-soft); font-size: .92rem; }
.acc-item.open .acc-body { max-height: 360px; }
.acc-item.open .acc-head span { transform: rotate(45deg); }
.acc-head span { transition: .2s; }

/* ---------- cart page -------------------------------------------------- */
.cart-page { display: grid; grid-template-columns: 1fr; gap: 30px; padding: 30px 0 60px; }
@media (min-width: 900px) { .cart-page { grid-template-columns: 1.6fr 1fr; align-items: start; } }
.cart-table { display: flex; flex-direction: column; }
.cart-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 16px; padding: 20px 0; border-bottom: 1px solid var(--line); align-items: center; }
.cart-row img { width: 90px; height: 112px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-row h3 { font-size: 1rem; font-weight: 500; }
.cart-row .muted { font-size: .82rem; }
.summary-card { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.summary-card h3 { margin-bottom: 18px; }
/* saved-address chooser */
.addr-list { display: flex; flex-direction: column; gap: 10px; margin-top: 6px; }
.addr-card { display: flex; gap: 10px; align-items: flex-start; border: 1.5px solid var(--line); border-radius: 12px;
  padding: 12px 14px; cursor: pointer; transition: border-color .15s, background .15s; }
.addr-card:hover { border-color: var(--indigo); }
.addr-card.sel { border-color: var(--indigo); background: #fdf3f5; }
.addr-card input[type=radio] { margin-top: 3px; accent-color: var(--indigo); flex: none; }
.addr-card .addr-body b { font-size: .92rem; }
.addr-card .addr-body p { font-size: .82rem; margin: 3px 0 0; line-height: 1.4; }
.addr-card.new-card .addr-body b { color: var(--royal); }
.addr-def { font-size: .64rem; text-transform: uppercase; letter-spacing: .08em; background: var(--blush);
  color: var(--royal); padding: 2px 7px; border-radius: 100px; margin-left: 6px; font-weight: 700; vertical-align: middle; }
.save-addr-check { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: var(--ink-soft); margin-top: 10px; cursor: pointer; }
.save-addr-check input { accent-color: var(--indigo); }
.pay-step { background: var(--cream-2); border: 1px solid var(--line); border-radius: 12px; padding: 16px; margin-top: 6px; }
.pay-box { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.field [data-proof-file] { border: 1px dashed var(--line); border-radius: 10px; padding: 12px; width: 100%; background: #fff; font-size: .85rem; cursor: pointer; }
.summary-line { display: flex; justify-content: space-between; padding: 8px 0; font-size: .95rem; }
.summary-line.total { border-top: 1px solid var(--line); margin-top: 10px; padding-top: 16px; font-size: 1.15rem; font-weight: 600; font-family: var(--serif); }
.coupon-row { display: flex; gap: 8px; margin: 16px 0; }
.coupon-row input { flex: 1; padding: 11px 14px; border: 1px solid var(--line); border-radius: 100px; font-family: var(--sans); }

/* ---------- forms / about / contact ----------------------------------- */
.form-grid { display: grid; gap: 16px; }
/* the [hidden] attr must win over display:grid, else hidden panes overlap */
[hidden] { display: none !important; }

/* account dashboard */
.account-avatar { width: 60px; height: 60px; border-radius: 50%; background: linear-gradient(135deg, #d99aa8, #c27286);
  color: #fff; display: grid; place-items: center; font-family: var(--serif); font-weight: 700; font-size: 1.6rem; flex: none; }
.acc-orders { display: flex; flex-direction: column; gap: 10px; }
.acc-order { border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.acc-order.open { border-color: var(--indigo); box-shadow: 0 6px 18px rgba(194,114,134,.12); }
.acc-order-head { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  padding: 12px 16px; cursor: pointer; transition: background .15s; }
.acc-order-head:hover { background: var(--cream-2); }
.acc-chevron { color: var(--ink-soft); font-size: .9rem; }
.acc-order-detail { border-top: 1px solid var(--line); padding: 16px; background: var(--cream); }
.acc-detail { display: grid; grid-template-columns: 1.6fr 1fr; gap: 22px; }
@media (max-width: 640px) { .acc-detail { grid-template-columns: 1fr; } }
.acc-detail h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-soft); margin: 0 0 10px; }
.acc-detail-side h4:nth-of-type(2) { margin-top: 18px; }
.acct-item { display: grid; grid-template-columns: 56px 1fr auto; gap: 12px; align-items: center; padding: 10px 0; border-bottom: 1px solid var(--line); }
.acct-item:last-child { border-bottom: 0; }
.acct-item-thumb img { width: 56px; height: 70px; object-fit: cover; border-radius: 8px; }
.acct-item-name { font-family: var(--display); font-size: 1.05rem; font-weight: 600; color: var(--ink); display: block; }
.acct-item-name:hover { color: var(--indigo); }
.acct-item-info p { font-size: .8rem; margin: 2px 0 4px; }
.acct-item-link { font-size: .74rem; font-weight: 600; color: var(--royal); }
.acct-item-link:hover { color: var(--indigo); }
.acct-item-total { font-weight: 600; white-space: nowrap; }
.acc-order b { display: block; font-size: .95rem; }
.acc-order small { color: var(--ink-soft); font-size: .76rem; }
.acc-order-meta { display: flex; align-items: center; gap: 14px; font-size: .85rem; color: var(--ink-soft); }
.acc-order-meta .pill { background: var(--blush); color: var(--royal); padding: 3px 10px; border-radius: 100px; font-size: .72rem; font-weight: 600; text-transform: capitalize; }
/* live order-status colours in the account panel */
.acc-order-meta .pill.st-PENDING_PAYMENT { background: #fdeccd; color: #8a6116; }
.acc-order-meta .pill.st-PENDING { background: #fbe6c2; color: #8a5a12; }
.acc-order-meta .pill.st-PAYMENT_SUBMITTED { background: #d6e7fb; color: #1f4f86; }
.acc-order-meta .pill.st-ACCEPTED, .acc-order-meta .pill.st-DELIVERED { background: #d6f0df; color: #1f6b43; }
.acc-order-meta .pill.st-SHIPPED { background: #e6dcf7; color: #5a3b8c; }
.acc-order-meta .pill.st-DECLINED, .acc-order-meta .pill.st-CANCELLED { background: #f7d9d5; color: #9c2c1f; }
.icon-btn.is-auth::after { content: ""; position: absolute; top: 7px; right: 7px; width: 8px; height: 8px; border-radius: 50%; background: #2e8b57; box-shadow: 0 0 0 2px var(--cream); }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label { font-size: .85rem; font-weight: 500; }
label .info, .field .req {
  vertical-align: middle;
}
label .info {
  display: inline-grid; place-items: center; width: 15px; height: 15px; border-radius: 50%;
  background: var(--ink-soft); color: #fff; font-size: .66rem; font-style: italic; font-weight: 700;
  font-family: Georgia, serif; cursor: help; margin-left: 5px; user-select: none;
}
label .info:hover, label .info:focus { background: var(--gold); color: #fff; outline: none; }
.field .req { color: var(--terra); font-weight: 700; }
.field input, .field textarea, .field select { padding: 12px 14px; border: 1px solid var(--line); border-radius: var(--radius-sm); font-family: var(--sans); font-size: .95rem; background: #fff; }
.field input:focus, .field textarea:focus { outline: 2px solid var(--indigo); border-color: transparent; }
.two-col { display: grid; grid-template-columns: 1fr; gap: 30px; padding: 40px 0 60px; }
@media (min-width: 820px) { .two-col { grid-template-columns: 1fr 1fr; } }
.card-panel { background: #fff; border-radius: var(--radius); padding: 30px; box-shadow: var(--shadow-sm); }
.prose { max-width: 760px; margin: 0 auto; padding: 40px 0 60px; }
.prose p { color: var(--ink-soft); margin: 0 0 18px; }
.prose h2 { font-size: 1.5rem; margin: 30px 0 12px; }
.prose h3 { font-size: 1.05rem; margin: 24px 0 8px; }
.prose ul, .prose ol { color: var(--ink-soft); margin: 0 0 18px; padding-left: 22px; }
.prose li { margin-bottom: 9px; }
.prose strong { color: var(--ink); font-weight: 600; }
.prose a { color: var(--terra); text-decoration: underline; text-underline-offset: 3px; }
.prose a:hover { color: var(--gold); }
.prose .muted { font-size: .82rem; margin-top: 34px; }
.auth-tabs { display: flex; gap: 8px; margin-bottom: 22px; }
.auth-tab { flex: 1; padding: 11px; border: 0; background: var(--cream-2); border-radius: 100px; cursor: pointer; font-family: var(--sans); font-weight: 500; }
.auth-tab.active { background: var(--indigo); color: #fff; }
.stat-row { display: flex; gap: 30px; flex-wrap: wrap; margin: 24px 0; }
.stat b { font-family: var(--serif); font-size: 2rem; color: var(--indigo); display: block; }
.stat span { font-size: .82rem; color: var(--ink-soft); }

/* ---------- utilities -------------------------------------------------- */
.center { text-align: center; }
.mt-32 { margin-top: 32px; }
.view-all { display: inline-flex; align-items: center; gap: 6px; font-weight: 500; color: var(--indigo); }
.view-all:hover { gap: 10px; color: var(--terra); }
.rail-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 24px; flex-wrap: wrap; gap: 10px; }

/* ===========================================================================
   ENHANCEMENTS — motion, depth & decorative polish
   =========================================================================== */

/* page entrance */
body { animation: pageIn .5s ease both; }
@keyframes pageIn { from { opacity: 0; } to { opacity: 1; } }

/* upcoming events / exhibitions */
.events-section { background: var(--cream-2); }
.events-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
@media (max-width: 900px) { .events-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .events-grid { grid-template-columns: 1fr; } }
.event-card { display: block; background: var(--cream); border: 1px solid var(--line); border-radius: 10px;
  overflow: hidden; text-decoration: none; color: inherit; box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease; }
.event-card:hover { transform: translateY(-5px); box-shadow: 0 16px 36px rgba(125,45,73,.14); }
.event-media { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.event-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.event-card:hover .event-media img { transform: scale(1.05); }
.event-date { position: absolute; left: 14px; bottom: 14px; background: var(--royal); color: #fff;
  font-size: .76rem; font-weight: 600; letter-spacing: .03em; padding: 6px 12px; border-radius: 4px; }
.event-body { padding: 20px 22px 24px; }
.event-city { text-transform: uppercase; letter-spacing: .18em; font-size: .72rem; font-weight: 600; color: var(--terra); margin: 0 0 8px; }
.event-body h3 { font-family: var(--display); font-size: 1.5rem; font-weight: 600; line-height: 1.15; margin: 0 0 8px; color: var(--ink); }
.event-venue { font-size: .9rem; color: var(--ink-soft); margin: 0 0 10px; font-weight: 500; }
.event-desc { font-size: .92rem; color: var(--ink-soft); line-height: 1.55; margin: 0; }

/* stock / availability */
.stock-badge { display: inline-flex; align-items: center; gap: 6px; font-size: .82rem; font-weight: 600;
  letter-spacing: .02em; margin: 4px 0 16px; }
.stock-badge.in   { color: #2e8b57; }
.stock-badge.low  { color: var(--royal); }
.stock-badge.out  { color: #b34a6b; }
.card-low { color: var(--royal); font-size: .76rem; font-weight: 600; margin: 0 0 8px; }
.card-ship { color: var(--ink-soft); font-size: .74rem; margin: 2px 0 8px; }
.card-tag.tag-out { background: #6b6b6b; color: #fff; }
.product-card.is-sold-out .card-media img { opacity: .55; filter: grayscale(.3); }
.product-card.is-sold-out .wish-btn { opacity: .8; }

/* scroll reveal — prominent fade + rise */
.reveal { opacity: 0; will-change: transform, opacity; }
.reveal.in { animation: revealUp 1.05s cubic-bezier(.16,.8,.3,1) both; animation-delay: var(--rd, 0s); }
@keyframes revealUp {
  from { opacity: 0; transform: translateY(60px) scale(.97); filter: blur(6px); }
  60%  { filter: blur(0); }
  to   { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); }
}

/* announcement marquee */
.announce { display: block; padding: 0; }
.marquee { overflow: hidden; }
.marquee-track { display: inline-flex; align-items: center; gap: 48px; width: max-content; padding: 11px 0; animation: marquee 60s linear infinite; }
.marquee-track span { display: inline-block !important; font-size: .78rem; letter-spacing: .08em; }
.marquee-track .dot { color: var(--terra); font-size: .5rem; }
.announce:hover .marquee-track { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* (scalloped "gate" edge removed for a clean luxury look) */
.trust-bar { position: relative; }
.trust-bar::before { content: none; }
.trust-item b { transition: .2s; }
.trust-item:hover b { color: #fff; }

/* hero entrance + gentle Ken Burns zoom */
.hero-slide.active .hero-copy { animation: heroIn .85s cubic-bezier(.2,.7,.2,1) both; }
@keyframes heroIn { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.hero-slide.active { animation: fade .7s ease; }
/* No Ken Burns zoom: the old one animated `background-size`, which sets WIDTH
   only and let the height fall out proportionally — on a tall phone frame the
   banner ended up shorter than the slide and tiled down the screen. A transform
   zoom would work, but it slowly crops into the banner, so the image now sits
   exactly as uploaded. */

/* button shine sweep + richer CTAs */
/* clean, calm buttons — solid fills, subtle lift (kritivan-inspired) */
.btn-terra { background: var(--terra); }
.btn-terra:hover { background: var(--indigo-d); }
.btn-primary { background: var(--indigo); }
.btn-primary:hover { background: var(--indigo-d); }
.btn-lg { padding: 16px 36px; }

/* section heading flourish */
.section-head h2 { position: relative; }
.section-head h2::after { content: "\2756"; display: block; margin-top: 12px; color: var(--terra); font-size: .8rem; letter-spacing: .6em; }

/* product card polish */
.card-media { background: linear-gradient(110deg, var(--cream-2) 25%, #f3d9dd 50%, var(--cream-2) 75%); background-size: 220% 100%; animation: shimmer 1.8s linear infinite; }
@keyframes shimmer { to { background-position: -220% 0; } }
.product-card { border: 1px solid transparent; }
.product-card:hover { border-color: var(--line); box-shadow: 0 18px 40px rgba(34,29,24,.16); }
.card-tag { box-shadow: 0 4px 10px rgba(0,0,0,.18); }
.wish-btn.active { animation: pop .3s ease; }
@keyframes pop { 0% { transform: scale(1);} 45% { transform: scale(1.35);} 100% { transform: scale(1);} }

/* quick-add overlay on card image */
.quick-add {
  position: absolute; left: 50%; bottom: 14px; transform: translate(-50%, 16px);
  background: rgba(34,29,24,.92); color: #fff; padding: 9px 18px; border-radius: 100px;
  font-size: .76rem; font-weight: 500; letter-spacing: .04em; white-space: nowrap; cursor: pointer;
  opacity: 0; transition: .28s cubic-bezier(.2,.7,.2,1); -webkit-backdrop-filter: blur(3px); backdrop-filter: blur(3px); z-index: 2;
}
.quick-add:hover { background: var(--terra); }
.product-card:hover .quick-add { opacity: 1; transform: translate(-50%, 0); }
@media (hover: none) { .quick-add { display: none; } }

/* (category CTA is now an explicit element under the title) */

/* value icons bounce */
.value-icon { display: inline-block; transition: .3s cubic-bezier(.2,.7,.2,1); }
.value-card:hover .value-icon { transform: scale(1.18) rotate(-7deg); }

/* testimonial quote mark + lift */
.review-card { position: relative; transition: .2s; }
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.review-card::before { content: "\201C"; position: absolute; top: 4px; right: 18px; font-family: var(--serif); font-size: 3.6rem; line-height: 1; color: var(--cream-2); }

/* dotted decoration on tinted sections */
.newsletter { position: relative; overflow: hidden; }
.newsletter > .container { position: relative; z-index: 1; }
.newsletter::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(255,255,255,.09) 2px, transparent 2px); background-size: 24px 24px; pointer-events: none; }
.values { position: relative; overflow: hidden; }
.values > .container { position: relative; z-index: 1; }
.values::after { content: ""; position: absolute; inset: 0; background-image: radial-gradient(rgba(203,142,30,.07) 2px, transparent 2px); background-size: 24px 24px; pointer-events: none; }

/* media zoom on split hover */
.split-media img, .cat-card img { transition: transform .5s ease; }
.split:hover .split-media img { transform: scale(1.04); }

/* back to top */
/* always-visible WhatsApp chat button (bottom-right) */
.wa-float { position: fixed; right: 22px; bottom: 22px; z-index: 80; display: inline-flex; align-items: center; gap: 0;
  height: 56px; width: 56px; padding: 0; border-radius: 28px; overflow: hidden; white-space: nowrap;
  background: #25d366; color: #fff; box-shadow: 0 6px 20px rgba(37,211,102,.45); text-decoration: none;
  transition: width .28s ease, box-shadow .2s, transform .2s; }
.wa-float svg { flex: none; width: 56px; height: 56px; padding: 13px; box-sizing: border-box; }
.wa-float-label { font-size: .9rem; font-weight: 600; opacity: 0; transition: opacity .2s; padding-right: 4px; }
.wa-float:hover { width: 188px; box-shadow: 0 8px 26px rgba(37,211,102,.55); transform: translateY(-2px); }
.wa-float:hover .wa-float-label { opacity: 1; }
.to-top { position: fixed; right: 22px; bottom: 88px; width: 48px; height: 48px; border-radius: 50%; background: var(--indigo); color: #fff; border: 0; cursor: pointer; font-size: 1.15rem; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transform: translateY(12px); transition: .28s; z-index: 75; }
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { background: var(--indigo-d); transform: translateY(-3px); }

/* animated nav underline + brand mark */
.nav-link { position: relative; }
.nav-link::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 2px; height: 1.5px; background: var(--terra); transform: scaleX(0); transform-origin: left; transition: transform .25s; }
.nav-link:hover::after { transform: scaleX(1); }
.brand-mark { transition: transform .3s; }
.brand:hover .brand-mark { transform: rotate(-8deg) scale(1.06); }

#reviews { scroll-margin-top: 96px; }

/* respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, .reveal, .reveal.in { animation: none !important; }
  .reveal { opacity: 1 !important; }
  html { scroll-behavior: auto; }
}

/* ===========================================================================
   ELEGANT REFINEMENT LAYER — boutique typography, palette & spacing
   =========================================================================== */

/* refined design tokens (warmer, softer, more premium) */
:root {
  --cream:    #fbf8f2;
  --cream-2:  #f4ecdd;
  --ink:      #2b2620;
  --ink-soft: #6c6358;
  --line:     #ece3d4;
  --terra:    #be4f3f;
  --gold:     #b88a2e;
  --shadow:   0 26px 60px -28px rgba(43,38,32,.34);
  --shadow-sm:0 10px 30px -18px rgba(43,38,32,.24);
  --radius:   18px;
  --radius-sm:11px;
}

body { font-size: 16.5px; line-height: 1.7; letter-spacing: .005em; }
::selection { background: var(--gold); color: #fff; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

h1, h2, h3, h4 { font-weight: 500; }

/* eyebrows — small-caps with a hairline cue */
.eyebrow, .hero-eyebrow { font-size: .72rem !important; letter-spacing: .3em !important; text-transform: uppercase; font-weight: 600; }

/* ---- header: boutique feel ---- */
.header-main { padding: 6px 28px; }
.brand-name { font-size: 1.55rem; letter-spacing: -.02em; }
.brand-mark { width: 42px; height: 42px; background: var(--ink); }
.nav-link { text-transform: uppercase; font-size: .7rem; letter-spacing: .13em; font-weight: 500; padding: 9px 12px; }
#site-header { border-bottom: 1px solid transparent; }
#site-header.scrolled { border-bottom-color: var(--line); }

/* gold offer ribbon with dark text (elegant + readable) */
.announce { background: linear-gradient(90deg, #e7b9c2, #f3d2d8, #e7b9c2); color: var(--royal); }
.marquee-track span { color: #2b2620 !important; font-weight: 500; }
.marquee-track .dot { color: rgba(43,38,32,.5); }

/* ---- hero: big full-bleed banner, centred copy ---- */
/* Height comes from the 2:1 aspect-ratio set above, not the viewport. */
/* Pale photos (sandstone, sky) leave white text unreadable, so the scrim is
   weighted toward the middle band where the copy sits rather than uniformly dark. */
.hero-slide::after {
  background:
    linear-gradient(180deg,
      rgba(32,14,20,.30) 0%,
      rgba(32,14,20,.52) 40%,
      rgba(32,14,20,.56) 66%,
      rgba(32,14,20,.44) 100%);
}
.hero-slides { position: relative; }
.hero-copy h1 { font-size: clamp(2.8rem, 6.4vw, 5.4rem); line-height: 1.04; margin: 18px 0 22px; }
.hero-copy p { font-size: 1.18rem; max-width: 560px; margin-left: auto; margin-right: auto; opacity: 1; }

/* soft halo directly behind the copy — lifts contrast locally without flattening
   the whole photograph */
.hero-copy { position: relative; }
.hero-copy > * { position: relative; z-index: 1; }
.hero-copy::before {
  content: ""; position: absolute; inset: -14% -12%; z-index: 0; pointer-events: none;
  background: radial-gradient(ellipse at center,
    rgba(26,10,16,.52) 0%, rgba(26,10,16,.34) 48%, rgba(26,10,16,0) 76%);
}
/* crisp edges so the letterforms read even over a light patch */
.hero-copy h1 { text-shadow: 0 2px 26px rgba(0,0,0,.48), 0 1px 4px rgba(0,0,0,.38); }
.hero-copy p { text-shadow: 0 1px 14px rgba(0,0,0,.52), 0 1px 3px rgba(0,0,0,.36); }
.hero-eyebrow { text-shadow: 0 1px 10px rgba(0,0,0,.55), 0 1px 3px rgba(0,0,0,.4); }

/* Phones: a 2:1 banner would only be ~195px tall here, too short for the copy,
   so the frame keeps its own height and the image is cropped left and right.
   Keep the subject of the photo centred. */
@media (max-width: 640px) {
  .hero-slide { aspect-ratio: auto; height: clamp(400px, 56vh, 470px); max-height: none; }
  .hero-inner { padding: 0 20px; }
}

/* ---- buttons: refined, uppercase, tactile ---- */
.btn { text-transform: uppercase; letter-spacing: .13em; font-size: .76rem; font-weight: 600; padding: 14px 30px; border-radius: 100px; }
.btn-lg { padding: 17px 38px; font-size: .82rem; }
/* all primary CTAs share the hero-banner button look (rose gradient) */
.btn-primary, .btn-terra { background: linear-gradient(135deg, #d99aa8, #c27286); color: #fff; box-shadow: 0 14px 30px -16px rgba(194,114,134,.75); }
.btn-primary:hover, .btn-terra:hover { background: linear-gradient(135deg, #cf8a9b, #b3607a); color: #fff; filter: none; }
.btn-ghost { border-color: var(--ink); color: var(--ink); }

/* ---- sections: generous editorial rhythm ---- */
section.block { padding: 60px 0 100px; }
.section-head { margin-bottom: 54px; max-width: 660px; }
.section-head h2 { font-size: clamp(2rem, 4vw, 3rem); }
.section-head h2::after { content: ""; display: block; width: 56px; height: 1px; background: var(--gold); margin: 20px auto 0; }
.section-head.left h2::after { margin-left: 0; }
.section-head p { font-size: 1.05rem; }

/* ---- category cards: serif captions below the image ---- */
.cat-card::after { content: none; }

/* ---- product cards: clean, gallery-like ---- */
.product-card { border: 1px solid var(--line); box-shadow: none; border-radius: var(--radius); }
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.card-body { padding: 18px 18px 20px; gap: 7px; }
.card-cat { font-size: .64rem; letter-spacing: .16em; color: var(--gold); }
.card-title { font-size: 1.04rem; line-height: 1.32; }
.card-price strong { font-family: var(--serif); font-size: 1.18rem; }
.card-discount { background: rgba(43,38,32,.8); letter-spacing: .04em; }
.card-tag { letter-spacing: .1em; }
.card-add { margin-top: 14px; }

/* ---- testimonials: italic serif quotes ---- */
.review-card { border: 1px solid var(--line); box-shadow: none; padding: 32px 30px; border-radius: var(--radius); }
.review-card:hover { box-shadow: var(--shadow); }
.review-card p { font-family: var(--serif); font-style: italic; font-size: 1.08rem; line-height: 1.6; color: var(--ink); }
.review-card::before { font-size: 4rem; top: 8px; right: 22px; color: var(--cream-2); }

/* ---- newsletter: gold panel, dark type, ink CTA ---- */
.newsletter { background: linear-gradient(135deg, #d3a334, #be8916); color: var(--ink); }
.newsletter h2 { color: var(--ink); }
.newsletter p { color: rgba(43,38,32,.82); }
.newsletter::after { background-image: radial-gradient(rgba(43,38,32,.07) 2px, transparent 2px); }
.newsletter input { box-shadow: 0 10px 24px -16px rgba(43,38,32,.5); }
.newsletter .btn { background: var(--ink); color: var(--cream); }
.newsletter .btn:hover { background: #1c1813; }

/* ---- page hero (inner pages) — 20% shorter ---- */
.page-hero { padding: 53px 0; }
.page-hero h1 { font-size: clamp(2.2rem, 4.5vw, 3.2rem); }
.page-hero p { font-size: 1.05rem; }

/* ---- trust bar: refined spacing ---- */
.trust-bar .container { padding: 20px 24px; }
.trust-item { letter-spacing: .06em; font-size: .8rem; }

/* ---- footer: refined headings with gold rule ---- */
#site-footer { background: #221d17; }
.footer-grid { padding: 72px 24px 36px; gap: 36px; }
.footer-col h4 { text-transform: uppercase; letter-spacing: .14em; font-size: .78rem; font-family: var(--sans); padding-bottom: 12px; position: relative; }
.footer-col h4::after { content: ""; position: absolute; left: 0; bottom: 0; width: 26px; height: 1px; background: var(--gold); }
.footer-brand p { font-size: .92rem; }

/* ---- split / feature sections ---- */
.split { gap: 48px; }
.split-copy h2 { font-size: clamp(1.8rem, 3.2vw, 2.5rem); }
.split-media { box-shadow: var(--shadow); }

/* refined drawers / panels */
.card-panel { border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.drawer-head h3 { letter-spacing: -.01em; }

/* ===========================================================================
   LUXURY BLUSH THEME — soft baby pink, dusty rose & champagne gold
   =========================================================================== */
:root {
  --display:  'Cormorant Garamond', Georgia, serif;
  --cream:    #fffdfd;   /* whisper-pink white base */
  --cream-2:  #fbeff0;   /* soft blush for sections/cards */
  --blush:    #f8dee2;   /* baby-pink accent fill */
  --ink:      #3a2b2f;   /* deep plum-charcoal text */
  --ink-soft: #8b727a;   /* muted mauve text */
  --line:     #f1e2e4;   /* pale pink hairline */
  --indigo:   #c27286;   /* dusty rose (primary action role) */
  --indigo-d: #a85870;   /* deeper rose for hover */
  --gold:     #b0356a;   /* dark pink accent (replaces all gold/mustard) */
  --royal:    #7d2d49;   /* deep berry/plum */
  --royal-d:  #5f2138;
  --terra:    #c27286;   /* rose accent (eyebrows, underlines) */
  --mustard:  #b0356a;   /* (legacy var) -> dark pink (ratings, eyebrows, accents) */
  --sage:     #b5808f;   /* (legacy var) -> muted rose */
}

/* ---- grand display typography ---- */
.brand-name, .hero-copy h1, .section-head h2, .page-hero h1,
.split-copy h2, .newsletter h2, .review-card p {
  font-family: var(--display);
}
.brand-name { font-weight: 700; font-size: 1.7rem; letter-spacing: -.01em; }
.brand-name span { color: var(--gold); }
.hero-copy h1 { font-weight: 600; letter-spacing: 0; font-size: clamp(2.9rem, 6vw, 4.8rem); line-height: 1.02; }
.section-head h2, .page-hero h1, .split-copy h2 { font-weight: 600; }
.section-head h2 { font-size: clamp(2.1rem, 4.2vw, 3.2rem); }

/* ---- royal crest brand mark ---- */
.brand-mark { background: var(--royal); color: var(--gold); box-shadow: 0 0 0 2px var(--cream), 0 0 0 3px var(--gold); }

/* ---- gold-framed editorial hero ---- */
.hero-slides::after { border: 2px solid rgba(201,162,39,.7); box-shadow: inset 0 0 0 1px rgba(255,255,255,.22); }
.hero-dot.active { background: var(--gold); }

/* ---- airy blush trust band (not red) ---- */
.trust-bar { background: #f7e3e7; color: var(--ink);
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-bar::before { content: none; background: none; }
.trust-item b { color: var(--royal); }
.trust-item:hover b { color: var(--indigo-d); }

/* ---- ornamental gold divider under section titles ---- */
.section-head h2::after {
  content: ""; display: block; height: 14px; width: 150px; margin: 18px auto 0; background:
    linear-gradient(var(--gold), var(--gold)) left center / 56px 1.5px no-repeat,
    linear-gradient(var(--gold), var(--gold)) right center / 56px 1.5px no-repeat,
    radial-gradient(circle, var(--gold) 0 3px, transparent 4px) center / 14px 14px no-repeat;
}
.section-head.left h2::after { margin-left: 0; background-position: left center, 94px center, 70px center; }

/* ---- jharokha-arched category cards with gold hover ring ---- */
.cat-card { transition: transform .25s; }
.cat-card:hover { transform: translateY(-4px); }
.cat-card-media { transition: box-shadow .25s; }
.cat-card:hover .cat-card-media { box-shadow: 0 16px 36px rgba(125,45,73,.16); }
.cat-card-body { padding-bottom: 8px; }

/* ---- royal badges & accents on product cards ---- */
.tag-best { background: var(--royal); }
.tag-new { background: var(--gold); color: #fff; }
.card-discount { background: var(--royal); }
.quick-add:hover { background: var(--royal); }
.card-price strong { color: var(--royal); }

/* ---- soft blush showcase band (Crafted with Care) ---- */
.values { background: linear-gradient(180deg, #fdeef0 0%, #f9e4e8 100%); color: var(--ink); }
.values::after { background-image: radial-gradient(rgba(194,114,134,.10) 2px, transparent 2px); }
.values .section-head h2 { color: var(--ink); }
.values .section-head .eyebrow { color: var(--terra); }
.values .section-head p { color: var(--ink-soft); }
.values .value-card h4 { color: var(--ink); }
.values .value-card p { color: var(--ink-soft); }
.values .value-icon { color: var(--royal); }
.values .view-all { color: var(--royal); }
.values .view-all:hover { color: var(--terra); }

/* ---- page hero flourish ---- */
.page-hero { border-bottom: 1px solid var(--line); }
.page-hero h1::after { content: ""; display: block; width: 64px; height: 1.5px; background: var(--gold); margin: 16px auto 0; }

/* ---- deep berry footer with champagne gold ---- */
#site-footer { background: var(--royal-d); color: #f0dbe1; }
.footer-col a { color: #e7c9d1; }
.footer-col h4::after { background: var(--gold); }
.footer-bottom { border-top-color: rgba(201,169,106,.22); color: #c8a3ad; }

/* ---- blush newsletter panel ---- */
.newsletter { background: linear-gradient(135deg, #e7b9c2, #d99aa8); }

/* =========================================================================
   RESPONSIVE TUNING — phones & tablets
   ========================================================================= */
@media (max-width: 1080px) {
  /* mobile: hamburger (left) · logo (centre) · search+wishlist+cart (right) */
  .header-main { gap: 6px; padding: 8px 12px; }
  .brand-logo-mark { height: 86px; }
  .brand-logo-text { height: 15px; }
  .hide-mobile { display: none; }   /* account lives in the menu drawer */
  .header-actions { gap: 0; }
}
@media (max-width: 760px) {
  section.block { padding: 60px 0; }
  .container { padding: 0 18px; }
  .section-head { margin-bottom: 36px; }
  /* sized to sit inside the phone hero without overflowing it */
  .hero-copy h1 { font-size: clamp(1.75rem, 7vw, 2.5rem); line-height: 1.1; margin: 10px 0 12px; }
  .hero-copy p { font-size: .95rem; margin-bottom: 18px; }
  .hero-eyebrow { font-size: .64rem !important; letter-spacing: .22em !important; }
  .hero-slide { aspect-ratio: auto; height: clamp(400px, 56vh, 470px); max-height: none; }
  .trust-bar .container { gap: 10px 18px; }
  .trust-item { font-size: .72rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .pdp-price strong { font-size: 1.5rem; }
  .pdp-actions { flex-wrap: wrap; }
  .pdp-actions .btn { flex: 1 1 100%; }
  .pdp-wish { flex: 1 1 auto !important; width: auto; }
}
@media (max-width: 560px) {
  .header-main { padding: 4px 10px; }
  .brand-name { font-size: 1.32rem; }
  .brand-logo-mark { height: 72px; }
  .brand-logo-text { height: 12px; }
  .header-actions .icon-btn { width: 36px; height: 36px; }
  .header-actions .icon-btn svg { width: 20px; height: 20px; }
  .cat-grid { grid-template-columns: 1fr; gap: 16px; }   /* one category per row on phones */
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .card-body { padding: 12px 12px 14px; }
  .card-title { font-size: .92rem; }
  .card-price strong { font-size: 1.02rem; }
  .card-add { padding: 11px 14px; font-size: .68rem; letter-spacing: .08em; }
  .btn-lg { padding: 14px 26px; }
  .newsletter form { flex-direction: column; }
  .newsletter input { min-width: 0; width: 100%; }
  .cart-row { grid-template-columns: 72px 1fr; }
  .cart-row .cart-line-right, .cart-row > div:last-child { grid-column: 2; }
  .review-card p { font-size: 1rem; }
  .wa-float { right: 14px; bottom: 14px; height: 52px; width: 52px; }
  .wa-float svg { width: 52px; height: 52px; padding: 12px; }
  .to-top { right: 14px; bottom: 76px; width: 44px; height: 44px; }
}
@media (max-width: 380px) {
  .cat-grid, .product-grid { grid-template-columns: 1fr; }
}
