/* =====================================================================
   SHIVANKAR FURNITURE MALL — Front-end styles
   Brand: deep maroon + warm gold + cream. Cinematic & luxurious.
   ===================================================================== */

:root{
  --maroon:        #5A1714;
  --maroon-deep:   #3A0E0C;
  --maroon-soft:   #6E2420;
  --gold:          #C19A57;
  --gold-light:    #E7C88B;
  --gold-deep:     #A37E3C;
  --cream:         #F7F1E6;
  --cream-soft:    #FBF7EF;
  --paper:         #FFFFFF;
  --ink:           #241F1C;
  --muted:         #837367;
  --line:          rgba(90,23,20,.12);

  --font-display: 'Poppins', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;
  --font-eyebrow: 'Poppins', sans-serif;

  --shadow-sm: 0 4px 18px rgba(58,14,12,.08);
  --shadow-md: 0 16px 48px rgba(58,14,12,.14);
  --radius: 14px;

  --dark-brown:      #3B2314;
  --dark-brown-deep: #2A1810;
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  font-family:var(--font-body);
  color:var(--ink);
  background:var(--cream-soft);
  margin:0;
  overflow-x:hidden;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
}
a{ color:var(--maroon); text-decoration:none; transition:color .25s ease; }
a:hover{ color:var(--gold-deep); }
img{ max-width:100%; height:auto; display:block; }

h1,h2,h3,h4{ font-family:var(--font-display); color:var(--maroon-deep); font-weight:700; line-height:1.15; }

.eyebrow{
  font-family:var(--font-eyebrow);
  text-transform:uppercase;
  letter-spacing:.34em;
  font-size:.78rem;
  font-weight:500;
  color:var(--gold-deep);
  display:inline-flex;
  align-items:center;
  gap:.7rem;
}
.eyebrow::before{ content:""; width:34px; height:1px; background:var(--gold); display:inline-block; }

.section{ padding:96px 0; position:relative; }
.section-head{ max-width:660px; margin:0 auto 56px; text-align:center; }
.section-head h2{ font-size:clamp(2rem,4vw,3rem); margin:.4rem 0 .8rem; }
.section-head p{ color:var(--muted); margin:0; }

.text-gold{ color:var(--gold-deep)!important; }
.bg-cream{ background:var(--cream); }
.bg-maroon{ background:var(--maroon-deep); color:var(--cream); }

/* ---- Buttons ---------------------------------------------------- */
.btn-lux{
  background: #501411;
  color: #E4CFA4;
  font-family:var(--font-eyebrow);
  text-transform:uppercase;
  letter-spacing:.18em;
  font-size:.82rem;
  font-weight:500;
  padding:.95rem 2.1rem;
  border:none;
  border-radius:2px;
  display:inline-flex;
  align-items:center;
  gap:.6rem;
  cursor:pointer;
  transition:transform .3s ease, box-shadow .3s ease, background .3s ease;
  position:relative;
}
.btn-lux:hover{ transform:translateY(-2px); }
.btn-gold{ background:var(--gold); color:var(--maroon-deep); box-shadow:var(--shadow-sm); }
.btn-gold:hover{ background:var(--gold-light); color:var(--maroon-deep); }
.btn-maroon{ background:var(--maroon); color:var(--cream); }
.btn-maroon:hover{ background:var(--maroon-soft); color:#fff; }
.btn-ghost{ background:transparent; color:var(--maroon-deep); border:1px solid var(--gold); }
.btn-ghost:hover{ background:var(--gold); color:var(--maroon-deep); }

/* ---- Top bar ---------------------------------------------------- */
.topbar{
  background:var(--maroon-deep);
  color:var(--cream);
  font-size:.82rem;
  letter-spacing:.02em;
}
.topbar a{ color:var(--gold-light); }
.topbar .topbar-inner{ display:flex; justify-content:space-between; align-items:center; padding:8px 0; flex-wrap:wrap; gap:.5rem; }
.topbar .socials a{ margin-left:14px; font-size:.95rem; }

/* ---- Header / Nav ----------------------------------------------- */
.site-header{
  background:var(--cream-soft);
  position:sticky; top:0; z-index:1000;
  border-bottom:1px solid var(--line);
  transition:box-shadow .3s ease, padding .3s ease;
}
.site-header.scrolled{ box-shadow:var(--shadow-sm); }
.nav-inner{ display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:1.5rem; }
.brand{ display:flex; flex-direction:column; line-height:1; }
.brand .brand-name{
  font-family:var(--font-eyebrow); font-weight:700; font-size:1.7rem;
  letter-spacing:.12em; color:var(--maroon); text-transform:uppercase;
}
.brand .brand-sub{
  font-family:var(--font-eyebrow); font-size:.62rem; letter-spacing:.42em;
  color:var(--gold-deep); text-transform:uppercase; margin-top:3px;
}
.main-nav{ display:flex; align-items:center; gap:2rem; }
.main-nav > a{
  font-family:var(--font-eyebrow); text-transform:uppercase; letter-spacing:.1em;
  font-size:.86rem; color:var(--ink); position:relative; padding:6px 0;
}
.main-nav > a::after{
  content:""; position:absolute; left:0; bottom:-2px; width:0; height:2px;
  background:var(--gold); transition:width .3s ease;
}
.main-nav > a:hover::after, .main-nav > a.active::after{ width:100%; }
.main-nav > a:hover{ color:var(--maroon); }

/* dropdown */
.nav-item-dd{ position:relative; }
.nav-dropdown{
  position:absolute; top:130%; left:0; min-width:230px;
  background:var(--paper); box-shadow:var(--shadow-md); border-radius:8px;
  padding:.6rem 0; opacity:0; visibility:hidden; transform:translateY(8px);
  transition:all .28s ease; border-top:3px solid var(--gold); z-index:50;
}
.nav-item-dd:hover .nav-dropdown{ opacity:1; visibility:visible; transform:translateY(0); }
.nav-dropdown a{
  display:block; padding:.55rem 1.4rem; font-size:.86rem; color:var(--ink);
  font-family:var(--font-body); text-transform:none; letter-spacing:0;
}
.nav-dropdown a:hover{ background:var(--cream); color:var(--maroon); padding-left:1.7rem; }

.nav-actions{ display:flex; align-items:center; gap:1.1rem; font-size:1.15rem; }
.nav-actions a{ color:var(--maroon-deep); position:relative; }
.nav-actions .badge-dot{
  position:absolute; top:-6px; right:-8px; background:var(--gold); color:var(--maroon-deep);
  font-size:.6rem; font-weight:700; border-radius:50%; width:16px; height:16px;
  display:flex; align-items:center; justify-content:center; font-family:var(--font-body);
}
.nav-toggle{ display:none; background:none; border:none; font-size:1.6rem; color:var(--maroon); cursor:pointer; }

/* ---- Hero ------------------------------------------------------- */
.hero{ position:relative; height:88vh; min-height:560px; overflow:hidden; background:var(--maroon-deep); }
.hero-slide{
  position:absolute; inset:0; opacity:0; visibility:hidden;
  transition:opacity 1.2s ease; display:flex; align-items:center;
}
.hero-slide.active{ opacity:1; visibility:visible; }
.hero-slide .hero-bg{
  position:absolute; inset:0; background-size:cover; background-position:center;
  transform:scale(1.08); transition:transform 7s ease;
}
.hero-slide.active .hero-bg{ transform:scale(1); }
.hero-slide::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(100deg, rgba(58,14,12,.86) 0%, rgba(58,14,12,.5) 45%, rgba(58,14,12,.15) 100%);
}
.hero-content{ position:relative; z-index:3; color:var(--cream); max-width:620px; }
.hero-content .eyebrow{ color:var(--gold-light); }
.hero-content .eyebrow::before{ background:var(--gold-light); }
.hero-content h1{
  color:#fff; font-size:clamp(2.6rem,6vw,4.6rem); margin:1rem 0 1.2rem; line-height:1.05;
}
.hero-content h1 .accent{ color:var(--gold-light); font-style:italic; }
.hero-content p{ font-size:1.1rem; color:rgba(255,255,255,.85); margin-bottom:2rem; max-width:480px; }
.hero-frame{
  position:absolute; inset:34px; border:1px solid rgba(231,200,139,.4);
  z-index:2; pointer-events:none;
}
.hero-nav{ position:absolute; bottom:34px; left:0; right:0; z-index:4; display:flex; justify-content:center; gap:14px; }
.hero-dot{ width:42px; height:3px; background:rgba(255,255,255,.35); border:none; cursor:pointer; transition:background .3s; }
.hero-dot.active{ background:var(--gold-light); }
.hero-arrow{
  position:absolute; top:50%; transform:translateY(-50%); z-index:4;
  background:rgba(255,255,255,.08); border:1px solid rgba(231,200,139,.4); color:var(--cream);
  width:52px; height:52px; border-radius:50%; cursor:pointer; font-size:1.2rem;
  display:flex; align-items:center; justify-content:center; transition:all .3s;
}
.hero-arrow:hover{ background:var(--gold); color:var(--maroon-deep); }
.hero-arrow.prev{ left:34px; }
.hero-arrow.next{ right:34px; }

/* ---- Gallery strip (below nav) ---------------------------------- */
.gallery-strip{ display:grid; grid-template-columns:repeat(6,1fr); gap:0; }
.gallery-strip .g-item{ position:relative; overflow:hidden; aspect-ratio:1/1; }
.gallery-strip .g-item img{ width:100%; height:100%; object-fit:cover; transition:transform .8s ease; }
.gallery-strip .g-item:hover img{ transform:scale(1.12); }
.gallery-strip .g-item::after{
  content:attr(data-title); position:absolute; inset:0; display:flex; align-items:flex-end;
  padding:14px; color:#fff; font-family:var(--font-eyebrow); text-transform:uppercase;
  letter-spacing:.12em; font-size:.72rem; background:linear-gradient(transparent 55%, rgba(58,14,12,.75));
  opacity:0; transition:opacity .4s ease;
}
.gallery-strip .g-item:hover::after{ opacity:1; }

/* ---- Category showcase (diagonal panels — brand signature) ------ */
.cat-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr)); gap:22px; }
.cat-card{
  position:relative; height:340px; border-radius:var(--radius); overflow:hidden;
  display:flex; align-items:flex-end; box-shadow:var(--shadow-sm);
}
.cat-card .cat-bg{ position:absolute; inset:0; background-size:cover; background-position:center; transition:transform .8s ease; }
.cat-card:hover .cat-bg{ transform:scale(1.1); }
.cat-card::before{
  content:""; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(58,14,12,.92) 0%, rgba(58,14,12,.25) 60%, transparent 100%);
  z-index:1;
}
/* diagonal gold cut echoing the banner dividers */
.cat-card::after{
  content:""; position:absolute; top:0; right:-1px; width:0; height:0; z-index:2;
  border-style:solid; border-width:0 0 46px 46px; border-color:transparent transparent transparent var(--gold);
  opacity:0; transition:opacity .4s ease;
}
.cat-card:hover::after{ opacity:1; }
.cat-card .cat-body{ position:relative; z-index:3; padding:26px; color:#fff; width:100%; }
.cat-card .cat-icon{ font-size:1.7rem; color:var(--gold-light); margin-bottom:.5rem; }
.cat-card .cat-body h3{ color:#fff; font-size:1.5rem; margin:0 0 .3rem; }
.cat-card .cat-body span{ font-family:var(--font-eyebrow); text-transform:uppercase; letter-spacing:.16em; font-size:.7rem; color:var(--gold-light); display:inline-flex; align-items:center; gap:.5rem; }

/* ---- Product cards ---------------------------------------------- */
.product-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:30px; }
.product-card{
  background:var(--paper); border-radius:var(--radius); overflow:hidden;
  box-shadow:var(--shadow-sm); transition:transform .4s ease, box-shadow .4s ease;
  position:relative; display:flex; flex-direction:column;
}
.product-card:hover{ transform:translateY(-8px); box-shadow:var(--shadow-md); }
.product-media{ position:relative; aspect-ratio:4/3.4; overflow:hidden; background:var(--cream); }
.product-media img{ width:100%; height:100%; object-fit:cover; transition:transform .7s ease; }
.product-card:hover .product-media img{ transform:scale(1.08); }
.product-badge{
  position:absolute; top:14px; left:14px; z-index:2; background:var(--maroon);
  color:var(--cream); font-family:var(--font-eyebrow); text-transform:uppercase;
  letter-spacing:.1em; font-size:.62rem; padding:5px 12px; border-radius:2px;
}
.product-badge.sale{ background:var(--gold); color:var(--maroon-deep); }
.product-actions{
  position:absolute; top:14px; right:14px; z-index:2; display:flex; flex-direction:column; gap:8px;
  opacity:0; transform:translateX(12px); transition:all .35s ease;
}
.product-card:hover .product-actions{ opacity:1; transform:translateX(0); }
.product-actions button{
  width:38px; height:38px; border-radius:50%; border:none; background:#fff; color:var(--maroon);
  box-shadow:var(--shadow-sm); cursor:pointer; transition:all .25s; font-size:.95rem;
}
.product-actions button:hover{ background:var(--maroon); color:#fff; }
.product-actions button.active{ background:var(--gold); color:var(--maroon-deep); }
.product-body{ padding:20px 22px 24px; display:flex; flex-direction:column; flex:1; }
.product-body .p-cat{ font-family:var(--font-eyebrow); text-transform:uppercase; letter-spacing:.14em; font-size:.66rem; color:var(--gold-deep); }
.product-body h3{ font-size:1.15rem; margin:.4rem 0 .6rem; }
.product-body h3 a{ color:var(--maroon-deep); }
.product-rating{ color:var(--gold); font-size:.82rem; margin-bottom:.6rem; }
.product-price{ margin-top:auto; display:flex; align-items:baseline; gap:.6rem; }
.product-price .now{ font-family:var(--font-display); font-size:1.35rem; font-weight:700; color:var(--maroon); }
.product-price .was{ font-size:.9rem; color:var(--muted); text-decoration:line-through; }

/* ---- Tabs ------------------------------------------------------- */
.lux-tabs{ display:flex; justify-content:center; gap:.5rem; margin-bottom:42px; flex-wrap:wrap; }
.lux-tabs button{
  font-family:var(--font-eyebrow); text-transform:uppercase; letter-spacing:.14em; font-size:.78rem;
  background:transparent; border:1px solid var(--line); color:var(--ink);
  padding:.7rem 1.5rem; border-radius:2px; cursor:pointer; transition:all .3s;
}
.lux-tabs button.active, .lux-tabs button:hover{ background:var(--maroon); color:var(--cream); border-color:var(--maroon); }

/* ---- Why choose us ---------------------------------------------- */
.why-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(220px,1fr)); gap:30px; }
.why-card{ text-align:center; padding:36px 24px; background:var(--paper); border-radius:var(--radius); box-shadow:var(--shadow-sm); transition:transform .4s ease; }
.why-card:hover{ transform:translateY(-6px); }
.why-icon{
  width:74px; height:74px; margin:0 auto 18px; border-radius:50%;
  border:1px solid var(--gold); color:var(--gold-deep); display:flex; align-items:center;
  justify-content:center; font-size:1.7rem; transition:all .4s ease;
}
.why-card:hover .why-icon{ background:var(--maroon); color:var(--gold-light); border-color:var(--maroon); }
.why-card h4{ font-size:1.15rem; margin:0 0 .5rem; }
.why-card p{ color:var(--muted); font-size:.9rem; margin:0; }

/* ---- Brands ----------------------------------------------------- */
.brand-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(150px,1fr)); gap:24px; align-items:center; }
.brand-item{
  background:var(--paper); border-radius:var(--radius); padding:30px 20px; text-align:center;
  box-shadow:var(--shadow-sm); transition:all .35s ease; filter:grayscale(1); opacity:.7;
}
.brand-item:hover{ filter:grayscale(0); opacity:1; transform:translateY(-4px); }
.brand-item img{ height:46px; margin:0 auto 10px; object-fit:contain; }
.brand-item span{ font-family:var(--font-eyebrow); text-transform:uppercase; letter-spacing:.1em; font-size:.72rem; color:var(--maroon); }

/* ---- Testimonials ----------------------------------------------- */
.testi-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(280px,1fr)); gap:28px; }
.testi-card{ background:var(--paper); border-radius:var(--radius); padding:32px; box-shadow:var(--shadow-sm); position:relative; }
.testi-card .quote{ font-family:var(--font-display); font-size:3rem; color:var(--gold-light); line-height:.6; }
.testi-card .stars{ color:var(--gold); margin:.4rem 0 1rem; }
.testi-card p{ color:var(--ink); font-style:italic; }
.testi-author{ display:flex; align-items:center; gap:12px; margin-top:18px; }
.testi-author .av{ width:46px; height:46px; border-radius:50%; background:var(--maroon); color:var(--gold-light); display:flex; align-items:center; justify-content:center; font-family:var(--font-display); font-weight:700; }
.testi-author strong{ display:block; color:var(--maroon-deep); font-family:var(--font-display); }
.testi-author small{ color:var(--muted); }
.video-testi{ position:relative; border-radius:var(--radius); overflow:hidden; aspect-ratio:16/10; max-width:100%; box-shadow:var(--shadow-md); }
.video-testi iframe{ position:absolute; inset:0; width:100%; height:100%; border:0; }

/* ---- Blog ------------------------------------------------------- */
.blog-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(300px,1fr)); gap:30px; }
.blog-card{ background:var(--paper); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .4s ease; }
.blog-card:hover{ transform:translateY(-6px); }
.blog-card .blog-media{ aspect-ratio:16/10; overflow:hidden; }
.blog-card .blog-media img{ width:100%; height:100%; object-fit:cover; transition:transform .7s ease; }
.blog-card:hover .blog-media img{ transform:scale(1.08); }
.blog-body{ padding:24px; }
.blog-body .b-meta{ font-family:var(--font-eyebrow); text-transform:uppercase; letter-spacing:.12em; font-size:.66rem; color:var(--gold-deep); }
.blog-body h3{ font-size:1.2rem; margin:.5rem 0 .6rem; }
.blog-body p{ color:var(--muted); font-size:.9rem; }

/* ---- Newsletter ------------------------------------------------- */
.newsletter{ background:var(--maroon-deep); color:var(--cream); border-radius:var(--radius); padding:64px 40px; text-align:center; position:relative; overflow:hidden; }
.newsletter::before{ content:""; position:absolute; inset:18px; border:1px solid rgba(231,200,139,.3); pointer-events:none; }
.newsletter h2{ color:#fff; }
.newsletter .nl-form{ max-width:520px; margin:24px auto 0; display:flex; gap:10px; }
.newsletter input{ flex:1; padding:.95rem 1.2rem; border:none; border-radius:2px; font-family:var(--font-body); }
.newsletter .nl-msg{ margin-top:14px; font-size:.9rem; min-height:1.2em; }

/* ---- Footer ----------------------------------------------------- */
.site-footer{ background:var(--maroon-deep); color:rgba(247,241,230,.78); padding:72px 0 0; }
.site-footer h5{ color:var(--gold-light); font-family:var(--font-eyebrow); text-transform:uppercase; letter-spacing:.14em; font-size:.92rem; margin-bottom:1.2rem; }
.site-footer a{ color:rgba(247,241,230,.78); }
.site-footer a:hover{ color:var(--gold-light); }
.site-footer ul{ list-style:none; padding:0; margin:0; }
.site-footer ul li{ margin-bottom:.6rem; font-size:.9rem; }
.footer-links li a{ display:inline-flex; align-items:center; gap:.5rem; transition:color .25s ease, padding-left .25s ease; }
.footer-links li a i{ color:var(--gold); font-size:.8rem; transition:transform .25s ease; }
.footer-links li a:hover{ color:var(--gold-light); padding-left:.25rem; }
.footer-links li a:hover i{ transform:translateX(4px); }
.footer-brand .brand-name{ color:#fff; font-family:var(--font-eyebrow); font-size:1.8rem; letter-spacing:.1em; }
.footer-brand .brand-sub{ color:var(--gold-light); font-family:var(--font-eyebrow); letter-spacing:.4em; font-size:.6rem; }
.footer-contact li{ display:flex; gap:.7rem; align-items:flex-start; }
.footer-contact i{ color:var(--gold-light); margin-top:3px; }
.footer-socials a{ width:40px; height:40px; border:1px solid rgba(231,200,139,.35); border-radius:50%; display:inline-flex; align-items:center; justify-content:center; margin-right:8px; transition:all .3s; }
.footer-socials a:hover{ background:var(--gold); color:var(--maroon-deep); border-color:var(--gold); }
.footer-bottom{ border-top:1px solid rgba(231,200,139,.15); margin-top:54px; padding:22px 0; font-size:.82rem; text-align:center; }

/* ---- Floating buttons ------------------------------------------- */
.wa-float{
  position:fixed; bottom:26px; right:26px; z-index:900; width:58px; height:58px;
  background:#25D366; color:#fff; border-radius:50%; display:flex; align-items:center;
  justify-content:center; font-size:1.7rem; box-shadow:0 8px 24px rgba(37,211,102,.45);
  animation:wa-pulse 2.4s infinite;
}
@keyframes wa-pulse{ 0%{box-shadow:0 0 0 0 rgba(37,211,102,.5);} 70%{box-shadow:0 0 0 16px rgba(37,211,102,0);} 100%{box-shadow:0 0 0 0 rgba(37,211,102,0);} }
.call-float{
  position:fixed; bottom:94px; right:26px; z-index:900; width:58px; height:58px;
  background:var(--maroon-deep); color:var(--gold-light); border-radius:50%; display:flex; align-items:center;
  justify-content:center; font-size:1.5rem; box-shadow:0 8px 24px rgba(58,14,12,.45);
}
.call-float:hover{ background:var(--maroon); color:var(--gold-light); }
.to-top{
  position:fixed; bottom:162px; right:26px; z-index:900; width:50px; height:50px;
  background:var(--maroon); color:var(--gold-light); border:none; border-radius:50%;
  cursor:pointer; font-size:1.1rem; opacity:0; visibility:hidden; transition:all .35s; box-shadow:var(--shadow-sm);
}
.to-top.show{ opacity:1; visibility:visible; }
.to-top:hover{ background:var(--gold); color:var(--maroon-deep); }

/* ---- Page banner ------------------------------------------------ */
.page-banner{ background:var(--maroon-deep); color:var(--cream); padding:70px 0; text-align:center; position:relative; }
.page-banner h1{ color:#fff; font-size:clamp(2rem,4vw,3rem); }
.page-banner .crumbs{ font-family:var(--font-eyebrow); text-transform:uppercase; letter-spacing:.16em; font-size:.74rem; color:var(--gold-light); }
.page-banner .crumbs a{ color:var(--gold-light); }

/* ---- Product detail --------------------------------------------- */
.pd-gallery .pd-main{ border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); aspect-ratio:1/1; background:var(--cream); }
.pd-gallery .pd-main img{ width:100%; height:100%; object-fit:cover; }
.pd-thumbs{ display:flex; gap:12px; margin-top:14px; }
.pd-thumbs img{ width:80px; height:80px; object-fit:cover; border-radius:6px; cursor:pointer; border:2px solid transparent; transition:border .3s; }
.pd-thumbs img.active, .pd-thumbs img:hover{ border-color:var(--gold); }
.pd-info .p-cat{ font-family:var(--font-eyebrow); text-transform:uppercase; letter-spacing:.16em; color:var(--gold-deep); font-size:.74rem; }
.pd-info h1{ font-size:2.2rem; margin:.4rem 0; }
.pd-price{ font-family:var(--font-display); font-size:2rem; color:var(--maroon); font-weight:700; }
.pd-price .was{ font-size:1.1rem; color:var(--muted); text-decoration:line-through; margin-left:.6rem; }
.spec-table{ width:100%; border-collapse:collapse; }
.spec-table td{ padding:.7rem 1rem; border-bottom:1px solid var(--line); font-size:.92rem; }
.spec-table td:first-child{ font-weight:600; color:var(--maroon-deep); width:40%; }
.spec-label{ display:inline-flex; align-items:center; gap:.5rem; }
.spec-label i{ color:var(--gold-deep); font-size:1rem; flex-shrink:0; }
.feature-list{ list-style:none; padding:0; }
.feature-list li{ padding:.4rem 0 .4rem 1.8rem; position:relative; }
.feature-list li::before{ content:"\F26E"; font-family:"bootstrap-icons"; position:absolute; left:0; color:var(--gold-deep); }

/* Product detail tabs — Description / Specifications / Features */
.lux-detail-tabs{ border-bottom:none !important; gap:8px; flex-wrap:wrap; }
.lux-detail-tabs .nav-item{ margin-bottom:0; }
.lux-detail-tabs .nav-link{
  background:var(--dark-brown) !important;
  color:#fff !important;
  border:1px solid var(--dark-brown) !important;
  border-radius:8px 8px 0 0 !important;
  padding:.75rem 1.5rem;
  font-family:var(--font-eyebrow);
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:.82rem;
  transition:background .25s ease, color .25s ease;
}
.lux-detail-tabs .nav-link:hover{ background:var(--dark-brown-deep) !important; color:#fff !important; }
.lux-detail-tabs .nav-link.active{ background:var(--gold-deep) !important; color:#fff !important; border-color:var(--gold-deep) !important; }

/* ---- Forms ------------------------------------------------------ */
.lux-form .form-control, .lux-form .form-select{
  border:1px solid var(--line); border-radius:4px; padding:.85rem 1rem; font-family:var(--font-body);
}
.lux-form .form-control:focus, .lux-form .form-select:focus{ border-color:var(--gold); box-shadow:0 0 0 3px rgba(193,154,87,.15); }

/* ---- Reveal animation defaults (GSAP enhances these) ------------ */
.reveal{ opacity:0; transform:translateY(34px); }

/* ---- Quick view modal ------------------------------------------- */
.qv-overlay{ position:fixed; inset:0; background:rgba(36,31,28,.7); z-index:1100; display:none; align-items:center; justify-content:center; padding:20px; }
.qv-overlay.open{ display:flex; }
.qv-box{ background:#fff; border-radius:var(--radius); max-width:820px; width:100%; overflow:hidden; box-shadow:var(--shadow-md); max-height:90vh; overflow-y:auto; }

/* ---- Responsive ------------------------------------------------- */
@media (max-width:991px){
  .gallery-strip{ grid-template-columns:repeat(3,1fr); }
  .main-nav{
    position:fixed; top:0; right:-100%; width:78%; max-width:340px; height:100vh;
    background:var(--cream-soft); flex-direction:column; align-items:flex-start;
    padding:90px 30px; gap:1.2rem; box-shadow:var(--shadow-md); transition:right .4s ease; z-index:1050;
  }
  .main-nav.open{ right:0; }
  .nav-toggle{ display:block; z-index:1060; }
  .nav-dropdown{ position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; border:none; padding-left:1rem; display:none; }
  .nav-item-dd.open .nav-dropdown{ display:block; }
}
@media (max-width:575px){
  .gallery-strip{ grid-template-columns:repeat(2,1fr); }
  .hero{ height:78vh; }
  .newsletter .nl-form{ flex-direction:column; }
  .section{ padding:64px 0; }
}

/* reduced motion */
@media (prefers-reduced-motion:reduce){
  *{ animation:none!important; transition:none!important; }
  .reveal{ opacity:1; transform:none; }
}

/* ====================================================================
   Supplementary utilities (about, contact, blog, cms pages)
   ==================================================================== */
.section-title{ font-size:clamp(1.8rem,3.5vw,2.7rem); margin:.4rem 0 1rem; }
.btn-lux-outline{
  display:inline-block; padding:14px 34px; border-radius:40px; font-family:'Poppins',sans-serif;
  letter-spacing:1px; text-transform:uppercase; font-size:.85rem; border:1px solid var(--gold);
  color:var(--gold-light); background:transparent; transition:all .35s ease; cursor:pointer;
}
.btn-lux-outline:hover{ background:var(--gold); color:var(--maroon-deep); transform:translateY(-2px); }
.cms-content{ color:var(--ink); line-height:1.9; font-size:1.02rem; }
.cms-content p{ margin:0 0 1.1rem; }
.cms-content h2,.cms-content h3{ font-family:'Poppins',sans-serif; margin:1.6rem 0 .8rem; color:var(--maroon-deep); }
.cms-content ul,.cms-content ol{ margin:0 0 1.1rem 1.2rem; }
.cms-content li{ margin:.4rem 0; }
.cms-content a{ color:var(--maroon); text-decoration:underline; }
.stat-num{ font-family:'Poppins',sans-serif; font-size:clamp(2.2rem,5vw,3.4rem); font-weight:700; color:var(--maroon); line-height:1; }
.stat-label{ font-family:'Poppins',sans-serif; text-transform:uppercase; letter-spacing:1px; color:var(--muted); font-size:.85rem; margin-top:.5rem; }
.cta-band{ background:linear-gradient(135deg,var(--maroon-deep),var(--maroon)); color:var(--cream); padding:72px 0; text-align:center; }
.cta-band h2{ color:var(--gold-light); font-size:clamp(1.8rem,3.5vw,2.6rem); margin:0 0 .6rem; }
.cta-band p{ color:rgba(255,255,255,.82); max-width:620px; margin:0 auto; }

/* Blog cards */
.blog-card2{ background:var(--paper); border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); transition:transform .4s ease,box-shadow .4s ease; height:100%; display:flex; flex-direction:column; }
.blog-card2:hover{ transform:translateY(-6px); box-shadow:var(--shadow-md); }
.blog-card2 .bc-img{ aspect-ratio:16/10; overflow:hidden; }
.blog-card2 .bc-img img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.blog-card2:hover .bc-img img{ transform:scale(1.06); }
.blog-card2 .bc-body{ padding:24px; display:flex; flex-direction:column; flex:1; }
.blog-card2 .bc-meta{ font-family:'Poppins',sans-serif; text-transform:uppercase; letter-spacing:1px; font-size:.72rem; color:var(--gold); margin-bottom:.5rem; }
.blog-card2 .bc-body h3{ font-size:1.2rem; margin:0 0 .6rem; line-height:1.35; }
.blog-card2 .bc-body h3 a{ color:var(--ink); }
.blog-card2 .bc-body h3 a:hover{ color:var(--maroon); }
.blog-card2 .bc-body p{ color:var(--muted); font-size:.92rem; margin:0 0 1rem; flex:1; }
.blog-read{ font-family:'Poppins',sans-serif; text-transform:uppercase; letter-spacing:1px; font-size:.78rem; color:var(--maroon); }
.blog-read i{ transition:transform .3s ease; }
.blog-read:hover i{ transform:translateX(4px); }

/* Contact */
.contact-card{ background:var(--paper); border-radius:var(--radius); padding:30px; box-shadow:var(--shadow-sm); height:100%; }
.contact-ico{ width:50px; height:50px; border-radius:50%; background:var(--cream); color:var(--maroon); display:flex; align-items:center; justify-content:center; font-size:1.3rem; border:1px solid var(--gold); margin-bottom:1rem; }
.contact-card h3{ font-size:1.1rem; margin:0 0 .4rem; }
.contact-card p,.contact-card a{ color:var(--muted); font-size:.95rem; margin:0; }
.contact-card a:hover{ color:var(--maroon); }
.blog-detail-content{ color:var(--ink); line-height:1.95; font-size:1.05rem; }
.blog-detail-content p{ margin:0 0 1.2rem; }

/* Share icons + form helpers */
.share-ic{ width:40px; height:40px; border-radius:50%; display:inline-flex; align-items:center; justify-content:center; background:var(--cream); color:var(--maroon); border:1px solid var(--gold); transition:all .3s ease; }
.share-ic:hover{ background:var(--maroon); color:var(--gold-light); transform:translateY(-2px); }
.lux-form .form-label{ font-family:'Poppins',sans-serif; text-transform:uppercase; letter-spacing:.5px; font-size:.78rem; color:var(--ink); margin-bottom:.35rem; }
.form-status{ font-size:.9rem; }
.form-status.ok{ color:#2e7d32; }
.form-status.err{ color:#c62828; }

/* ====================================================================
   v2 UPDATES — hero, animated bg, touch actions, wishlist
   ==================================================================== */

/* ---- Product actions visible on touch devices (no hover) ---- */
@media (hover: none), (pointer: coarse) {
  .product-actions{ opacity:1 !important; transform:none !important; }
}
/* Heart filled state colour */
.product-actions button.active{ background:var(--maroon); color:#fff; }
.js-wishlist.active i, .product-actions .js-wishlist.active i{ color:#fff; }

/* ---- Animated hero captions (run on every slide change) ---- */
.hero-slide.active .eyebrow{ animation:heroUp .8s .15s both; }
.hero-slide.active h1{ animation:heroUp .9s .30s both; }
.hero-slide.active p{ animation:heroUp .9s .45s both; }
.hero-slide.active .btn-lux{ animation:heroUp .9s .60s both; }
@keyframes heroUp{ from{ opacity:0; transform:translateY(38px); } to{ opacity:1; transform:translateY(0); } }

/* gold sweep line under hero heading on active slide */
.hero-content h1::after{
  content:""; display:block; width:0; height:2px; margin-top:18px;
  background:linear-gradient(90deg,var(--gold),transparent);
}
.hero-slide.active .hero-content h1::after{ animation:heroLine 1s .8s both; }
@keyframes heroLine{ from{ width:0; } to{ width:120px; } }

/* slightly faster, more cinematic Ken Burns */
.hero-slide .hero-bg{ transition:transform 8s ease; }
.hero-slide.active .hero-bg{ transform:scale(1); }

/* ---- Smaller, attractive hero on mobile ---- */
@media (max-width:768px){
  .hero{ height:auto; min-height:0; }
  .hero-slide{ position:relative; min-height:62vh; }
  .hero-slide:not(.active){ display:none; }
  .hero-content{ text-align:center; margin:0 auto; padding:0 6px; }
  .hero-content p{ margin-left:auto; margin-right:auto; }
  .hero-frame{ inset:16px; }
  .hero-arrow{ width:40px; height:40px; font-size:1rem; }
  .hero-arrow.prev{ left:12px; } .hero-arrow.next{ right:12px; }
  .hero-nav{ bottom:16px; }
}
@media (max-width:575px){
  .hero-slide{ min-height:54vh; }
  .hero-content h1{ font-size:clamp(2rem,9vw,2.8rem); }
  .hero-content p{ font-size:.98rem; margin-bottom:1.4rem; }
}

/* ---- Floating furniture-icon animated background (home) ---- */
.furni-bg{ position:absolute; inset:0; overflow:hidden; pointer-events:none; z-index:0; }
.furni-bg i{
  position:absolute; color:var(--gold); opacity:.06; font-size:64px;
  animation:furniFloat linear infinite;
}
.section.has-furni{ position:relative; }
.section.has-furni > .container{ position:relative; z-index:1; }
@keyframes furniFloat{
  0%{ transform:translateY(20px) rotate(-6deg); }
  50%{ transform:translateY(-26px) rotate(6deg); }
  100%{ transform:translateY(20px) rotate(-6deg); }
}
.furni-bg i:nth-child(1){ left:4%;  top:18%; font-size:54px; animation-duration:11s; }
.furni-bg i:nth-child(2){ left:20%; top:62%; font-size:78px; animation-duration:14s; opacity:.05; }
.furni-bg i:nth-child(3){ left:38%; top:12%; font-size:46px; animation-duration:9s;  }
.furni-bg i:nth-child(4){ left:55%; top:70%; font-size:64px; animation-duration:13s; }
.furni-bg i:nth-child(5){ left:72%; top:22%; font-size:88px; animation-duration:16s; opacity:.045; }
.furni-bg i:nth-child(6){ left:86%; top:58%; font-size:52px; animation-duration:10s; }
.furni-bg i:nth-child(7){ left:64%; top:40%; font-size:40px; animation-duration:12s; }
.furni-bg i:nth-child(8){ left:12%; top:38%; font-size:60px; animation-duration:15s; }

@media (prefers-reduced-motion:reduce){
  .furni-bg i{ animation:none; }
  .hero-slide.active .eyebrow,.hero-slide.active h1,.hero-slide.active p,.hero-slide.active .btn-lux{ animation:none; }
}

/* ---- Shop toolbar (v2) ---- */
.shop-toolbar{ display:flex; flex-wrap:wrap; gap:14px; align-items:center; justify-content:space-between; margin-bottom:22px; }
.st-search{ position:relative; flex:1 1 320px; min-width:240px; }
.st-search .form-control{ width:100%; padding-right:48px; }
.st-search-btn{ position:absolute; right:6px; top:50%; transform:translateY(-50%); width:36px; height:36px; border:none; border-radius:4px; background:var(--maroon); color:#fff; cursor:pointer; }
.st-search-btn:hover{ background:var(--maroon-deep); }
.st-selects{ display:flex; gap:10px; flex-wrap:wrap; align-items:center; }
.st-selects .form-select{ min-width:178px; cursor:pointer; }
.st-apply{ white-space:nowrap; }
.shop-chips{ display:flex; flex-wrap:wrap; gap:10px; margin-bottom:30px; }
.shop-chips .chip{
  font-family:var(--font-eyebrow,'Poppins',sans-serif); text-transform:uppercase; letter-spacing:.06em;
  font-size:.72rem; padding:8px 16px; border:1px solid var(--line); border-radius:30px;
  color:var(--ink); background:#fff; transition:all .25s ease;
}
.shop-chips .chip:hover{ border-color:var(--gold); color:var(--maroon); }
.shop-chips .chip.active{ background:var(--maroon); color:#fff; border-color:var(--maroon); }
@media (max-width:575px){
  .st-selects{ width:100%; }
  .st-selects .form-select{ flex:1; min-width:0; }
}

/* ====================================================================
   v4 UPDATES — logo, benefits, offers, gallery, bulk, gift, video
   ==================================================================== */

/* ---- Logo ---- */
.brand-logo{ height:52px; width:auto; display:block; }
.footer-logo{ height:54px; width:auto; background:var(--cream); padding:8px 14px; border-radius:10px; }
@media (max-width:575px){ .brand-logo{ height:42px; } }

/* ---- Contact CTA on product cards ---- */
.btn-contact-cta{ margin-top:auto; width:100%; justify-content:center; font-size:.76rem; padding:.7rem 1rem; }
.product-body{ gap:0; }

/* ---- Product-detail offer / contact ---- */
.pd-offer{ display:flex; align-items:center; gap:12px; flex-wrap:wrap; }
.pd-offer-badge{ background:var(--maroon); color:var(--gold-light); font-weight:600; padding:6px 16px; border-radius:30px; font-size:.85rem; }
.pd-offer-note{ color:var(--gold-deep); font-size:.92rem; font-weight:500; }

/* ---- Benefits / trust strip ---- */
.benefits-strip{ display:grid; grid-template-columns:repeat(6,1fr); gap:14px; margin:26px 0 6px; }
.benefits-strip.compact{ grid-template-columns:repeat(3,1fr); margin-top:24px; }
.benefit{ display:flex; flex-direction:column; align-items:center; text-align:center; gap:8px;
  background:var(--paper); border:1px solid var(--line); border-radius:12px; padding:16px 10px; transition:transform .3s ease, box-shadow .3s ease; }
.benefit:hover{ transform:translateY(-4px); box-shadow:var(--shadow-sm); }
.benefit i{ font-size:1.5rem; color:var(--gold-deep); }
.benefit span{ font-size:.78rem; font-weight:600; color:var(--maroon-deep); line-height:1.3; }
.benefits-tc{ grid-column:1/-1; text-align:center; font-size:.76rem; color:var(--muted); margin:6px 0 0; }
@media (max-width:768px){ .benefits-strip, .benefits-strip.compact{ grid-template-columns:repeat(2,1fr); } }

/* ---- Big offer band (up to 60% off) ---- */
.offer-band{ background:linear-gradient(120deg,var(--maroon-deep),var(--maroon) 60%,#7a2a22);
  color:#fff; border-radius:var(--radius); padding:48px 40px; position:relative; overflow:hidden; text-align:center; }
.offer-band::after{ content:"%"; position:absolute; right:-10px; bottom:-40px; font-size:16rem; font-weight:800;
  color:rgba(231,200,139,.10); font-family:var(--font-display); line-height:1; }
.offer-band .eyebrow{ color:var(--gold-light); }
.offer-band .eyebrow::before{ background:var(--gold-light); }
.offer-band h2{ color:#fff; font-size:clamp(2.4rem,6vw,4rem); margin:.4rem 0; }
.offer-band h2 .hl{ color:var(--gold-light); }
.offer-band p{ color:rgba(255,255,255,.85); max-width:560px; margin:0 auto 1.4rem; }

/* ---- Feature bands (catalog / customised / gift) ---- */
.feature-band{ display:grid; grid-template-columns:1fr 1fr; gap:0; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-sm); }
.feature-band .fb-text{ padding:44px; background:var(--paper); }
.feature-band .fb-visual{ background:linear-gradient(135deg,var(--gold),var(--gold-light)); display:flex; align-items:center; justify-content:center; color:var(--maroon-deep); font-size:6rem; }
.feature-band h3{ font-size:1.7rem; margin:0 0 .8rem; }
.feature-band p{ color:var(--muted); margin:0 0 1.4rem; }
@media (max-width:768px){ .feature-band{ grid-template-columns:1fr; } .feature-band .fb-visual{ min-height:160px; font-size:4rem; } }

/* ---- Highlight cards row (why shivankar) ---- */
.highlight-row{ display:grid; grid-template-columns:repeat(auto-fit,minmax(180px,1fr)); gap:18px; }
.highlight-card{ background:var(--paper); border:1px solid var(--line); border-radius:14px; padding:26px 20px; text-align:center; }
.highlight-card i{ font-size:2rem; color:var(--gold-deep); }
.highlight-card h4{ font-size:1.05rem; margin:.7rem 0 .4rem; }
.highlight-card p{ font-size:.85rem; color:var(--muted); margin:0; }

/* ---- Showroom video ---- */
.showroom-video{ position:relative; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-md); aspect-ratio:16/9; max-width:100%; background:#000; }
.showroom-video iframe, .showroom-video video{ position:absolute; inset:0; width:100%; height:100%; border:0; object-fit:cover; display:block; }

/* ---- Gallery page ---- */
.showroom-grid{ display:grid; grid-template-columns:repeat(auto-fill,minmax(260px,1fr)); gap:16px; }
.showroom-grid .sg-item{ position:relative; border-radius:12px; overflow:hidden; aspect-ratio:4/3; box-shadow:var(--shadow-sm); }
.showroom-grid .sg-item img{ width:100%; height:100%; object-fit:cover; transition:transform .6s ease; }
.showroom-grid .sg-item:hover img{ transform:scale(1.08); }
.showroom-grid .sg-item .sg-cap{ position:absolute; inset:auto 0 0 0; padding:14px; color:#fff;
  background:linear-gradient(transparent, rgba(58,14,12,.8)); font-size:.85rem; font-weight:500; }

/* ---- Bulk order industries ---- */
.industry-grid{ display:grid; grid-template-columns:repeat(auto-fit,minmax(160px,1fr)); gap:16px; margin-bottom:14px; }
.industry-card{ text-align:center; padding:26px 16px; border:1px solid var(--line); border-radius:14px; background:var(--paper); transition:transform .3s ease,border-color .3s ease; }
.industry-card:hover{ transform:translateY(-4px); border-color:var(--gold); }
.industry-card i{ font-size:2.2rem; color:var(--maroon); }
.industry-card h4{ font-size:1rem; margin:.6rem 0 .3rem; }
.industry-card p{ font-size:.82rem; color:var(--muted); margin:0; }

/* ---- Download catalog button ---- */
.catalog-cta{ display:inline-flex; align-items:center; gap:.6rem; }

/* ---- Grand Opening Popup ---- */
.promo-overlay{
  position:fixed; inset:0; background:rgba(58,14,12,.72);
  display:flex; align-items:center; justify-content:center;
  z-index:9999; padding:20px; opacity:0; visibility:hidden;
  transition:opacity .35s ease, visibility .35s ease;
  backdrop-filter:blur(3px);
}
.promo-overlay.show{ opacity:1; visibility:visible; }
.promo-modal{
  position:relative; width:100%; max-width:460px;
  background:var(--cream-soft); border-radius:18px; overflow:hidden;
  box-shadow:0 25px 70px rgba(0,0,0,.45);
  transform:scale(.9) translateY(10px); opacity:0;
  transition:transform .4s cubic-bezier(.2,.8,.2,1), opacity .4s ease;
}
.promo-overlay.show .promo-modal{ transform:scale(1) translateY(0); opacity:1; }
.promo-close{
  position:absolute; top:10px; right:10px; z-index:2;
  width:34px; height:34px; border-radius:50%; border:none;
  background:rgba(0,0,0,.55); color:#fff; font-size:1.4rem; line-height:1;
  display:flex; align-items:center; justify-content:center; cursor:pointer;
  transition:background .25s ease, transform .25s ease;
}
.promo-close:hover{ background:var(--maroon); transform:rotate(90deg); }
.promo-img-link{ display:block; }
.promo-img{ width:100%; height:auto; display:block; }
.promo-cta-row{
  display:flex; gap:10px; padding:16px; background:var(--maroon-deep);
  flex-wrap:wrap;
}
.promo-cta-row .btn-lux{ flex:1; justify-content:center; white-space:nowrap; font-size:.82rem; padding:12px 14px; }
.promo-ghost.btn-ghost{ color:var(--gold-light); border-color:var(--gold); background:transparent; }
.promo-ghost.btn-ghost:hover{ background:var(--gold); color:var(--maroon-deep); }
@media (max-width:480px){
  .promo-modal{ max-width:94vw; }
  .promo-cta-row{ flex-direction:column; }
}
