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

/* ─── VARIABLES ─────────────────────────────────── */
:root {
  --maroon:      #3d1a1a;
  --maroon-dk:   #2a1010;
  --gold:        #c9821a;
  --gold-lt:     #e8a020;
  --cream:       #faf5ee;
  --cream2:      #f2ead8;
  --text:        #1c1209;
  --muted:       #7c6a50;
  --border:      #e8ddd0;
  --radius:      10px;
}
*{box-sizing:border-box;margin:0;padding:0}
body{font-family:'DM Sans',sans-serif;color:var(--text);background:#fff;font-size:14px}
a{text-decoration:none;color:inherit}
img{display:block;max-width:100%}

/* ─── TOPBAR ─────────────────────────────────────── */
.topbar{
  background:var(--maroon);
  color:rgba(255,255,255,.82);
  font-size:.75rem;
  padding:.4rem 1rem;
}
.topbar .wrap{
  display:flex;justify-content:space-between;align-items:center;
  max-width:1400px;margin:0 auto;
}
.topbar a{color:rgba(255,255,255,.82)}
.topbar a:hover{color:var(--gold-lt)}

/* ─── NAVBAR ─────────────────────────────────────── */
.navbar{
  background:#fff;
  border-bottom:1px solid var(--border);
  position:sticky;top:0;z-index:1000;
  box-shadow:0 2px 8px rgba(0,0,0,.06);
}
.nav-top{
  display:flex;align-items:center;justify-content:space-between;
  padding:.7rem 1.5rem;
  max-width:1400px;margin:0 auto;gap:1rem;
}
.brand{
  font-family:'Playfair Display',serif;
  font-size:1.6rem;font-weight:700;
  color:var(--text);white-space:nowrap;
}
.brand span{color:var(--gold)}
.search-wrap{
  flex:1;max-width:380px;
  display:flex;border:1.5px solid var(--border);
  border-radius:50px;overflow:hidden;background:#fafafa;
}
.search-wrap input{
  flex:1;border:none;outline:none;
  padding:.45rem 1rem;font-size:.85rem;
  background:transparent;font-family:'DM Sans',sans-serif;
}
.search-wrap button{
  background:var(--gold);border:none;
  padding:.45rem .9rem;color:#fff;cursor:pointer;font-size:.85rem;
}
.nav-icons{display:flex;align-items:center;gap:1.1rem}
.nav-icons a{color:var(--text);font-size:1.1rem;position:relative}
.nav-icons a:hover{color:var(--gold)}
.cart-badge{
  position:absolute;top:-5px;right:-7px;
  background:var(--maroon);color:#fff;
  font-size:.58rem;font-weight:700;
  width:15px;height:15px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
}
.nav-links{
  display:flex;gap:.2rem;
  padding:.35rem 1.5rem .5rem;
  border-top:1px solid var(--border);
  max-width:1400px;margin:0 auto;
  overflow-x:auto;
}
.nl{
  font-size:.85rem;font-weight:500;
  color:#333;padding:.3rem .65rem;
  border-radius:4px;white-space:nowrap;
  transition:color .15s,background .15s;
}
.nl:hover,.nl.active{color:var(--gold);background:rgba(201,130,26,.08)}


@media(max-width:768px){

.nav-top{
  padding:.6rem 1rem;
  gap:.5rem;
}

/* smaller logo */
.brand{
  font-size:1.2rem;
}

/* smaller search */
.search-wrap{
  max-width:180px;
}

/* icons smaller */
.nav-icons{
  gap:.6rem;
}

.nav-icons a{
  font-size:1rem;
}

}


/* ─── HERO ───────────────────────────────────────── */
.hero{position:relative;height:460px;overflow:hidden}
.hero-img{
  width:100%;height:100%;object-fit:cover;object-position:center top;
}
.hero-grad{
  position:absolute;inset:0;
  background:linear-gradient(90deg,rgba(15,5,0,.75) 0%,rgba(15,5,0,.38) 55%,transparent 100%);
}
.hero-body{
  position:absolute;inset:0;
  display:flex;flex-direction:column;justify-content:center;
  padding:0 2.5rem;
}
.hero-pill{
  display:inline-flex;align-items:center;gap:.35rem;
  background:rgba(201,130,26,.22);
  border:1px solid rgba(201,130,26,.45);
  color:var(--gold-lt);
  font-size:.72rem;font-weight:600;letter-spacing:.6px;
  text-transform:uppercase;
  padding:.25rem .8rem;border-radius:50px;
  width:fit-content;margin-bottom:.9rem;
}
.hero-body h1{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.9rem,4vw,3.2rem);
  font-weight:700;color:#fff;line-height:1.18;margin-bottom:.8rem;
}
.hero-body h1 em{font-style:italic;color:var(--gold-lt)}
.hero-body p{color:rgba(255,255,255,.78);font-size:.92rem;line-height:1.65;margin-bottom:1.5rem}
.hero-btns{display:flex;gap:.8rem;flex-wrap:wrap}
.btn-gold{
  background:var(--gold);color:#fff;border:none;
  padding:.62rem 1.65rem;border-radius:6px;
  font-weight:600;font-size:.9rem;cursor:pointer;
  transition:background .2s;display:inline-block;
}
.btn-gold:hover{background:var(--gold-lt);color:#fff}
.btn-outline-w{
  background:transparent;color:#fff;
  border:1.5px solid rgba(255,255,255,.55);
  padding:.62rem 1.65rem;border-radius:6px;
  font-weight:600;font-size:.9rem;cursor:pointer;
  transition:all .2s;display:inline-block;
}
.btn-outline-w:hover{background:rgba(255,255,255,.1);color:#fff}

/* ─── TRUST STRIP ────────────────────────────────── */
.trust-strip{
  background:var(--cream);
  border-bottom:1px solid var(--border);
  padding:.7rem 1.5rem;
}
.trust-wrap{
  display:flex;max-width:1400px;margin:0 auto;
}
.trust-item{
  flex:1;display:flex;align-items:center;gap:.65rem;
  padding:.45rem 1rem;
  border-right:1px solid var(--border);
}
.trust-item:last-child{border-right:none}
.trust-item i{font-size:1.3rem;color:var(--gold);flex-shrink:0}
.t-title{font-weight:600;font-size:.82rem}
.t-sub{font-size:.72rem;color:var(--muted)}

/* ─── SECTIONS ───────────────────────────────────── */
.sec{padding:2.8rem 1.5rem}
.sec-inner{max-width:1400px;margin:0 auto}
.bg-white{background:#fff}
.bg-cream{background:var(--cream)}
.sec-title{
  font-family:'Playfair Display',serif;
  font-size:clamp(1.4rem,2.5vw,1.9rem);
  font-weight:700;color:var(--text);
}
.sec-sub{color:var(--muted);font-size:.85rem;margin-top:.25rem}
.view-all{color:var(--gold);font-weight:600;font-size:.82rem}
.view-all:hover{color:var(--maroon)}

/* ─── EVENT CARDS ────────────────────────────────── */
.event-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:.75rem;margin-top:1.4rem;
}
.ev-card{
  position:relative;border-radius:var(--radius);
  overflow:hidden;display:block;
  transition:transform .22s,box-shadow .22s;
}
.ev-card:hover{transform:translateY(-3px);box-shadow:0 10px 28px rgba(0,0,0,.14)}
.ev-card img{
  width:100%;height:195px;object-fit:cover;
  transition:transform .3s;
}
.ev-card:hover img{transform:scale(1.04)}
.ev-label{
  position:absolute;bottom:0;left:0;right:0;
  background:linear-gradient(to top,rgba(0,0,0,.72),transparent);
  padding:1.4rem .85rem .7rem;
}
.ev-label strong{
  display:block;color:#fff;
  font-family:'Playfair Display',serif;
  font-size:.92rem;font-weight:700;
}
.ev-label small{color:rgba(255,255,255,.72);font-size:.72rem;margin-top:.1rem;display:block}

/* ─── PRODUCT CARDS ──────────────────────────────── */
.product-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:.75rem;margin-top:1rem;
}
.pc-link{display:block;color:inherit;text-decoration:none}
.pc{
  background:#fff;
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  transition:transform .22s,box-shadow .22s;
}
.pc:hover{transform:translateY(-3px);box-shadow:0 10px 28px rgba(0,0,0,.1)}
.pc-img{position:relative;background:var(--cream);overflow:hidden}
.pc-img img{
  width:100%;height:175px;object-fit:cover;
  transition:transform .3s;
}
.pc:hover .pc-img img{transform:scale(1.05)}
.tag-off{
  position:absolute;top:.45rem;left:.45rem;
  background:var(--maroon);color:#fff;
  font-size:.62rem;font-weight:700;
  padding:.15rem .42rem;border-radius:4px;
  text-transform:uppercase;
}
.tag-custom{
  position:absolute;top:.45rem;right:.45rem;
  background:var(--gold);color:#fff;
  font-size:.62rem;font-weight:700;
  padding:.15rem .42rem;border-radius:4px;
}
.pc-info{padding:.7rem .75rem}
.pc-cat{font-size:.7rem;color:var(--muted);margin-bottom:.18rem}
.pc-name{
  font-weight:600;font-size:.85rem;
  line-height:1.35;min-height:2.3em;
  margin-bottom:.32rem;
}
.pc-stars{font-size:.7rem;color:var(--gold);margin-bottom:.38rem}
.pc-stars span{color:var(--muted)}
.pc-row{display:flex;justify-content:space-between;align-items:flex-end}
.pc-price{font-size:.98rem;font-weight:700}
.pc-old{font-size:.74rem;color:var(--muted);text-decoration:line-through;margin-left:.25rem}
.pc-min{font-size:.66rem;color:var(--muted);margin-top:.08rem}
.pc-btn{
  width:30px;height:30px;
  background:var(--maroon);border:none;
  border-radius:50%;color:#fff;font-size:.82rem;
  cursor:pointer;display:flex;align-items:center;justify-content:center;
  flex-shrink:0;transition:background .2s;
}
.pc-btn:hover{background:var(--gold)}

/* ─── BULK BANNER ────────────────────────────────── */
.bulk-banner{
  background:var(--maroon);
  padding:1.8rem 1.5rem;
}
.bulk-inner{
  max-width:1400px;margin:0 auto;
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:1.2rem;
}
.bulk-banner h3{
  font-family:'Playfair Display',serif;
  color:#fff;font-size:1.4rem;margin-bottom:.3rem;
}
.bulk-banner p{color:rgba(255,255,255,.72);font-size:.85rem;margin:0}

/* ─── TESTIMONIALS ───────────────────────────────── */
.testi-grid{
  display:grid;grid-template-columns:repeat(4,1fr);
  gap:.75rem;margin-top:1.4rem;
}
.testi{
  background:#fff;border:1px solid var(--border);
  border-radius:var(--radius);padding:1.2rem;
}
.testi-stars{color:var(--gold);font-size:.95rem;margin-bottom:.6rem}
.testi p{
  font-size:.82rem;color:#555;font-style:italic;
  line-height:1.65;margin-bottom:.9rem;
}
.testi-author strong{display:block;font-size:.8rem}
.testi-author span{font-size:.72rem;color:var(--muted)}

/* ─── NEWSLETTER ─────────────────────────────────── */
.newsletter{
  background:var(--cream2);padding:2.5rem 1.5rem;text-align:center;
}
.newsletter h3{
  font-family:'Playfair Display',serif;
  font-size:1.55rem;font-weight:700;margin-bottom:.4rem;
}
.newsletter p{color:var(--muted);font-size:.87rem;margin-bottom:1.3rem}
.nl-form{
  display:inline-flex;max-width:400px;width:100%;
  border:1.5px solid var(--border);border-radius:6px;
  overflow:hidden;background:#fff;
}
.nl-form input{
  flex:1;border:none;outline:none;
  padding:.6rem 1rem;font-size:.85rem;
  font-family:'DM Sans',sans-serif;
}
.nl-form button{
  background:var(--gold);border:none;
  padding:.6rem 1.3rem;color:#fff;
  font-weight:600;font-size:.85rem;cursor:pointer;
}
.nl-form button:hover{background:var(--gold-lt)}

/* ─── FOOTER ─────────────────────────────────────── */
footer{
  background:var(--maroon-dk);
  color:rgba(255,255,255,.7);
  padding:2.5rem 1.5rem 0;
}
.foot-grid{
  display:grid;
  grid-template-columns:1.4fr 1fr 1fr 1.2fr;
  gap:2rem;max-width:1400px;margin:0 auto;
}
.foot-brand{
  font-family:'Playfair Display',serif;
  font-size:1.4rem;font-weight:700;color:#fff;margin-bottom:.6rem;
}
.foot-brand span{color:var(--gold-lt)}
.foot-desc{font-size:.8rem;line-height:1.7;color:rgba(255,255,255,.55)}
.foot-h{
  font-size:.78rem;font-weight:700;color:#fff;
  text-transform:uppercase;letter-spacing:.8px;margin-bottom:.85rem;
}
footer a{
  display:block;font-size:.8rem;color:rgba(255,255,255,.58);
  margin-bottom:.4rem;transition:color .2s;
}
footer a:hover{color:var(--gold-lt)}
.foot-contact{
  display:flex;align-items:center;gap:.5rem;
  font-size:.8rem;color:rgba(255,255,255,.6);margin-bottom:.5rem;
}
.foot-contact i{color:var(--gold-lt);width:13px;font-size:.82rem}
.foot-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  text-align:center;padding:1rem 0;margin-top:2rem;
  font-size:.75rem;color:rgba(255,255,255,.35);
  max-width:1400px;margin:2rem auto 0;
}

/* ═══════════════════════════════════════════════════
   PRODUCT DETAIL PAGE
   ═══════════════════════════════════════════════════ */
.pd-wrap{
  max-width:1400px;margin:0 auto;
  padding:2rem 1.5rem;
  display:grid;grid-template-columns:1fr 1fr;gap:3rem;
}
/* Left */
.pd-img-main{
  background:var(--cream);border:1px solid var(--border);
  border-radius:var(--radius);overflow:hidden;
  display:flex;align-items:center;justify-content:center;
  min-height:380px;
}
.pd-img-main img{width:100%;height:380px;object-fit:cover}
.pd-thumbs{display:flex;gap:.5rem;margin-top:.7rem}
.pd-thumb{
  width:66px;height:66px;border:2px solid var(--border);
  border-radius:6px;overflow:hidden;cursor:pointer;transition:border-color .2s;
}
.pd-thumb.on,.pd-thumb:hover{border-color:var(--gold)}
.pd-thumb img{width:100%;height:100%;object-fit:cover}

/* Right */
.pd-cat-link{
  font-size:.75rem;font-weight:700;color:var(--gold);
  text-transform:uppercase;letter-spacing:.5px;margin-bottom:.4rem;display:block;
}
.pd-cat-link:hover{color:var(--maroon)}
.pd-title{
  font-family:'Playfair Display',serif;
  font-size:2rem;font-weight:700;
  line-height:1.2;margin-bottom:.6rem;
}
.pd-rating-row{display:flex;align-items:center;gap:.5rem;margin-bottom:.85rem}
.pd-stars{color:var(--gold);font-size:.95rem}
.pd-rnum{font-weight:700;font-size:.88rem}
.pd-rcnt{color:var(--muted);font-size:.82rem}

.pd-price-row{display:flex;align-items:baseline;gap:.6rem;margin-bottom:.85rem}
.pd-price{
  font-family:'Playfair Display',serif;
  font-size:2.4rem;font-weight:700;
}
.pd-old{font-size:.95rem;color:var(--muted);text-decoration:line-through}
.pd-unit{font-size:.82rem;color:var(--muted)}

.pd-desc{color:#555;font-size:.88rem;line-height:1.72;margin-bottom:1.1rem}

/* Bulk pricing */
.bulk-box{
  background:var(--cream);border:1px solid var(--border);
  border-radius:var(--radius);padding:.9rem;margin-bottom:1.1rem;
}
.bulk-box-title{font-weight:700;font-size:.82rem;margin-bottom:.65rem}
.bulk-tiers{display:flex;gap:.5rem}
.btier{
  flex:1;border:1.5px solid var(--border);border-radius:7px;
  padding:.6rem .4rem;text-align:center;cursor:pointer;
  background:#fff;transition:all .18s;
}
.btier.on{background:var(--gold);border-color:var(--gold)}
.btier.on .bt-qty,.btier.on .bt-price{color:#fff}
.bt-qty{font-size:.74rem;color:var(--muted);margin-bottom:.18rem}
.bt-price{font-size:.95rem;font-weight:700}

/* Quantity row */
.qty-row{display:flex;align-items:center;gap:.9rem;margin-bottom:.85rem}
.qty-label{font-weight:600;font-size:.88rem}
.qty-ctrl{
  display:flex;align-items:center;
  border:1.5px solid var(--border);border-radius:7px;overflow:hidden;
}
.qty-ctrl button{
  width:34px;height:34px;border:none;
  background:var(--cream);cursor:pointer;
  font-size:1.1rem;font-weight:700;
  transition:background .15s;
}
.qty-ctrl button:hover{background:var(--border)}
.qty-ctrl input{
  width:52px;height:34px;border:none;
  border-left:1.5px solid var(--border);
  border-right:1.5px solid var(--border);
  text-align:center;font-size:.88rem;font-weight:600;outline:none;
  font-family:'DM Sans',sans-serif;
}
.qty-min{font-size:.75rem;color:var(--muted)}

.pd-total{font-size:1.05rem;font-weight:700;margin-bottom:1.1rem}
.pd-total span{color:var(--gold)}

/* Action buttons */
.pd-actions{display:flex;gap:.7rem;margin-bottom:1.2rem}
.btn-addcart{
  flex:1;background:var(--maroon);color:#fff;border:none;
  padding:.8rem 1.2rem;border-radius:8px;
  font-size:.9rem;font-weight:700;cursor:pointer;
  font-family:'DM Sans',sans-serif;transition:background .2s;
}
.btn-addcart:hover{background:#5a2020}
.btn-buynow{
  flex:1;background:var(--gold);color:#fff;border:none;
  padding:.8rem 1.2rem;border-radius:8px;
  font-size:.9rem;font-weight:700;cursor:pointer;
  font-family:'DM Sans',sans-serif;transition:background .2s;
}
.btn-buynow:hover{background:var(--gold-lt)}

/* Meta */
.pd-meta{
  display:grid;grid-template-columns:1fr 1fr;gap:.6rem;
  background:var(--cream);border:1px solid var(--border);
  border-radius:var(--radius);padding:.9rem;
}
.pd-meta-i{
  display:flex;align-items:center;gap:.5rem;
  font-size:.82rem;color:#555;
}
.pd-meta-i i{color:var(--gold);width:13px}

/* Also like section */
.also-sec{padding:2.5rem 1.5rem}
.also-inner{max-width:1400px;margin:0 auto}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media(max-width:1024px){
  .product-grid{grid-template-columns:repeat(2,1fr)}
  .testi-grid{grid-template-columns:repeat(2,1fr)}
  .foot-grid{grid-template-columns:1fr 1fr}
  .pd-wrap{grid-template-columns:1fr;gap:1.5rem}
}
@media(max-width:768px){
  .event-grid{grid-template-columns:1fr 1fr}
  .trust-wrap{flex-wrap:wrap}
  .trust-item{width:50%;border-right:none;border-bottom:1px solid var(--border)}
  .hero{height:380px}
  .hero-body{padding:0 1.3rem}
  .bulk-inner{flex-direction:column;text-align:center}
  .pd-actions{flex-direction:column}
}
@media(max-width:560px){
  .event-grid{grid-template-columns:1fr}
  .testi-grid{grid-template-columns:1fr}
  .foot-grid{grid-template-columns:1fr}
  .ev-card img{height:175px}
  .topbar .wrap span:first-child,
  .topbar .wrap span:last-child{display:none}
}


/* ═══════════════════════════════════════════════════════════════════
   BOOTSTRAP NAVBAR PAGES  (all pages except index & product)
   ═══════════════════════════════════════════════════════════════════ */

/* ── Override Bootstrap navbar so it matches the site palette ── */
.navbar.navbar-light {
  background: #fff !important;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  padding: .65rem 0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Brand logo */
.navbar-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text) !important;
  letter-spacing: -.3px;
}
.navbar-brand span { color: var(--gold); }

/* Nav links */
.navbar .nav-link {
  font-size: .86rem;
  font-weight: 500;
  color: #444 !important;
  padding: .38rem .65rem !important;
  border-radius: 5px;
  transition: color .18s, background .18s;
}
.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--gold) !important;
  background: rgba(201,130,26,.08);
}

/* Dropdown */
.navbar .dropdown-menu {
  border: 1px solid var(--border);
  border-radius: 10px;
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
  padding: .4rem;
  min-width: 220px;
}
.navbar .dropdown-item {
  font-size: .84rem;
  padding: .45rem .85rem;
  border-radius: 6px;
  color: var(--text);
  transition: background .15s, color .15s;
}
.navbar .dropdown-item:hover {
  background: rgba(201,130,26,.1);
  color: var(--gold);
}

/* "Get Quote" pill CTA */
.nav-cta {
  background: var(--gold) !important;
  color: #fff !important;
  border-radius: 50px !important;
  padding: .38rem 1.1rem !important;
  font-weight: 600 !important;
  font-size: .84rem !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--gold-lt) !important; }

/* Cart icon badge inside bootstrap navbar */
.navbar .cart-icon { position: relative; }
.navbar .cart-badge {
  position: absolute;
  top: -5px; right: -7px;
  background: var(--maroon);
  color: #fff;
  font-size: .58rem; font-weight: 700;
  width: 16px; height: 16px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* ── PAGE HERO (breadcrumb banner) ── */
.page-hero {
  background: linear-gradient(135deg, var(--cream) 0%, var(--cream2) 100%);
  border-bottom: 1px solid var(--border);
  padding: 2.2rem 0 2rem;
}
.page-hero .section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: .3rem;
}
.page-hero .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
}
.page-hero .breadcrumb-item a {
  color: var(--gold);
  font-size: .82rem;
  font-weight: 500;
}
.page-hero .breadcrumb-item.active {
  color: var(--muted);
  font-size: .82rem;
}
.page-hero .breadcrumb-item + .breadcrumb-item::before {
  color: var(--muted);
}

/* ── SECTION SPACING ── */
section {
  padding: 3rem 0;
}
section.bg-cream { background: var(--cream); }

/* ── TYPOGRAPHY HELPERS ── */
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.22;
}
.section-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: .65rem 0 1.4rem;
}
.hero-badge {
  display: inline-block;
  background: rgba(201,130,26,.12);
  border: 1px solid rgba(201,130,26,.3);
  color: var(--gold);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  padding: .25rem .85rem;
  border-radius: 50px;
  margin-bottom: .9rem;
}
.fw-700 { font-weight: 700 !important; }
.fw-600 { font-weight: 600 !important; }
.font-display { font-family: 'Playfair Display', serif; }
.lh-lg { line-height: 1.75; }

/* ── ROUNDED / SHADOW HELPERS ── */
.rounded-xl { border-radius: 14px !important; }
.shadow-soft { box-shadow: 0 6px 24px rgba(0,0,0,.08) !important; }

/* ── PRODUCT CARDS (Bootstrap grid pages) ── */
.product-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .22s, box-shadow .22s;
  height: 100%;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.11);
}
.product-card .img-wrap {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}
.product-card .img-wrap img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  transition: transform .32s;
}
.product-card:hover .img-wrap img { transform: scale(1.05); }

.badge-tag {
  position: absolute;
  top: .5rem; left: .5rem;
  background: var(--maroon);
  color: #fff;
  font-size: .62rem; font-weight: 700;
  padding: .18rem .5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.wishlist-btn {
  position: absolute;
  top: .5rem; right: .5rem;
  background: #fff;
  border: none;
  border-radius: 50%;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted);
  cursor: pointer;
  transition: background .2s, color .2s;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
}
.wishlist-btn:hover { background: #fee2e2; color: #e53e3e; }

.product-card .card-body {
  padding: .75rem .85rem .85rem;
}
.product-card .material {
  font-size: .68rem;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: .18rem;
}
.product-card h6 {
  font-size: .87rem;
  line-height: 1.35;
  margin-bottom: .1rem;
}
.product-card .price {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
}
.price-range { font-size: .72rem; color: var(--muted); }

/* Add button override inside cards */
.product-card .btn-primary {
  font-size: .78rem;
  font-weight: 600;
}

/* ── BOOTSTRAP BUTTON OVERRIDES ── */
.btn-primary {
  background: var(--gold) !important;
  border-color: var(--gold) !important;
  color: #fff !important;
  font-weight: 600;
  border-radius: 7px;
  transition: background .2s, border-color .2s;
}
.btn-primary:hover, .btn-primary:focus {
  background: var(--gold-lt) !important;
  border-color: var(--gold-lt) !important;
  color: #fff !important;
}
.btn-outline-primary {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  font-weight: 600;
  border-radius: 7px;
}
.btn-outline-primary:hover {
  background: var(--gold) !important;
  color: #fff !important;
}
.btn-outline-secondary {
  border-color: var(--border) !important;
  color: #555 !important;
  font-weight: 500;
}
.btn-outline-secondary:hover {
  background: var(--cream) !important;
  border-color: var(--border) !important;
  color: var(--text) !important;
}

/* ── CATEGORY CARDS ── */
.cat-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  transition: transform .22s, box-shadow .22s;
}
.cat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.14);
}
.cat-card img {
  width: 100%;
  height: 185px;
  object-fit: cover;
  display: block;
  transition: transform .32s;
}
.cat-card:hover img { transform: scale(1.06); }
.cat-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,5,0,.72) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: .85rem .75rem .75rem;
}
.cat-card-overlay h5 {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: .95rem;
  font-weight: 700;
  margin: 0 0 .12rem;
}
.cat-card-overlay small { color: rgba(255,255,255,.72); font-size: .72rem; }

/* ── ABOUT PAGE STATS ── */
.stat-item {
  padding: .9rem .5rem;
  background: var(--cream);
  border-radius: 10px;
}
.stat-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: .15rem;
}
.stat-item p {
  font-size: .78rem;
  color: var(--muted);
  margin: 0;
  font-weight: 500;
}

/* ── CART PAGE ── */
.cart-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  margin-bottom: .85rem;
}
.cart-item img {
  width: 88px;
  height: 88px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--border);
  border-radius: 7px;
  overflow: hidden;
}
.qty-control button {
  width: 30px; height: 30px;
  border: none;
  background: var(--cream);
  cursor: pointer;
  font-size: 1rem; font-weight: 700;
  transition: background .15s;
}
.qty-control button:hover { background: var(--border); }
.qty-control span {
  padding: 0 .6rem;
  font-size: .88rem;
  font-weight: 600;
}

/* ── FORMS & INPUTS ── */
.form-control, .form-select {
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: .87rem;
  padding: .55rem .85rem;
  color: var(--text);
  transition: border-color .2s, box-shadow .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,130,26,.15);
  outline: none;
}
.form-label {
  font-size: .82rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: .35rem;
}
textarea.form-control { resize: vertical; }

/* ── ACCORDION (FAQ) ── */
.accordion-item {
  border: 1px solid var(--border) !important;
  border-radius: 10px !important;
  margin-bottom: .6rem;
  overflow: hidden;
}
.accordion-button {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: .9rem;
  color: var(--text) !important;
  background: #fff !important;
  padding: 1rem 1.1rem;
}
.accordion-button:not(.collapsed) {
  color: var(--gold) !important;
  background: rgba(201,130,26,.06) !important;
  box-shadow: none !important;
}
.accordion-button::after {
  filter: none !important;
}
.accordion-button:not(.collapsed)::after {
  filter: invert(55%) sepia(60%) saturate(600%) hue-rotate(10deg) !important;
}
.accordion-body {
  font-size: .85rem;
  line-height: 1.75;
  padding: .75rem 1.1rem 1.1rem;
  background: #fff;
}
.accordion-button:focus { box-shadow: none !important; }

/* ── BULK ORDER PAGE ── */
.bg-cream { background: var(--cream) !important; }

/* ── SOCIAL ICONS ── */
.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  margin-right: .35rem;
  font-size: .95rem;
  transition: background .2s, color .2s;
}
.social-icon:hover {
  background: var(--gold);
  color: #fff;
}

/* ── FOOTER (Bootstrap pages) ── */
footer {
  background: var(--maroon-dk);
  color: rgba(255,255,255,.65);
  padding: 3rem 0 0;
}
footer .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  display: block;
  margin-bottom: .65rem;
}
footer h5 {
  font-size: .78rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .9px;
  margin-bottom: .9rem;
}
footer a {
  display: block;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: .42rem;
  transition: color .2s;
}
footer a:hover { color: var(--gold-lt); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.1rem 0;
  margin-top: 2.5rem;
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}

/* ── WISHLIST ── */
/* uses same .product-card styles above */

/* ── CUSTOM GIFT upload zone ── */
.border-dashed {
  border-style: dashed !important;
  cursor: pointer;
  transition: background .2s, border-color .2s;
}
.border-dashed:hover { background: rgba(201,130,26,.05); border-color: var(--gold) !important; }

/* ── PRICE in product pages ── */
.price { font-weight: 700; color: var(--text); }

/* ═══════════════════════════════════════════════════════════════════
   RESPONSIVE — Bootstrap pages
   ═══════════════════════════════════════════════════════════════════ */
@media (max-width: 991px) {
  /* Collapsed navbar */
  .navbar-collapse {
    background: #fff;
    border-top: 1px solid var(--border);
    padding: .75rem 1rem 1rem;
    margin-top: .5rem;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.09);
  }
  .navbar .navbar-nav { gap: .1rem !important; }
  .navbar .nav-link { padding: .45rem .75rem !important; }
  .navbar .d-flex.align-items-center { margin-top: .75rem; padding-top: .75rem; border-top: 1px solid var(--border); }
}

@media (max-width: 767px) {
  .page-hero { padding: 1.6rem 0 1.4rem; }
  section { padding: 2.2rem 0; }
  .product-card .img-wrap img { height: 155px; }
  .cat-card img { height: 155px; }
  .cart-item img { width: 70px; height: 70px; }
  .stat-item h3 { font-size: 1.4rem; }
  .section-title { font-size: 1.3rem; }
}

@media (max-width: 480px) {
  .navbar-brand { font-size: 1.3rem; }
  .product-card .img-wrap img { height: 130px; }
  .page-hero { padding: 1.2rem 0 1rem; }
}
