/* ==========================================================================
   SHOBHA JEWELLERS — Public Storefront
   Palette matched to shobhajewellers.net: deep purple + antique gold + white
   Display: Cormorant Garamond (fine jewellery serif, high contrast strokes)
   Body: Jost | Utility/eyebrow: Jost uppercase tracked
   Signature element: the Rate Ticker — a persistent gold-on-purple strip
   under the nav showing today's metal rate, since price transparency is
   the one thing every jewellery customer actually wants to see first.
   ========================================================================== */


:root{
  --purple:       #5F2C8F;
  --purple-deep:  #3B1B5C;
  --purple-soft:  #7A4AAE;
  --purple-pale:  #F3ECFA;
  --purple-line:  #E4D6F2;

  --gold:         #D4A017;
  --gold-light:   #E8C864;
  --gold-pale:    #FBF0D3;
  --gold-deep:    #A87A0E;

  --ink:          #241934;
  --ink-soft:     #574969;
  --gray-500:     #8A7F97;
  --gray-300:     #D9D0E2;
  --gray-100:     #F1ECF6;
  --cream:        #FBF9F5;
  --white:        #FFFFFF;

  --success:      #4C7A5B;
  --success-bg:   #E7EFE7;
  --danger:       #A6432F;
  --danger-bg:    #F5E6E1;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'Jost', -apple-system, sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  --shadow-card: 0 1px 3px rgba(59,27,92,0.07), 0 1px 1px rgba(59,27,92,0.05);
  --shadow-pop: 0 24px 60px rgba(36,25,52,0.28);
  --shadow-lift: 0 10px 28px rgba(95,44,143,0.16);
}

*,*::before,*::after{ box-sizing:border-box; }
html{ -webkit-font-smoothing:antialiased; scroll-behavior:smooth; }
body{ overflow-x:hidden; }
@media (prefers-reduced-motion: reduce){ html{ scroll-behavior:auto; } }
body{
  margin:0;
  font-family:var(--font-body);
  background:var(--cream);
  color:var(--ink);
  font-size:15.5px;
  line-height:1.6;
}
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
button{ font-family:inherit; cursor:pointer; }
input,select,textarea{ font-family:inherit; font-size:inherit; color:inherit; }
img{ max-width:100%; display:block; }
svg{ width:1em; height:1em; display:inline-block; vertical-align:-0.125em; }
::selection{ background:var(--gold-pale); color:var(--purple-deep); }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible{
  outline:2px solid var(--gold-deep); outline-offset:2px;
}

.eyebrow{
  font-family:var(--font-body); font-size:11.5px; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase; color:var(--gold-deep);
}
h1,h2,h3,h4{ font-family:var(--font-display); color:var(--ink); margin:0; font-weight:600; }
.container{ max-width:1240px; margin:0 auto; padding:0 32px; }

/* ==========================================================================
   Hallmark seal — signature motif reused from the brand's circular "S" mark
   ========================================================================== */
.seal{
  display:inline-flex; align-items:center; justify-content:center;
  width:38px; height:38px; border-radius:50%; border:1.5px solid var(--gold);
  position:relative; flex-shrink:0; overflow:hidden;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 100'%3E%3Ccircle cx='50' cy='50' r='50' fill='%235F2C8F'/%3E%3Ctext x='50' y='69' font-family='Georgia,%20Times%20New%20Roman,%20serif' font-size='58' font-weight='700' fill='%23E8C864' text-anchor='middle'%3ES%3C/text%3E%3C/svg%3E");
  background-size:cover; background-position:center;
}
.seal--sm{ width:24px; height:24px; }

/* ==========================================================================
   Rate ticker — signature persistent strip
   ========================================================================== */
.rate-ticker{
  background:var(--purple-deep); color:var(--gold-light);
  border-bottom:1px solid rgba(232,200,100,0.18);
}
.rate-ticker__inner{
  max-width:1240px; margin:0 auto; padding:9px 32px;
  display:flex; align-items:center; justify-content:center; gap:28px;
  font-family:var(--font-mono); font-size:12px; letter-spacing:.02em;
  flex-wrap:wrap;
}
.rate-ticker__item{ display:flex; align-items:center; gap:7px; color:rgba(255,255,255,0.75); }
.rate-ticker__item b{ color:var(--gold-light); font-weight:600; }
.rate-ticker__dot{ width:4px; height:4px; border-radius:50%; background:rgba(232,200,100,0.4); }
.rate-ticker__updated{ color:rgba(255,255,255,0.45); }

/* ==========================================================================
   Navbar
   ========================================================================== */
.navbar{
  position:sticky; top:0; z-index:100;
  background:rgba(255,255,255,0.98);
  border-bottom:1px solid var(--gray-300);
  transform:translateZ(0);
  will-change:transform;
  contain:layout style;
}
@supports (backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px)){
  .navbar{ background:rgba(255,255,255,0.85); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px); }
}
.navbar__inner{
  max-width:1240px; margin:0 auto; padding:16px 32px;
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.navbar__brand{ display:flex; align-items:center; gap:12px; }
.navbar__brand-text .name{ font-family:var(--font-display); font-size:22px; font-weight:700; color:var(--purple); line-height:1; }
.navbar__brand-text .tag{ font-size:9.5px; letter-spacing:.22em; text-transform:uppercase; color:var(--gold-deep); font-weight:600; }
.navbar__links{ display:flex; align-items:center; gap:34px; }
.navbar__links a{
  font-size:14px; font-weight:500; color:var(--ink-soft);
  padding:6px 0; border-bottom:1.5px solid transparent; transition:color .15s ease, border-color .15s ease;
}
.navbar__links a:hover, .navbar__links a.active{ color:var(--purple); border-bottom-color:var(--gold); }
.navbar__actions{ display:flex; align-items:center; gap:10px; }
.navbar__icon-btn{
  width:38px; height:38px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  color:var(--purple); background:var(--purple-pale); border:1px solid var(--purple-line); position:relative;
  transition:background .15s ease;
}
.navbar__icon-btn:hover{ background:var(--gold-pale); border-color:var(--gold); color:var(--gold-deep); }
.navbar__icon-btn svg{ width:17px; height:17px; }
.navbar__icon-btn .count{
  position:absolute; top:-3px; right:-3px; background:var(--gold); color:var(--white);
  font-size:9.5px; font-weight:700; width:16px; height:16px; border-radius:50%;
  display:flex; align-items:center; justify-content:center; border:1.5px solid var(--white);
}
.nav-toggle{ display:none; background:none; border:none; color:var(--purple); padding:6px; }
.nav-toggle svg{ width:22px; height:22px; }

/* Mobile nav drawer */
.mobile-nav{
  position:fixed; inset:0; background:rgba(36,25,52,0.55); z-index:150;
  display:none; opacity:0; transition:opacity .2s ease;
}
.mobile-nav.open{ display:block; opacity:1; }
.mobile-nav__panel{
  position:absolute; top:0; right:0; bottom:0; width:82%; max-width:340px;
  background:var(--white); padding:22px; transform:translateX(100%); transition:transform .25s ease;
  overflow-y:auto;
}
.mobile-nav.open .mobile-nav__panel{ transform:translateX(0); }
.mobile-nav__head{ display:flex; justify-content:space-between; align-items:center; margin-bottom:22px; }
.mobile-nav__links a{
  display:block; padding:14px 4px; font-size:16px; font-weight:500; color:var(--ink);
  border-bottom:1px solid var(--gray-100);
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding:13px 26px; border-radius:8px; font-size:13.5px; font-weight:600;
  letter-spacing:.03em; border:1.5px solid transparent; transition:all .18s ease; white-space:nowrap;
  box-shadow:0 1px 2px rgba(36,25,52,0.06);
}
.btn:active{ transform:translateY(1px); }
.btn svg{ width:15px; height:15px; }
.btn-primary{ background:var(--purple); color:var(--white); }
.btn-primary:hover{ background:var(--purple-deep); box-shadow:var(--shadow-lift); }
.btn-gold{ background:linear-gradient(135deg, var(--gold-light), var(--gold)); color:var(--purple-deep); }
.btn-gold:hover{ background:linear-gradient(135deg, var(--gold), var(--gold-deep)); color:var(--white); box-shadow:0 4px 14px rgba(212,160,23,0.3); }
.btn-outline{ background:transparent; color:var(--purple); border-color:var(--purple); box-shadow:none; }
.btn-outline:hover{ background:var(--purple); color:var(--white); }
.btn-outline-gold{ background:transparent; color:var(--gold-deep); border-color:var(--gold); box-shadow:none; }
.btn-outline-gold:hover{ background:var(--gold-pale); }
.btn-ghost{ background:transparent; color:var(--ink-soft); border:none; box-shadow:none; }
.btn-ghost:hover{ color:var(--purple); }
.btn-sm{ padding:9px 16px; font-size:12.5px; }
.btn-block{ width:100%; }
.btn-icon{
  width:40px; height:40px; border-radius:50%; padding:0;
  background:var(--white); border:1.5px solid var(--gray-300); color:var(--ink-soft);
}
.btn-icon:hover{ border-color:var(--gold); color:var(--gold-deep); }
.btn-icon.active{ background:var(--purple); border-color:var(--purple); color:var(--gold-light); }

/* ==========================================================================
   Sections / hero
   ========================================================================== */
.section{ padding:72px 0; }
.section--tight{ padding:48px 0; }
.section-head{ text-align:center; max-width:620px; margin:0 auto 44px; }
.section-head h2{ font-size:38px; margin:10px 0 12px; }
.section-head p{ color:var(--ink-soft); font-size:15px; margin:0; }
.divider-gold{
  width:56px; height:1px; background:var(--gold); margin:16px auto 0; position:relative;
}
.divider-gold::after{
  content:''; position:absolute; top:-3px; left:50%; transform:translateX(-50%) rotate(45deg);
  width:6px; height:6px; border:1.2px solid var(--gold); background:var(--cream);
}

.hero{
  position:relative; overflow:hidden; color:var(--white);
  min-height:640px; display:flex; align-items:center;
}
.hero-slide{
  position:absolute; inset:0; opacity:0; transition:opacity 1.1s ease;
  background-size:cover; background-position:center;
}
.hero-slide.active{ opacity:1; z-index:1; }
.hero-slide::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(115deg, rgba(46,20,74,0.92) 0%, rgba(46,20,74,0.78) 45%, rgba(30,20,44,0.62) 100%);
}
.hero-slide--1{ background-image:url('https://images.unsplash.com/photo-1756483560049-e7b2208f99a0?auto=format&fit=crop&w=1920&q=80'); }
.hero-slide--2{ background-image:url('https://images.unsplash.com/photo-1600685890506-593fdf55949b?auto=format&fit=crop&w=1920&q=80'); }
.hero-slide--3{ background-image:url('https://images.unsplash.com/photo-1721103418312-b0057a8c31c2?auto=format&fit=crop&w=1920&q=80'); }
.hero-slide--4{ background-image:url('https://images.unsplash.com/photo-1617633150878-7df1d12a9a57?auto=format&fit=crop&w=1920&q=80'); }
.hero-slide--5{ background-image:url('https://images.unsplash.com/photo-1587271598589-3f91d0872f66?auto=format&fit=crop&w=1920&q=80'); }
.hero-slide__pattern{
  position:absolute; inset:0;
  background-image:repeating-linear-gradient(115deg, rgba(255,255,255,0.04) 0 2px, transparent 2px 34px);
}
.hero__inner{
  position:relative; z-index:2; max-width:1240px; margin:0 auto; padding:96px 32px 120px; width:100%;
  display:grid; grid-template-columns:1.15fr 0.85fr; gap:48px; align-items:center;
}
.hero__eyebrow{ color:var(--gold-light); font-size:13.5px; }
.hero h1{
  color:var(--white); font-size:64px; line-height:1.1; margin:18px 0 22px; font-weight:600; max-width:720px;
}
.hero h1 em{ font-style:italic; color:var(--gold-light); }
.hero p{ color:rgba(255,255,255,0.82); font-size:18.5px; line-height:1.6; max-width:520px; margin:0 0 34px; }
.hero__actions{ display:flex; gap:14px; flex-wrap:wrap; }
.hero__actions .btn{ font-size:15px; padding:15px 30px; }

.hero__showcase{ position:relative; height:420px; }
.hero__showcase-card{
  position:absolute; border-radius:16px; overflow:hidden; background-size:cover; background-position:center;
  box-shadow:0 24px 48px rgba(20,10,32,0.45);
  -webkit-mask-image:linear-gradient(155deg, rgba(0,0,0,1) 62%, rgba(0,0,0,0.55) 84%, rgba(0,0,0,0) 100%);
  mask-image:linear-gradient(155deg, rgba(0,0,0,1) 62%, rgba(0,0,0,0.55) 84%, rgba(0,0,0,0) 100%);
}
.hero__showcase-card::after{
  content:''; position:absolute; inset:0; border-radius:inherit;
  border:1px solid rgba(255,255,255,0.28); pointer-events:none;
  -webkit-mask-image:linear-gradient(155deg, rgba(0,0,0,1) 62%, rgba(0,0,0,0.3) 84%, rgba(0,0,0,0) 100%);
  mask-image:linear-gradient(155deg, rgba(0,0,0,1) 62%, rgba(0,0,0,0.3) 84%, rgba(0,0,0,0) 100%);
}
.hero__showcase-card--main{ width:72%; height:88%; top:0; right:0; }
.hero__showcase-card--accent{
  width:52%; height:52%; left:0; bottom:0; z-index:2;
  box-shadow:0 20px 40px rgba(20,10,32,0.5), 0 0 0 6px var(--cream, #FBF7F0);
}
.hero__showcase-tag{
  position:absolute; left:16px; bottom:14px; z-index:2;
  background:rgba(255,255,255,0.94); color:var(--purple); font-size:13px; font-weight:700;
  padding:7px 14px; border-radius:20px; letter-spacing:.02em;
}
.hero__content-fade{ transition:opacity .35s ease; }
.hero__content-fade.is-fading{ opacity:0; }

.hero-dots{
  position:absolute; bottom:28px; left:50%; transform:translateX(-50%); z-index:3;
  display:flex; align-items:center; gap:10px;
}
.hero-dot{
  width:9px; height:9px; border-radius:50%; background:rgba(255,255,255,0.4); border:none; cursor:pointer;
  padding:0; transition:all .3s ease;
}
.hero-dot:hover{ background:rgba(255,255,255,0.7); }
.hero-dot.active{ background:var(--gold); width:26px; border-radius:5px; }
.hero__art{
  aspect-ratio:4/5; border-radius:10px; position:relative; overflow:hidden;
  background-size:cover; background-position:center;
  border:1px solid rgba(232,200,100,0.35);
  display:flex; align-items:center; justify-content:center;
}
.hero__art::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(155deg, rgba(59,27,92,0.32), rgba(20,14,28,0.12));
}
.hero__art .seal{ width:96px; height:96px; border-width:2px; position:relative; z-index:1; background:rgba(255,255,255,0.9); }

/* ==========================================================================
   Product cards / grid
   ========================================================================== */
.product-grid{ display:grid; grid-template-columns:repeat(4, 1fr); gap:28px; }
.product-grid.cols-3{ grid-template-columns:repeat(3, 1fr); }
.product-card{
  background:var(--white); border:1px solid var(--gray-300); border-radius:10px; overflow:hidden;
  transition:box-shadow .2s ease, transform .2s ease; position:relative;
}
.product-card:hover{ box-shadow:var(--shadow-lift); transform:translateY(-3px); }
.product-card__media{
  aspect-ratio:1/1; position:relative; overflow:hidden;
  display:flex; align-items:center; justify-content:center;
}
.product-card__media svg{ display:none; }
.product-card__img{
  position:absolute; inset:0; width:100%; height:100%;
  background-size:cover; background-position:center;
  transition:opacity .45s ease, transform .5s ease;
}
.product-card__img--base{ opacity:1; transform:scale(1); z-index:1; }
.product-card__img--alt{ opacity:0; transform:scale(1.06); z-index:2; }
.product-card:hover .product-card__img--base{ opacity:0; transform:scale(1.06); }
.product-card:hover .product-card__img--alt{ opacity:1; transform:scale(1.04); }
.product-card__wishlist{
  position:absolute; top:12px; right:12px; width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,0.92); border:none; display:flex; align-items:center; justify-content:center;
  color:var(--ink-soft); z-index:2; transition:color .15s ease, background .15s ease;
}
.product-card__wishlist svg{ width:16px; height:16px; }
.product-card__wishlist.active{ color:var(--gold-deep); background:var(--gold-pale); }
.product-card__badge{
  position:absolute; top:12px; left:12px; z-index:2;
  background:var(--purple); color:var(--gold-light); font-size:10px; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase; padding:5px 10px; border-radius:20px;
}
.product-card__quickview{
  position:absolute; left:0; right:0; bottom:0; padding:10px;
  background:rgba(36,25,52,0.88); color:var(--white); text-align:center;
  font-size:12px; font-weight:600; letter-spacing:.04em; text-transform:uppercase;
  transform:translateY(100%); transition:transform .2s ease; z-index:2;
}
.product-card:hover .product-card__quickview{ transform:translateY(0); }
.product-card__body{ padding:18px 18px 20px; }
.product-card__cat{ font-size:10.5px; letter-spacing:.1em; text-transform:uppercase; color:var(--gold-deep); font-weight:600; }
.product-card__name{ font-family:var(--font-display); font-size:19px; font-weight:600; margin:5px 0 6px; }
.product-card__meta{ font-size:12px; color:var(--gray-500); margin-bottom:10px; }
.product-card__foot{ display:flex; align-items:center; justify-content:space-between; }
.product-card__price{ font-family:var(--font-mono); font-size:14.5px; font-weight:600; color:var(--purple); }
.product-card__price.enquire{ font-family:var(--font-body); font-size:12.5px; color:var(--gray-500); font-style:italic; }

/* Gem-tone media backgrounds — used as placeholders per category, distinct hues */
.tone-1{ background:linear-gradient(150deg,#EFE0FB,#DCC2F2); color:var(--purple); }
.tone-2{ background:linear-gradient(150deg,#FCEFD1,#F5DA9C); color:var(--gold-deep); }
.tone-3{ background:linear-gradient(150deg,#E8E2F7,#C9BEE8); color:var(--purple-deep); }
.tone-4{ background:linear-gradient(150deg,#F7EEDD,#EAD6AE); color:var(--gold-deep); }

/* ==========================================================================
   Skeleton loaders
   ========================================================================== */
@keyframes skeleton-shimmer{
  0%{ background-position:-200% 0; }
  100%{ background-position:200% 0; }
}
.skeleton-card{
  background:var(--white); border:1px solid var(--gray-300); border-radius:10px; overflow:hidden;
}
.skeleton-shimmer{
  background:linear-gradient(100deg, var(--gray-100) 30%, #EFEBF4 45%, var(--gray-100) 60%);
  background-size:250% 100%;
  animation:skeleton-shimmer 1.5s ease-in-out infinite;
}
.skeleton-card__media{ aspect-ratio:1/1; }
.skeleton-card__body{ padding:18px; }
.skeleton-line{ height:10px; border-radius:5px; margin-bottom:10px; }
.skeleton-line--cat{ width:40%; height:8px; }
.skeleton-line--name{ width:80%; height:14px; }
.skeleton-line--meta{ width:55%; }
.skeleton-line--price{ width:35%; margin-bottom:0; margin-top:14px; }

/* ==========================================================================
   Filters / tabs / pills
   ========================================================================== */
.filter-bar{ display:flex; align-items:center; justify-content:space-between; gap:20px; flex-wrap:wrap; margin-bottom:18px; }
.filter-pills{ display:flex; gap:8px; flex-wrap:wrap; }
.pill{
  padding:9px 18px; border-radius:20px; border:1.5px solid var(--gray-300);
  background:var(--white); font-size:13px; font-weight:500; color:var(--ink-soft); transition:all .15s ease;
}
.pill:hover{ border-color:var(--purple-soft); }
.pill.active{ background:var(--purple); color:var(--gold-light); border-color:var(--purple); }
.select-mini{
  padding:9px 14px; border-radius:20px; border:1.5px solid var(--gray-300); background:var(--white);
  font-size:13px; color:var(--ink-soft);
}
.filter-bar-secondary{
  display:flex; align-items:center; gap:12px; flex-wrap:wrap; margin-bottom:28px;
  padding:14px 16px; background:var(--gray-50, #FAF8FC); border:1px solid var(--gray-300); border-radius:12px;
}
.filter-group{ display:flex; align-items:center; gap:8px; }
.filter-group label{ font-size:11.5px; font-weight:600; color:var(--gray-500); text-transform:uppercase; letter-spacing:.04em; }
.price-range-inputs{ display:flex; align-items:center; gap:6px; }
.price-range-inputs input{
  width:88px; padding:7px 10px; border-radius:8px; border:1.5px solid var(--gray-300);
  font-size:12.5px; font-family:var(--font-mono); color:var(--ink);
}
.price-range-inputs input:focus{ outline:none; border-color:var(--purple-soft); }
.filter-clear{
  margin-left:auto; font-size:12.5px; font-weight:600; color:var(--purple); background:none; border:none;
  cursor:pointer; padding:6px 4px; display:flex; align-items:center; gap:5px;
}
.filter-clear:hover{ text-decoration:underline; }
.filter-results-count{ font-size:12.5px; color:var(--gray-500); margin-bottom:16px; }

/* ==========================================================================
   Shop layout — left sidebar filters + product grid
   ========================================================================== */
.shop-layout{ display:grid; grid-template-columns:260px 1fr; gap:36px; align-items:start; }
.shop-filters{
  background:var(--white); border:1px solid var(--gray-300); border-radius:14px;
  padding:22px 22px 6px; position:sticky; top:88px;
  max-height:calc(100vh - 108px); overflow-y:auto;
}
.shop-filters__head{ display:flex; align-items:center; justify-content:space-between; margin-bottom:6px; }
.shop-filters__head h3{ font-family:var(--font-display); font-size:18px; margin:0; }
.filter-block{ padding:18px 0; border-bottom:1px dashed var(--gray-300); }
.filter-block:last-of-type{ border-bottom:none; }
.filter-block__title{
  font-size:11.5px; font-weight:700; text-transform:uppercase; letter-spacing:.06em;
  color:var(--gray-500); margin-bottom:12px;
}
.filter-check{
  display:flex; align-items:center; gap:10px; font-size:13.5px; color:var(--ink);
  padding:6px 2px; cursor:pointer; user-select:none;
}
.filter-check input[type="checkbox"]{
  width:17px; height:17px; accent-color:var(--purple); cursor:pointer; flex-shrink:0;
}
.filter-check__swatch{ width:15px; height:15px; border-radius:50%; flex-shrink:0; border:1px solid rgba(0,0,0,0.1); }
.filter-check__thumb{ width:26px; height:26px; border-radius:50%; background-size:cover; background-position:center; flex-shrink:0; }
.filter-check__count{ margin-left:auto; font-size:11.5px; color:var(--gray-400, #B8AECB); font-family:var(--font-mono); }
.filter-check:hover{ color:var(--purple); }

.shop-main__toolbar{
  display:flex; align-items:center; justify-content:space-between; gap:16px; flex-wrap:wrap;
  margin-bottom:14px; padding-bottom:16px; border-bottom:1px solid var(--gray-300);
}
.shop-main__sort{ display:flex; align-items:center; gap:8px; margin-left:auto; }
.shop-main__sort label{ font-size:11.5px; font-weight:600; color:var(--gray-500); text-transform:uppercase; letter-spacing:.04em; }
.shop-filter-toggle{ display:none; align-items:center; gap:8px; }
.active-chips{ display:flex; flex-wrap:wrap; gap:8px; margin-bottom:18px; }
.active-chips:empty{ display:none; margin:0; }
.active-chip{
  display:flex; align-items:center; gap:6px; background:var(--purple-pale, #EFE6F7); color:var(--purple);
  font-size:12px; font-weight:600; padding:6px 8px 6px 12px; border-radius:20px;
}
.active-chip button{ background:none; border:none; color:var(--purple); cursor:pointer; display:flex; padding:2px; }
.active-chip button svg{ width:12px; height:12px; }
.shop-filters__backdrop{ display:none; }

@media (max-width: 900px){
  .shop-layout{ grid-template-columns:1fr; }
  .shop-filters{
    position:fixed; top:0; left:0; bottom:0; width:300px; max-width:86vw; max-height:none;
    z-index:160; border-radius:0; transform:translateX(-100%); transition:transform .25s ease;
    padding:20px 20px 24px; box-shadow:0 0 40px rgba(20,10,32,0.25);
  }
  .shop-filters.open{ transform:translateX(0); }
  .shop-filters__close{ display:inline-flex !important; }
  .shop-filter-toggle{ display:inline-flex; }
  .shop-filters__backdrop{
    display:block; position:fixed; inset:0; background:rgba(36,25,52,0.5); z-index:155;
    opacity:0; pointer-events:none; transition:opacity .2s ease;
  }
  .shop-filters__backdrop.open{ opacity:1; pointer-events:auto; }
}
.breadcrumbs{ font-size:12.5px; color:var(--gray-500); margin-bottom:22px; }
.breadcrumbs a{ color:var(--purple); }
.breadcrumbs span{ margin:0 6px; }

/* ==========================================================================
   404 page
   ========================================================================== */
.error-page{
  min-height:calc(100vh - 400px); display:flex; align-items:center; justify-content:center;
  text-align:center; padding:80px 24px;
}
.error-page__num{
  font-family:var(--font-display); font-size:120px; line-height:1; font-weight:700;
  color:var(--purple); letter-spacing:.02em; margin-bottom:8px;
}
.error-page__num em{ font-style:normal; color:var(--gold-deep); }
.error-page__links{ display:flex; gap:10px; flex-wrap:wrap; justify-content:center; margin-top:28px; }
.error-page__suggest{
  margin-top:36px; padding-top:28px; border-top:1px solid var(--gray-300);
}
.error-page__suggest a{
  display:inline-block; margin:6px 8px; font-size:13px; color:var(--purple); font-weight:600;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonial-grid{ display:grid; grid-template-columns:repeat(3, 1fr); gap:24px; }
.testimonial-card{
  background:var(--white); border:1px solid var(--gray-300); border-radius:12px;
  padding:26px 24px; display:flex; flex-direction:column; gap:14px;
}
.testimonial-card__stars{ display:flex; gap:3px; }
.testimonial-card__stars svg{ width:15px; height:15px; fill:var(--gold); }
.testimonial-card__quote{ font-size:14px; line-height:1.75; color:var(--ink-soft); flex:1; }
.testimonial-card__person{ display:flex; align-items:center; gap:12px; margin-top:4px; }
.testimonial-card__avatar{
  width:42px; height:42px; border-radius:50%; flex-shrink:0;
  display:flex; align-items:center; justify-content:center;
  font-family:var(--font-display); font-weight:700; font-size:15px; color:var(--white);
}
.testimonial-card__name{ font-size:13.5px; font-weight:700; color:var(--ink); }
.testimonial-card__meta{ font-size:11.5px; color:var(--gray-500); }
@media (max-width: 860px){ .testimonial-grid{ grid-template-columns:1fr; } }

/* ==========================================================================
   Forms
   ========================================================================== */
.field{ display:flex; flex-direction:column; gap:7px; margin-bottom:18px; }
.field label{ font-size:12.5px; font-weight:600; color:var(--ink); }
.field .req{ color:var(--gold-deep); }
.input{
  padding:12px 14px; border:1.5px solid var(--gray-300); border-radius:8px; background:var(--white);
  font-size:14px; width:100%; transition:border-color .15s ease, box-shadow .15s ease;
}
.input:hover{ border-color:var(--gray-400); }
.input:focus{ outline:none; border-color:var(--purple); box-shadow:0 0 0 3px var(--purple-pale); }
textarea.input{ resize:vertical; min-height:110px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.field-hint{ font-size:11.5px; color:var(--gray-500); }
.checkbox-row{ display:flex; align-items:flex-start; gap:10px; font-size:13px; color:var(--ink-soft); }
.checkbox-row input{ margin-top:3px; accent-color:var(--purple); }

/* ==========================================================================
   Cards (info blocks — hours, address, etc.)
   ========================================================================== */
.info-card{
  display:flex; gap:16px; background:var(--white); border-left:3px solid var(--gold);
  border-radius:10px; padding:20px; box-shadow:var(--shadow-card);
}
.info-card__icon{
  width:44px; height:44px; border-radius:50%; background:var(--purple-pale); color:var(--purple);
  display:flex; align-items:center; justify-content:center; flex-shrink:0;
}
.info-card__icon svg{ width:19px; height:19px; }
.info-card h4{ font-size:16px; margin-bottom:6px; }
.info-card p{ margin:0; color:var(--ink-soft); font-size:13.5px; line-height:1.6; }

/* ==========================================================================
   Accordion (FAQ)
   ========================================================================== */
.accordion-item{ border-bottom:1px solid var(--gray-300); }
.accordion-trigger{
  width:100%; text-align:left; background:none; border:none; padding:20px 4px;
  display:flex; justify-content:space-between; align-items:center; gap:16px;
  font-family:var(--font-display); font-size:18px; font-weight:600; color:var(--ink);
}
.accordion-trigger svg{ width:18px; height:18px; color:var(--gold-deep); flex-shrink:0; transition:transform .2s ease; }
.accordion-item.open .accordion-trigger svg{ transform:rotate(45deg); }
.accordion-panel{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.accordion-item.open .accordion-panel{ max-height:300px; }
.accordion-panel__inner{ padding:0 4px 20px; color:var(--ink-soft); font-size:14px; line-height:1.7; }

/* ==========================================================================
   Tabs (policies page)
   ========================================================================== */
.tab-nav{ display:flex; gap:4px; border-bottom:1.5px solid var(--gray-300); margin-bottom:32px; overflow-x:auto; }
.tab-nav button{
  background:none; border:none; padding:13px 4px; margin-right:28px; white-space:nowrap;
  font-size:14px; font-weight:600; color:var(--gray-500); border-bottom:2px solid transparent; margin-bottom:-1.5px;
}
.tab-nav button.active{ color:var(--purple); border-bottom-color:var(--gold); }

/* ==========================================================================
   Badges
   ========================================================================== */
.badge{ display:inline-flex; align-items:center; gap:5px; padding:4px 11px; border-radius:20px; font-size:11px; font-weight:600; }
.badge::before{ content:''; width:6px; height:6px; border-radius:50%; background:currentColor; }
.badge-success{ background:var(--success-bg); color:var(--success); }
.badge-danger{ background:var(--danger-bg); color:var(--danger); }
.badge-gold{ background:var(--gold-pale); color:var(--gold-deep); }
.badge-purple{ background:var(--purple-pale); color:var(--purple); }

/* ==========================================================================
   Modals
   ========================================================================== */
.overlay{
  position:fixed; inset:0; background:rgba(36,25,52,0.6); backdrop-filter:blur(2px);
  display:none; align-items:center; justify-content:center; z-index:300; padding:20px;
}
.overlay.open{ display:flex; }
.modal{
  background:var(--white); border-radius:6px; width:100%; max-width:480px; max-height:90vh; overflow-y:auto;
  box-shadow:var(--shadow-pop); position:relative;
}
.modal--lg{ max-width:900px; }
.modal--sm{ max-width:400px; }
.modal__close{
  position:absolute; top:16px; right:16px; width:34px; height:34px; border-radius:50%;
  background:var(--gray-100); border:none; display:flex; align-items:center; justify-content:center;
  color:var(--ink-soft); z-index:2;
}
.modal__close:hover{ background:var(--gold-pale); color:var(--gold-deep); }
.modal__close svg{ width:16px; height:16px; }
.modal__head{ padding:30px 30px 6px; text-align:center; }
.modal__head .seal{ margin:0 auto 14px; }
.modal__head h3{ font-size:26px; }
.modal__head p{ color:var(--ink-soft); font-size:13.5px; margin:8px 0 0; }
.modal__body{ padding:24px 30px 30px; }
.modal__foot{ padding:0 30px 30px; text-align:center; font-size:13px; color:var(--ink-soft); }
.modal__foot a{ color:var(--purple); font-weight:600; }
.modal-divider{ display:flex; align-items:center; gap:12px; margin:20px 0; }
.modal-divider::before, .modal-divider::after{ content:''; flex:1; height:1px; background:var(--gray-300); }
.modal-divider span{ font-size:11px; color:var(--gray-500); text-transform:uppercase; letter-spacing:.08em; }

/* Quick view modal layout */
.qv-grid{ display:grid; grid-template-columns:1fr 1fr; }
.qv-media{ aspect-ratio:1/1; display:flex; align-items:center; justify-content:center; background-size:cover; background-position:center; border-radius:6px 0 0 6px; overflow:hidden; }
.qv-media svg{ display:none; }
@media (max-width: 720px){ .qv-media{ border-radius:6px 6px 0 0; } }
.qv-body{ padding:30px; }

/* Success modal */
.success-icon{
  width:64px; height:64px; border-radius:50%; background:var(--success-bg); color:var(--success);
  display:flex; align-items:center; justify-content:center; margin:0 auto 18px;
}
.success-icon svg{ width:28px; height:28px; }

/* OTP input row */
.otp-row{ display:flex; gap:10px; justify-content:center; }
.otp-row input{ width:46px; height:52px; text-align:center; font-size:20px; font-family:var(--font-mono); }

/* ==========================================================================
   Footer
   ========================================================================== */
.footer{ background:var(--purple-deep); color:rgba(255,255,255,0.82); }
.footer__top{ max-width:1240px; margin:0 auto; padding:64px 32px 40px; display:grid; grid-template-columns:1.4fr 1fr 1fr 1fr 1fr; gap:32px; }
.footer__brand .name{ font-family:var(--font-display); font-size:22px; color:var(--white); font-weight:700; }
.footer__brand p{ font-size:13px; color:rgba(255,255,255,0.6); margin:12px 0 0; max-width:260px; line-height:1.7; }
.footer__col h5{ color:var(--gold-light); font-size:13px; letter-spacing:.06em; text-transform:uppercase; margin:0 0 16px; font-weight:600; }
.footer__col a{ display:block; font-size:13.5px; color:rgba(255,255,255,0.72); margin-bottom:11px; }
.footer__col a:hover{ color:var(--gold-light); }
.footer__social{ display:flex; gap:10px; margin-top:6px; }
.footer__social a{
  width:36px; height:36px; border-radius:50%; background:rgba(255,255,255,0.08); display:flex;
  align-items:center; justify-content:center; margin:0;
}
.footer__social svg{ width:16px; height:16px; }
.footer__bottom{
  border-top:1px solid rgba(255,255,255,0.12); padding:20px 32px; max-width:1240px; margin:0 auto;
  display:flex; justify-content:space-between; align-items:center; flex-wrap:wrap; gap:12px; font-size:12.5px; color:rgba(255,255,255,0.55);
}
.footer__bottom a{ color:rgba(255,255,255,0.55); margin-left:18px; }
.footer__bottom a:hover{ color:var(--gold-light); }

/* ==========================================================================
   Toast
   ========================================================================== */
.toast-stack{ position:fixed; bottom:24px; right:24px; z-index:400; display:flex; flex-direction:column; gap:10px; }
.toast{
  background:var(--purple-deep); color:var(--white); padding:13px 18px; border-radius:8px; font-size:13px;
  display:flex; align-items:center; gap:10px; box-shadow:var(--shadow-pop); border-left:3px solid var(--gold);
  animation:toastIn .2s ease; max-width:320px;
}
@keyframes toastIn{ from{ opacity:0; transform:translateY(8px);} to{opacity:1; transform:translateY(0);} }

/* ==========================================================================
   Misc utility
   ========================================================================== */
.grid-2{ display:grid; grid-template-columns:1fr 1fr; gap:40px; min-width:0; }
.grid-2 > *{ min-width:0; }
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.floating-enquire{
  position:fixed; bottom:24px; right:24px; z-index:90;
  width:56px; height:56px; border-radius:50%; background:var(--purple); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center; box-shadow:var(--shadow-pop); border:none;
}
.floating-enquire svg{ width:22px; height:22px; }

.btn-row{ min-width:0; }
@media (max-width: 640px){
  .btn-row{ flex-wrap:wrap; }
  .btn-row .btn{ flex:1 1 auto; }
}

.grid-3-auto{ display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
.grid-4-auto{ display:grid; grid-template-columns:repeat(4,1fr); gap:10px; }
@media (max-width: 860px){
  .grid-3-auto{ grid-template-columns:1fr; }
  .grid-4-auto{ grid-template-columns:repeat(4,1fr); }
}
@media (max-width: 560px){
  .grid-3-auto{ grid-template-columns:1fr; gap:14px; }
  .grid-4-auto{ grid-template-columns:repeat(4,1fr); gap:6px; }
}

.category-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:16px; }
@media (max-width: 860px){ .category-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width: 560px){ .category-grid{ grid-template-columns:repeat(3,1fr); gap:10px; } }

/* ==========================================================================
   Price breakup (product detail)
   ========================================================================== */
.price-breakup-body{ max-height:0; overflow:hidden; transition:max-height .25s ease; }
.price-breakup-body.open{ max-height:400px; }

/* ==========================================================================
   Account Dashboard (user-facing, nested under /account/)
   ========================================================================== */
.acc-shell{ display:flex; min-height:100vh; background:var(--cream); }
.acc-sidebar{
  width:240px; background:var(--purple-deep); color:rgba(255,255,255,0.82);
  position:fixed; top:0; left:0; bottom:0; display:flex; flex-direction:column; z-index:120;
  transition:transform .25s ease;
}
.acc-sidebar__brand{ display:flex; align-items:center; gap:12px; padding:24px 20px; border-bottom:1px solid rgba(232,200,100,0.16); }
.acc-sidebar__brand .name{ font-family:var(--font-display); font-size:20px; font-weight:700; color:var(--white); line-height:1; }
.acc-sidebar__brand .tag{ font-size:9.5px; letter-spacing:.2em; text-transform:uppercase; color:var(--gold-light); font-weight:600; }
.acc-nav{ padding:16px 12px; flex:1; overflow-y:auto; }
.acc-nav__label{ font-size:10px; letter-spacing:.14em; text-transform:uppercase; color:rgba(255,255,255,0.4); padding:16px 12px 6px; }
.acc-link{
  display:flex; align-items:center; gap:11px; padding:11px 12px; border-radius:6px;
  font-size:13.5px; font-weight:500; color:rgba(255,255,255,0.78); margin-bottom:2px;
  border-left:2px solid transparent; transition:background .15s ease, color .15s ease;
}
.acc-link svg{ width:17px; height:17px; opacity:.85; flex-shrink:0; }
.acc-link:hover{ background:rgba(232,200,100,0.08); color:var(--white); }
.acc-link.active{ background:rgba(232,200,100,0.14); color:var(--gold-light); border-left-color:var(--gold); }
.acc-sidebar__foot{ padding:16px 20px; border-top:1px solid rgba(232,200,100,0.16); font-size:12px; color:rgba(255,255,255,0.5); }
.acc-sidebar__foot a{ color:var(--gold-light); font-weight:600; }

.acc-main{ margin-left:240px; flex:1; min-width:0; display:flex; flex-direction:column; }
.acc-topbar{
  height:68px; background:var(--white); border-bottom:1px solid var(--gray-300);
  display:flex; align-items:center; justify-content:space-between; padding:0 28px; position:sticky; top:0; z-index:80;
  transform:translateZ(0); contain:layout style;
}
.acc-topbar__title{ font-family:var(--font-display); font-size:21px; font-weight:600; color:var(--ink); }
.acc-topbar__eyebrow{ font-size:10.5px; letter-spacing:.12em; text-transform:uppercase; color:var(--gold-deep); display:block; margin-bottom:2px; }
.acc-menu-btn{ display:none; background:none; border:none; color:var(--purple); padding:6px; margin-right:10px; }
.acc-menu-btn svg{ width:22px; height:22px; }
.acc-avatar{
  width:38px; height:38px; border-radius:50%; background:var(--purple); color:var(--gold-light);
  display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; font-size:15px;
  border:1px solid var(--gold);
}
.acc-content{ padding:28px; flex:1; min-width:0; }

.acc-page-head{ display:flex; align-items:flex-end; justify-content:space-between; gap:20px; margin-bottom:24px; flex-wrap:wrap; }
.acc-page-head h1{ font-size:26px; margin:0 0 4px; }
.acc-page-head p{ margin:0; color:var(--ink-soft); font-size:13.5px; max-width:520px; }

.acc-kpi-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:16px; margin-bottom:24px; }
.acc-kpi{ background:var(--white); border:1px solid var(--gray-300); border-radius:10px; padding:18px 20px; position:relative; overflow:hidden; box-shadow:var(--shadow-card); }
.acc-kpi::after{ content:''; position:absolute; top:0; left:0; width:4px; height:100%; background:var(--gold); }
.acc-kpi__label{ font-size:11.5px; color:var(--gray-500); text-transform:uppercase; letter-spacing:.06em; font-weight:600; }
.acc-kpi__value{ font-family:var(--font-display); font-size:27px; font-weight:600; color:var(--purple); margin:6px 0 2px; }
.acc-kpi__sub{ font-size:12px; color:var(--gray-500); }

.acc-card{ background:var(--white); border:1px solid var(--gray-300); border-radius:10px; box-shadow:var(--shadow-card); min-width:0; }
.acc-card__pad{ padding:22px; }
.acc-card__head{ display:flex; align-items:center; justify-content:space-between; padding:18px 22px; border-bottom:1px solid var(--gray-100); }
.acc-card__head h3{ margin:0; font-family:var(--font-display); font-size:17px; font-weight:600; }
.acc-card__head p{ margin:2px 0 0; font-size:12px; color:var(--gray-500); }

.acc-table-wrap{ overflow-x:auto; }
.acc-table{ width:100%; border-collapse:collapse; font-size:13px; min-width:600px; }
.acc-table thead th{
  text-align:left; padding:12px 16px; font-size:11px; letter-spacing:.06em; text-transform:uppercase;
  color:var(--gray-500); font-weight:600; border-bottom:1.5px solid var(--gray-300); background:var(--gray-100); white-space:nowrap;
}
.acc-table tbody td{ padding:13px 16px; border-bottom:1px solid var(--gray-100); vertical-align:middle; }
.acc-table tbody tr:hover{ background:var(--purple-pale); }
.acc-table tbody tr:last-child td{ border-bottom:none; }
.acc-table td.num{ text-align:right; font-family:var(--font-mono); }

.acc-timeline{ display:flex; flex-direction:column; }
.acc-timeline__step{ display:flex; gap:14px; padding-bottom:22px; position:relative; }
.acc-timeline__step:last-child{ padding-bottom:0; }
.acc-timeline__step::before{
  content:''; position:absolute; left:11px; top:26px; bottom:0; width:2px; background:var(--gray-300);
}
.acc-timeline__step:last-child::before{ display:none; }
.acc-timeline__dot{
  width:24px; height:24px; border-radius:50%; background:var(--gray-200); border:2px solid var(--white);
  display:flex; align-items:center; justify-content:center; flex-shrink:0; z-index:1; box-shadow:0 0 0 1px var(--gray-300);
}
.acc-timeline__step.done .acc-timeline__dot{ background:var(--success); box-shadow:0 0 0 1px var(--success); }
.acc-timeline__step.current .acc-timeline__dot{ background:var(--gold); box-shadow:0 0 0 1px var(--gold-deep); }
.acc-timeline__dot svg{ width:12px; height:12px; color:var(--white); }
.acc-timeline__body b{ font-size:13.5px; display:block; }
.acc-timeline__body span{ font-size:12px; color:var(--gray-500); }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1080px){
  .product-grid{ grid-template-columns:repeat(3,1fr); }
  .hero__inner{ grid-template-columns:1fr; }
  .hero__showcase{ display:none; }
  .hero__art{ max-width:360px; margin:0 auto; }
  .footer__top{ grid-template-columns:1fr 1fr 1fr; }
}
@media (max-width: 860px){
  .navbar__links{ display:none; }
  .nav-toggle{ display:inline-flex; }
  .product-grid{ grid-template-columns:repeat(2,1fr); gap:18px; }
  .qv-grid{ grid-template-columns:1fr; }
  .grid-2{ grid-template-columns:1fr; gap:28px; }
  .hero{ min-height:520px; }
  .hero h1{ font-size:44px; }
  .hero p{ font-size:16.5px; }
  .footer__top{ grid-template-columns:1fr 1fr; padding:48px 24px 32px; }
  .container{ padding:0 20px; }

  .acc-sidebar{ transform:translateX(-100%); }
  .acc-sidebar.open{ transform:translateX(0); }
  .acc-main{ margin-left:0; }
  .acc-menu-btn{ display:inline-flex; }
  .acc-kpi-grid{ grid-template-columns:1fr 1fr; }
}
@media (max-width: 560px){
  .section{ padding:48px 0; }
  .product-grid{ grid-template-columns:1fr; gap:16px; }
  .product-card__media{ aspect-ratio:5/4; }
  .rate-ticker__inner{ gap:16px; font-size:10.5px; padding:8px 20px; }
  .hero{ min-height:460px; }
  .hero__inner{ padding:56px 20px 64px; }
  .hero h1{ font-size:34px; }
  .hero p{ font-size:15.5px; }
  .hero-dots{ bottom:18px; }
  .field-row{ grid-template-columns:1fr; }
  .modal__head{ padding:24px 20px 4px; }
  .modal__body{ padding:18px 20px 24px; }
  .footer__top{ grid-template-columns:1fr; padding:40px 20px 28px; }
  .footer__bottom{ flex-direction:column; align-items:flex-start; }
  .footer__bottom a{ margin-left:0; margin-right:16px; }
  .otp-row input{ width:38px; height:46px; font-size:17px; }

  .acc-content{ padding:16px; }
  .acc-topbar{ padding:0 14px; }
  .acc-kpi-grid{ grid-template-columns:1fr; }
  .acc-page-head{ flex-direction:column; align-items:flex-start; }
}
