/* =========================================================================
   SRIKALAHASTEESWARA KALAMKARI — Design System
   Palette drawn from the natural dyes used in real Kalamkari pen-work:
   iron-mordant black, madder-root red, myrobalan/turmeric yellow, indigo,
   and the ivory of mordant-treated cloth.
   ========================================================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,500;0,600;0,700;1,500;1,600&family=Jost:wght@300;400;500;600;700&display=swap');

:root{
  /* --- Color tokens ------------------------------------------------- */
  --ivory:        #F1E6D3;   /* base cloth tone, page background */
  --cream-card:   #FBF6EC;   /* card surfaces, slightly lighter than page */
  --maroon:       #7A1B1E;   /* madder red — primary brand color */
  --maroon-deep:  #551013;   /* pressed/hover state, dark gradients */
  --maroon-soft:  #9C3B34;   /* secondary red, tags, hover accents */
  --ink:          #241A12;   /* iron-mordant black — body text */
  --ink-soft:     #55483C;   /* secondary text */
  --gold:         #B9812C;   /* myrobalan/turmeric gold — CTAs, accents */
  --gold-light:   #E7B860;   /* hover / highlight gold */
  --gold-pale:    #F3D89A;
  --indigo:       #1F3B4D;   /* deep indigo — links, secondary accent */
  --line:         rgba(36,26,18,0.14);
  --shadow:       0 14px 34px rgba(85,16,19,0.14);
  --shadow-sm:    0 4px 14px rgba(36,26,18,0.10);

  /* --- Type ----------------------------------------------------------- */
  --font-display: 'Cormorant Garamond', 'Georgia', serif;
  --font-body:    'Jost', -apple-system, 'Segoe UI', sans-serif;

  --radius: 4px;
  --radius-lg: 10px;
  --container: 1180px;
}

*,*::before,*::after{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

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

img{ max-width:100%; display:block; }
a{ color:inherit; text-decoration:none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{
  font-family:var(--font-display);
  color:var(--maroon-deep);
  font-weight:700;
  line-height:1.12;
  margin:0 0 .5em;
  letter-spacing:.2px;
}
h1{ font-size:clamp(2.4rem,4.6vw,4rem); }
h2{ font-size:clamp(1.9rem,3.4vw,2.7rem); }
h3{ font-size:1.4rem; }
p{ margin:0 0 1em; }

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

:focus-visible{ outline:3px solid var(--indigo); outline-offset:2px; }

/* Skip link */
.skip-link{
  position:absolute; left:-999px; top:auto;
  background:var(--ink); color:#fff; padding:10px 18px; z-index:999;
  border-radius:0 0 6px 0;
}
.skip-link:focus{ left:0; top:0; }

/* --- Eyebrow / labels ------------------------------------------------- */
.eyebrow{
  display:inline-flex; align-items:center; gap:.5em;
  font-family:var(--font-body); font-weight:600; font-size:.72rem;
  letter-spacing:.22em; text-transform:uppercase; color:var(--maroon);
}
.eyebrow::before{
  content:''; width:22px; height:1px; background:var(--gold);
}

/* --- Motif divider (signature element) --------------------------------
   A repeating hand-drawn paisley pair, echoing the borders painted onto
   real Kalamkari cloth. Used to open/close sections instead of plain rules. */
.motif-divider{
  height:20px;
  background-image:url('../images/motif-tile.svg');
  background-repeat:repeat-x;
  background-position:center;
  background-size:auto 100%;
  opacity:.85;
}
.motif-divider.small{ height:14px; }

/* =========================================================================
   TOP UTILITY BAR
   ========================================================================= */
.topbar{
  background:var(--ink);
  color:var(--gold-pale);
  font-size:.78rem;
}
.topbar .container{
  display:flex; align-items:center; justify-content:space-between;
  gap:16px; padding-top:8px; padding-bottom:8px; flex-wrap:wrap;
}
.topbar-msg{ letter-spacing:.02em; }
.topbar-links{ display:flex; gap:18px; flex-wrap:wrap; }
.topbar-links a{ display:inline-flex; align-items:center; gap:6px; }
.topbar-links a:hover{ color:var(--gold-light); }
.topbar svg{ width:14px; height:14px; flex:none; }

/* =========================================================================
   HEADER / NAV
   ========================================================================= */
.site-header{
  background:linear-gradient(180deg,#8A2023 0%, var(--maroon) 100%);
  position:sticky; top:0; z-index:60;
  box-shadow:var(--shadow-sm);
}
.nav-row{
  display:flex; align-items:center; justify-content:space-between;
  gap:20px; padding:12px 0;
}
.brand{
  display:flex; align-items:center; gap:12px; color:#fff;
  min-width:0;
}
.brand img{
  width:56px; height:56px; border-radius:50%;
  border:2px solid var(--gold-light); object-fit:cover; flex:none;
}
.brand-text{ display:flex; flex-direction:column; line-height:1.15; min-width:0; }
.brand-text .brand-name{
  font-family:var(--font-display); font-weight:700; font-size:1.32rem; color:#fff;
  white-space:nowrap;
}
.brand-text .brand-tag{
  font-size:.68rem; letter-spacing:.16em; text-transform:uppercase; color:var(--gold-pale);
}

.main-nav ul{ display:flex; gap:2px; align-items:center; }
.main-nav a{
  color:#F6E9CF; font-weight:500; font-size:.93rem; padding:10px 14px;
  border-radius:3px; position:relative; letter-spacing:.02em;
}
.main-nav a:hover{ background:rgba(255,255,255,0.10); }
.main-nav a[aria-current="page"]{ color:#fff; }
.main-nav a[aria-current="page"]::after{
  content:''; position:absolute; left:14px; right:14px; bottom:5px; height:2px; background:var(--gold-light);
}

.nav-actions{ display:flex; align-items:center; gap:10px; }
.icon-btn{
  display:inline-flex; align-items:center; justify-content:center;
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,0.12); color:#fff; position:relative; flex:none;
}
.icon-btn:hover{ background:rgba(255,255,255,0.22); }
.icon-btn svg{ width:19px; height:19px; }
.cart-count{
  position:absolute; top:-4px; right:-4px; background:var(--gold);
  color:var(--ink); font-size:.65rem; font-weight:700; min-width:18px; height:18px;
  border-radius:50%; display:flex; align-items:center; justify-content:center;
  border:2px solid var(--maroon); padding:0 3px;
}
.nav-toggle{
  display:none; width:42px; height:42px; border-radius:6px; background:rgba(255,255,255,0.12);
  color:#fff; align-items:center; justify-content:center; border:0; cursor:pointer;
}

@media (max-width: 900px){
  .nav-toggle{ display:inline-flex; }
  .main-nav{
    position:absolute; left:0; right:0; top:100%; background:var(--maroon-deep);
    max-height:0; overflow:hidden; transition:max-height .3s ease;
  }
  .main-nav.open{ max-height:420px; }
  .main-nav ul{ flex-direction:column; align-items:stretch; padding:8px 20px 18px; gap:0; }
  .main-nav a{ display:block; padding:12px 6px; border-bottom:1px solid rgba(255,255,255,0.08); }
  .main-nav a[aria-current="page"]::after{ display:none; }
  .brand-text .brand-name{ font-size:1.08rem; white-space:normal; }
}

/* =========================================================================
   BUTTONS
   ========================================================================= */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  font-family:var(--font-body); font-weight:600; font-size:.92rem; letter-spacing:.02em;
  padding:13px 26px; border-radius:3px; border:1.5px solid transparent; cursor:pointer;
  transition:transform .15s ease, background .15s ease, border-color .15s ease, color .15s ease;
  white-space:nowrap;
}
.btn svg{ width:17px; height:17px; flex:none; }
.btn:active{ transform:translateY(1px); }
.btn-primary{ background:var(--gold); color:var(--maroon-deep); }
.btn-primary:hover{ background:var(--gold-light); }
.btn-outline{ background:transparent; border-color:currentColor; color:#fff; }
.btn-outline:hover{ background:rgba(255,255,255,0.12); }
.btn-maroon{ background:var(--maroon); color:#fff; }
.btn-maroon:hover{ background:var(--maroon-deep); }
.btn-line{ background:transparent; border-color:var(--maroon); color:var(--maroon); }
.btn-line:hover{ background:var(--maroon); color:#fff; }
.btn-whatsapp{ background:#218838; color:#fff; }
.btn-whatsapp:hover{ background:#1c7430; }
.btn-block{ width:100%; }
.btn-sm{ padding:9px 16px; font-size:.82rem; }
.btn[disabled]{ opacity:.5; cursor:not-allowed; }

/* =========================================================================
   HERO
   ========================================================================= */
.hero{
  background:
    radial-gradient(1100px 500px at 85% -10%, rgba(185,129,44,0.18), transparent 60%),
    linear-gradient(180deg, var(--ivory) 0%, #EADFC7 100%);
  overflow:hidden;
  position:relative;
}
.hero .container{
  display:grid; grid-template-columns:1.05fr .95fr; gap:48px; align-items:center;
  padding-top:56px; padding-bottom:48px;
}
.hero-copy .eyebrow{ margin-bottom:16px; }
.hero-copy h1{ margin-bottom:18px; }
.hero-copy h1 em{ font-style:italic; color:var(--maroon); }
.hero-copy p.lede{ font-size:1.1rem; color:var(--ink-soft); max-width:46ch; margin-bottom:28px; }
.hero-actions{ display:flex; gap:14px; flex-wrap:wrap; }

.hero-art{ position:relative; display:flex; justify-content:center; }
.hero-frame{
  position:relative; width:min(360px,86%);
  padding:14px; background:var(--cream-card);
  border:1px solid var(--line); border-radius:6px; box-shadow:var(--shadow);
}
.hero-frame img{ border-radius:2px; }
.hero-frame .motif-divider{ margin-top:12px; }
.hero-badge{
  position:absolute; top:-18px; left:-18px; background:var(--maroon); color:#fff;
  font-family:var(--font-display); font-weight:700; font-size:.95rem;
  width:92px; height:92px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  text-align:center; line-height:1.15; box-shadow:var(--shadow-sm); border:2px solid var(--gold-light);
  transform:rotate(-8deg);
}

@media (max-width:860px){
  .hero .container{ grid-template-columns:1fr; text-align:center; padding-top:36px; }
  .hero-copy p.lede{ margin-left:auto; margin-right:auto; }
  .hero-actions{ justify-content:center; }
  .hero-art{ order:-1; }
}

/* Trust strip */
.trust-strip{ background:var(--cream-card); border-top:1px solid var(--line); border-bottom:1px solid var(--line); }
.trust-grid{
  display:grid; grid-template-columns:repeat(4,1fr); gap:18px;
  padding:22px 0;
}
.trust-item{ display:flex; align-items:center; gap:12px; }
.trust-item svg{ width:30px; height:30px; color:var(--maroon); flex:none; }
.trust-item strong{ display:block; font-size:.88rem; color:var(--ink); }
.trust-item span{ font-size:.78rem; color:var(--ink-soft); }
@media (max-width:900px){ .trust-grid{ grid-template-columns:repeat(2,1fr); } }

/* =========================================================================
   SECTIONS / GENERIC
   ========================================================================= */
.section{ padding:64px 0; }
.section-tight{ padding:40px 0; }
.section-head{ text-align:center; max-width:640px; margin:0 auto 40px; }
.section-head .eyebrow{ justify-content:center; margin-bottom:12px; }
.section-alt{ background:var(--cream-card); }
.section-maroon{ background:linear-gradient(180deg,var(--maroon) 0%, var(--maroon-deep) 100%); color:#F6E9CF; }
.section-maroon h2, .section-maroon h3{ color:#fff; }

/* Category cards */
.cat-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; }
.cat-card{
  position:relative; border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:4/5;
  box-shadow:var(--shadow-sm); isolation:isolate;
}
.cat-card img{ width:100%; height:100%; object-fit:cover; transition:transform .5s ease; }
.cat-card:hover img{ transform:scale(1.06); }
.cat-card::after{
  content:''; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(36,26,18,0) 40%, rgba(36,26,18,0.82) 100%);
}
.cat-card .cat-label{
  position:absolute; left:0; right:0; bottom:0; z-index:2; padding:18px;
  color:#fff; font-family:var(--font-display); font-weight:700; font-size:1.2rem;
}
.cat-card .cat-label span{
  display:block; font-family:var(--font-body); font-weight:400; font-size:.75rem;
  letter-spacing:.08em; text-transform:uppercase; color:var(--gold-pale); margin-top:2px;
}
@media (max-width:900px){ .cat-grid{ grid-template-columns:repeat(2,1fr); } }

/* Product grid & cards */
.product-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:26px; }
@media (max-width:1080px){ .product-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:760px){ .product-grid{ grid-template-columns:repeat(2,1fr); gap:16px; } }
@media (max-width:460px){ .product-grid{ grid-template-columns:1fr; } }

.product-card{
  background:var(--cream-card); border:1px solid var(--line); border-radius:var(--radius-lg);
  overflow:hidden; display:flex; flex-direction:column; transition:box-shadow .2s ease, transform .2s ease;
}
.product-card:hover{ box-shadow:var(--shadow); transform:translateY(-3px); }
.product-thumb{ position:relative; aspect-ratio:3/4; overflow:hidden; background:#e9ddc4; }
.product-thumb img{ width:100%; height:100%; object-fit:cover; }
.product-thumb a{ display:block; height:100%; }
.product-tag{
  position:absolute; top:10px; left:10px; background:var(--maroon); color:#fff;
  font-size:.68rem; letter-spacing:.06em; text-transform:uppercase; padding:4px 9px; border-radius:2px;
}
.product-tag.sale{ background:var(--gold); color:var(--maroon-deep); }
.product-body{ padding:16px 16px 18px; display:flex; flex-direction:column; gap:6px; flex:1; }
.product-cat{ font-size:.7rem; letter-spacing:.1em; text-transform:uppercase; color:var(--indigo); }
.product-name{ font-family:var(--font-display); font-weight:700; font-size:1.08rem; line-height:1.3; }
.product-name a:hover{ color:var(--maroon); }
.product-price{ margin-top:auto; display:flex; align-items:baseline; gap:8px; padding-top:6px; }
.product-price .now{ font-weight:700; color:var(--maroon-deep); font-size:1.05rem; }
.product-price .mrp{ text-decoration:line-through; color:var(--ink-soft); font-size:.86rem; }
.product-actions{ display:flex; gap:8px; margin-top:10px; }
.product-actions .btn{ flex:1; padding:10px 8px; font-size:.78rem; }

/* Process timeline (genuinely sequential — real craft steps) */
.process-strip{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; counter-reset:step; }
.process-step{ position:relative; padding-left:0; text-align:center; }
.process-step .num{
  width:52px; height:52px; border-radius:50%; border:1.5px solid var(--gold);
  display:flex; align-items:center; justify-content:center; margin:0 auto 14px;
  font-family:var(--font-display); font-weight:700; color:var(--gold); font-size:1.2rem;
}
.process-step h4{ font-family:var(--font-display); color:inherit; font-size:1.1rem; margin-bottom:6px; }
.process-step p{ font-size:.88rem; opacity:.88; margin:0; }
@media (max-width:860px){ .process-strip{ grid-template-columns:1fr 1fr; row-gap:32px; } }

/* Gallery */
.gallery-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
.gallery-grid a{ display:block; aspect-ratio:1; border-radius:6px; overflow:hidden; }
.gallery-grid img{ width:100%; height:100%; object-fit:cover; transition:transform .4s ease; }
.gallery-grid a:hover img{ transform:scale(1.08); }
@media (max-width:760px){ .gallery-grid{ grid-template-columns:repeat(2,1fr); } }

/* Store / visit CTA with map */
.visit-grid{ display:grid; grid-template-columns:1fr 1fr; gap:0; border-radius:var(--radius-lg); overflow:hidden; box-shadow:var(--shadow); }
.visit-info{ background:var(--maroon-deep); color:#F6E9CF; padding:42px; }
.visit-info h2{ color:#fff; }
.visit-info .info-line{ display:flex; gap:12px; margin-bottom:16px; align-items:flex-start; }
.visit-info .info-line svg{ width:20px; height:20px; color:var(--gold-light); flex:none; margin-top:3px; }
.visit-map iframe{ width:100%; height:100%; min-height:340px; border:0; display:block; }
@media (max-width:860px){ .visit-grid{ grid-template-columns:1fr; } .visit-map iframe{ min-height:280px; } }

/* Testimonials */
.testimonial-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.testimonial{ background:var(--cream-card); border:1px solid var(--line); border-radius:var(--radius-lg); padding:26px; }
.testimonial p{ font-family:var(--font-display); font-style:italic; font-size:1.08rem; color:var(--ink); }
.testimonial .who{ font-size:.82rem; color:var(--ink-soft); font-style:normal; font-weight:600; }
.stars{ color:var(--gold); letter-spacing:2px; margin-bottom:10px; display:block; }
@media (max-width:900px){ .testimonial-grid{ grid-template-columns:1fr; } }

/* Instagram strip */
.insta-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:10px; }
.insta-grid a{ position:relative; aspect-ratio:1; border-radius:4px; overflow:hidden; }
.insta-grid img{ width:100%; height:100%; object-fit:cover; }
.insta-grid a::after{
  content:''; position:absolute; inset:0; background:rgba(122,27,30,0); transition:background .2s ease;
}
.insta-grid a:hover::after{ background:rgba(122,27,30,0.35); }
@media (max-width:760px){ .insta-grid{ grid-template-columns:repeat(3,1fr); } }

/* =========================================================================
   FOOTER
   ========================================================================= */
.site-footer{ background:var(--ink); color:#D8CBB4; }
.footer-top{ padding:56px 0 36px; }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:36px; }
.footer-brand{ display:flex; gap:12px; align-items:center; margin-bottom:14px; }
.footer-brand img{ width:52px; height:52px; border-radius:50%; border:2px solid var(--gold); }
.footer-brand span{ font-family:var(--font-display); font-weight:700; color:#fff; font-size:1.15rem; }
.site-footer h5{ color:#fff; font-family:var(--font-body); font-size:.82rem; letter-spacing:.12em; text-transform:uppercase; margin-bottom:16px; }
.site-footer p{ font-size:.9rem; color:#B9AC93; }
.site-footer a:hover{ color:var(--gold-light); }
.footer-links li{ margin-bottom:10px; font-size:.9rem; }
.footer-contact li{ display:flex; gap:10px; margin-bottom:12px; font-size:.9rem; align-items:flex-start; }
.footer-contact svg{ width:17px; height:17px; color:var(--gold); flex:none; margin-top:3px; }
.footer-social{ display:flex; gap:10px; margin-top:16px; }
.footer-social a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(216,203,180,0.3);
  display:flex; align-items:center; justify-content:center;
}
.footer-social a:hover{ border-color:var(--gold-light); background:rgba(185,129,44,0.15); }
.footer-social svg{ width:17px; height:17px; }
.footer-bottom{ border-top:1px solid rgba(216,203,180,0.15); padding:18px 0; }
.footer-bottom .container{ display:flex; justify-content:space-between; flex-wrap:wrap; gap:10px; font-size:.78rem; color:#8F836D; }
@media (max-width:900px){ .footer-grid{ grid-template-columns:1fr 1fr; } }
@media (max-width:560px){ .footer-grid{ grid-template-columns:1fr; } }

/* =========================================================================
   WHATSAPP FLOAT
   ========================================================================= */
.wa-float{
  position:fixed; right:20px; bottom:20px; z-index:80;
  width:58px; height:58px; border-radius:50%; background:#25D366; color:#fff;
  display:flex; align-items:center; justify-content:center; box-shadow:0 8px 22px rgba(0,0,0,0.28);
  animation:wa-pulse 2.6s ease-in-out infinite;
}
.wa-float svg{ width:30px; height:30px; }
.wa-float:hover{ background:#1ebd5a; }
@keyframes wa-pulse{
  0%,100%{ box-shadow:0 8px 22px rgba(0,0,0,0.28), 0 0 0 0 rgba(37,211,102,0.5);}
  50%{ box-shadow:0 8px 22px rgba(0,0,0,0.28), 0 0 0 10px rgba(37,211,102,0);}
}

/* =========================================================================
   PAGE HEADER BANNER (inner pages)
   ========================================================================= */
.page-banner{
  background:linear-gradient(180deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color:#fff; padding:46px 0 34px; text-align:center;
}
.page-banner h1{ color:#fff; margin-bottom:8px; }
.breadcrumb{ font-size:.82rem; color:var(--gold-pale); }
.breadcrumb a:hover{ color:#fff; }

/* =========================================================================
   SHOP PAGE
   ========================================================================= */
.shop-layout{ display:grid; grid-template-columns:240px 1fr; gap:34px; align-items:start; }
.filter-panel{
  background:var(--cream-card); border:1px solid var(--line); border-radius:var(--radius-lg);
  padding:22px; position:sticky; top:96px;
}
.filter-panel h5{ font-family:var(--font-display); font-size:1rem; color:var(--maroon-deep); margin-bottom:12px; }
.filter-group{ margin-bottom:22px; }
.filter-option{ display:flex; align-items:center; gap:9px; padding:6px 0; font-size:.9rem; cursor:pointer; }
.filter-option input{ accent-color:var(--maroon); width:15px; height:15px; }
.shop-toolbar{ display:flex; justify-content:space-between; align-items:center; gap:14px; margin-bottom:22px; flex-wrap:wrap; }
.search-box{ position:relative; flex:1; min-width:200px; }
.search-box input{ width:100%; padding:10px 14px 10px 38px; border:1px solid var(--line); border-radius:4px; font-family:var(--font-body); background:#fff; }
.search-box svg{ position:absolute; left:12px; top:50%; transform:translateY(-50%); width:16px; height:16px; color:var(--ink-soft); }
select{ padding:10px 12px; border:1px solid var(--line); border-radius:4px; font-family:var(--font-body); background:#fff; }
.result-count{ font-size:.85rem; color:var(--ink-soft); margin-bottom:16px; }
.empty-state{ text-align:center; padding:60px 20px; color:var(--ink-soft); }
@media (max-width:860px){
  .shop-layout{ grid-template-columns:1fr; }
  .filter-panel{ position:static; }
}

/* =========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================= */
.pd-grid{ display:grid; grid-template-columns:1fr 1fr; gap:48px; }
.pd-gallery-main{ border-radius:var(--radius-lg); overflow:hidden; aspect-ratio:3/4; background:#e9ddc4; box-shadow:var(--shadow-sm); }
.pd-gallery-main img{ width:100%; height:100%; object-fit:cover; }
.pd-thumbs{ display:flex; gap:10px; margin-top:12px; }
.pd-thumbs button{ width:64px; height:80px; border-radius:4px; overflow:hidden; border:2px solid transparent; padding:0; cursor:pointer; background:none; }
.pd-thumbs button.active{ border-color:var(--maroon); }
.pd-thumbs img{ width:100%; height:100%; object-fit:cover; }
.pd-info .product-cat{ margin-bottom:8px; display:block; }
.pd-info h1{ font-size:2rem; margin-bottom:10px; }
.pd-price{ display:flex; align-items:baseline; gap:12px; margin-bottom:18px; }
.pd-price .now{ font-size:1.6rem; font-weight:700; color:var(--maroon-deep); font-family:var(--font-display); }
.pd-price .mrp{ text-decoration:line-through; color:var(--ink-soft); }
.pd-price .save{ background:var(--gold-pale); color:var(--maroon-deep); font-size:.75rem; font-weight:700; padding:3px 9px; border-radius:3px; }
.pd-desc{ color:var(--ink-soft); margin-bottom:20px; }
.spec-table{ width:100%; border-collapse:collapse; margin-bottom:22px; }
.spec-table tr{ border-bottom:1px solid var(--line); }
.spec-table td{ padding:9px 0; font-size:.9rem; }
.spec-table td:first-child{ color:var(--ink-soft); width:40%; }
.qty-row{ display:flex; align-items:center; gap:16px; margin-bottom:20px; }
.qty-stepper{ display:flex; align-items:center; border:1px solid var(--line); border-radius:4px; }
.qty-stepper button{ width:38px; height:40px; background:none; border:0; font-size:1.1rem; cursor:pointer; color:var(--maroon); }
.qty-stepper input{ width:44px; text-align:center; border:0; border-left:1px solid var(--line); border-right:1px solid var(--line); height:40px; font-family:var(--font-body); }
.pd-actions{ display:flex; gap:12px; flex-wrap:wrap; margin-bottom:24px; }
.pd-actions .btn{ flex:1; min-width:170px; }
.pd-meta-note{ font-size:.83rem; color:var(--ink-soft); background:var(--cream-card); border:1px dashed var(--line); border-radius:6px; padding:12px 14px; }
@media (max-width:860px){ .pd-grid{ grid-template-columns:1fr; gap:28px; } }

/* =========================================================================
   CART PAGE
   ========================================================================= */
.cart-layout{ display:grid; grid-template-columns:1fr 340px; gap:36px; align-items:start; }
.cart-table{ width:100%; border-collapse:collapse; }
.cart-table th{ text-align:left; font-size:.75rem; letter-spacing:.08em; text-transform:uppercase; color:var(--ink-soft); padding-bottom:12px; border-bottom:1.5px solid var(--line); }
.cart-table td{ padding:16px 8px; border-bottom:1px solid var(--line); vertical-align:middle; }
.cart-item-info{ display:flex; gap:14px; align-items:center; }
.cart-item-info img{ width:70px; height:88px; object-fit:cover; border-radius:4px; flex:none; }
.cart-item-info .name{ font-family:var(--font-display); font-weight:700; }
.cart-item-info .cat{ font-size:.75rem; color:var(--ink-soft); text-transform:uppercase; letter-spacing:.06em; }
.remove-btn{ color:var(--maroon); font-size:.8rem; text-decoration:underline; background:none; border:0; cursor:pointer; padding:0; margin-top:4px; }
.cart-summary{ background:var(--cream-card); border:1px solid var(--line); border-radius:var(--radius-lg); padding:26px; position:sticky; top:96px; }
.summary-row{ display:flex; justify-content:space-between; padding:9px 0; font-size:.94rem; }
.summary-row.total{ border-top:1.5px solid var(--line); margin-top:10px; padding-top:16px; font-weight:700; font-size:1.15rem; color:var(--maroon-deep); font-family:var(--font-display); }
.cart-empty{ text-align:center; padding:70px 20px; }
.cart-empty svg{ width:64px; height:64px; color:var(--gold); margin:0 auto 18px; }
@media (max-width:860px){ .cart-layout{ grid-template-columns:1fr; } .cart-summary{ position:static; } .cart-table{ display:block; overflow-x:auto; white-space:nowrap; } }

/* =========================================================================
   FORMS (Enquiry / Contact)
   ========================================================================= */
.form-grid{ display:grid; grid-template-columns:1fr 1fr; gap:36px; align-items:start; }
.contact-card{ background:var(--cream-card); border:1px solid var(--line); border-radius:var(--radius-lg); padding:30px; }
.field{ margin-bottom:18px; }
.field label{ display:block; font-size:.85rem; font-weight:600; margin-bottom:7px; color:var(--ink); }
.field input, .field select, .field textarea{
  width:100%; padding:12px 14px; border:1px solid var(--line); border-radius:4px;
  font-family:var(--font-body); font-size:.95rem; background:#fff; color:var(--ink);
}
.field input:focus, .field select:focus, .field textarea:focus{ border-color:var(--maroon); }
.field textarea{ resize:vertical; min-height:110px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; }
.form-note{ font-size:.8rem; color:var(--ink-soft); margin-top:14px; }
.form-success{
  display:none; background:#E7F3E8; border:1px solid #B7DABB; color:#1c5b26; padding:14px 16px; border-radius:6px;
  font-size:.9rem; margin-bottom:16px;
}
.form-success.show{ display:block; }
.contact-info-list li{ display:flex; gap:14px; margin-bottom:20px; align-items:flex-start; }
.contact-info-list svg{ width:22px; height:22px; color:var(--maroon); flex:none; margin-top:2px; }
.contact-info-list strong{ display:block; margin-bottom:3px; font-family:var(--font-display); font-size:1.05rem; color:var(--ink); }
.contact-info-list span, .contact-info-list a{ font-size:.92rem; color:var(--ink-soft); display:block; }
.hours-table{ width:100%; border-collapse:collapse; margin-top:6px; }
.hours-table td{ padding:6px 0; font-size:.9rem; border-bottom:1px dashed var(--line); }
.hours-table td:last-child{ text-align:right; color:var(--ink-soft); }
@media (max-width:860px){ .form-grid{ grid-template-columns:1fr; } .field-row{ grid-template-columns:1fr; } }

/* =========================================================================
   MISC / UTILITY
   ========================================================================= */
.center{ text-align:center; }
.mt-0{ margin-top:0; }
.badge-row{ display:flex; gap:10px; flex-wrap:wrap; margin-top:18px; }
.badge{ font-size:.72rem; letter-spacing:.05em; text-transform:uppercase; background:var(--cream-card); border:1px solid var(--line); padding:6px 12px; border-radius:20px; color:var(--ink-soft); }
.two-col{ display:grid; grid-template-columns:1fr 1fr; gap:48px; align-items:center; }
.two-col img{ border-radius:var(--radius-lg); box-shadow:var(--shadow-sm); }
@media (max-width:860px){ .two-col{ grid-template-columns:1fr; } }
.story-figure{ position:relative; }
.story-figure .motif-divider{ position:absolute; left:14px; right:14px; bottom:-10px; }
