/* =============================================================
   DIPTY ALANKAR PVT LTD — Premium Jewellery Website
   Main Stylesheet  |  Author: Dipty Alankar Web Team
   Theme: Gold (#C9A227) · White (#FFFFFF) · Black (#1F1F1F)
   Structure:
     1.  Design tokens (CSS variables)
     2.  Base & typography
     3.  Reusable helpers (buttons, titles, animations)
     4.  Top bar & Navigation
     5.  Hero slider
     6.  About section
     7.  Featured categories
     8.  Products grid
     9.  Gallery
     10. Team
     11. Testimonials
     12. Newsletter
     13. Footer
     14. Floating buttons (WhatsApp / back-to-top)
     15. Inner page hero + Contact + Policy pages
     16. Responsive tweaks
   ============================================================= */

/* 1. ─────────────────────────  DESIGN TOKENS  ───────────────────────── */
:root {
  --gold:        #C9A227;
  --gold-light:  #E6C65C;
  --gold-soft:   #EBD489;
  --gold-dark:   #9C7C18;
  --black:       #1F1F1F;
  --charcoal:    #141414;
  --white:       #FFFFFF;
  --cream:       #FBF7EF;
  --cream-2:     #F3ECDD;
  --grey:        #6B6B6B;
  --grey-light:  #9a9a9a;
  --line:        #ece6da;

  --font-head: "Playfair Display", "Georgia", serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
  --font-accent: "Cormorant Garamond", "Georgia", serif;

  --radius:    14px;
  --radius-sm: 8px;
  --radius-lg: 24px;

  --shadow-sm: 0 4px 14px rgba(31,31,31,.06);
  --shadow:    0 10px 30px rgba(31,31,31,.10);
  --shadow-lg: 0 22px 48px rgba(31,31,31,.16);
  --shadow-gold: 0 14px 34px rgba(201,162,39,.30);

  --transition: .35s cubic-bezier(.25,.8,.35,1);
  --container-pad: clamp(1rem, 4vw, 4rem);
}

/* 2. ─────────────────────────  BASE & TYPOGRAPHY  ───────────────────── */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, .display-font { font-family: var(--font-head); font-weight: 600; color: var(--black); }
h1 { line-height: 1.15; }
p  { color: var(--grey); }
a  { text-decoration: none; color: var(--gold-dark); transition: color var(--transition); }
a:hover { color: var(--gold); }
img { max-width: 100%; height: auto; }
::selection { background: var(--gold); color: #fff; }

/* Custom scrollbar */
::-webkit-scrollbar { width: 11px; }
::-webkit-scrollbar-track { background: var(--cream); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 20px; border: 3px solid var(--cream); }
::-webkit-scrollbar-thumb:hover { background: var(--gold-dark); }

.bg-cream    { background: var(--cream) !important; }
.bg-charcoal { background: var(--charcoal) !important; }
.text-gold   { color: var(--gold) !important; }
.text-muted-2{ color: var(--grey) !important; }

.section-padding { padding: clamp(3.5rem, 7vw, 6.5rem) 0; }

/* 3. ─────────────────────  REUSABLE HELPERS  ───────────────────────── */

/* Eyebrow + section heading */
.section-head { margin-bottom: 3rem; }
.eyebrow {
  display: inline-flex; align-items: center; gap: .55rem;
  font-family: var(--font-body); font-weight: 600; font-size: .78rem;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold-dark);
  margin-bottom: .75rem;
}
.eyebrow::before, .eyebrow.center::after {
  content: ""; width: 34px; height: 1px; background: var(--gold);
}
.eyebrow.center { justify-content: center; }
.section-title {
  font-size: clamp(1.9rem, 3.6vw, 3rem); margin: 0 0 1rem;
  letter-spacing: .5px;
}
.section-title span { color: var(--gold); font-style: italic; }
.section-sub { max-width: 640px; color: var(--grey); }
.section-head.text-center .section-sub { margin-inline: auto; }
.title-divider {
  width: 90px; height: 3px; margin: 1.1rem 0 0;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  border-radius: 3px;
}
.text-center .title-divider { margin-inline: auto; }

/* Buttons */
.btn { font-family: var(--font-body); font-weight: 600; letter-spacing: .4px;
  border-radius: 50px; padding: .8rem 2rem; transition: all var(--transition);
  position: relative; overflow: hidden; border: 1.5px solid transparent; }
.btn-gold {
  background: linear-gradient(120deg, var(--gold), var(--gold-dark));
  color: #fff; box-shadow: var(--shadow-gold);
}
.btn-gold:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 18px 40px rgba(201,162,39,.45); }
.btn-outline-gold { border-color: var(--gold); color: var(--gold-dark); background: transparent; }
.btn-outline-gold:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.btn-outline-light { border-color: rgba(255,255,255,.7); color: #fff; background: transparent; }
.btn-outline-light:hover { background: #fff; color: var(--black); transform: translateY(-3px); }
.btn-dark-lux { background: var(--black); color: #fff; }
.btn-dark-lux:hover { background: var(--gold); color: #fff; transform: translateY(-3px); }
.btn-lg { padding: 1rem 2.6rem; font-size: 1.02rem; }
/* subtle shine sweep */
.btn::after {
  content: ""; position: absolute; top: 0; left: -120%; width: 60%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg); transition: left .6s ease;
}
.btn:hover::after { left: 130%; }

/* Scroll reveal animation */
.reveal { opacity: 0; transform: translateY(38px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.active { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .12s; } .reveal.d2 { transition-delay: .24s; }
.reveal.d3 { transition-delay: .36s; } .reveal.d4 { transition-delay: .48s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1 !important; transform: none !important; } html { scroll-behavior: auto; } }

/* 4. ─────────────────────  TOP BAR & NAVBAR  ───────────────────────── */
.top-bar {
  background: var(--charcoal); color: #d9d2c4; font-size: .82rem;
  padding: .5rem 0; letter-spacing: .3px;
}
.top-bar a { color: #d9d2c4; }
.top-bar a:hover { color: var(--gold); }
.top-bar .tb-social a { margin-left: .9rem; font-size: .95rem; }

.navbar-custom {
  background: rgba(255,255,255,.96); backdrop-filter: blur(8px);
  padding: 1rem 0; transition: all var(--transition);
  box-shadow: 0 2px 20px rgba(31,31,31,.05);
}
.navbar-custom.scrolled { padding: .55rem 0; box-shadow: var(--shadow); }
.navbar-brand { display: flex; align-items: center; gap: .7rem; }
.navbar-brand img { width: 46px; height: 46px; transition: var(--transition); }
.navbar-custom.scrolled .navbar-brand img { width: 40px; height: 40px; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-text .b-name {
  font-family: var(--font-head); font-weight: 700; font-size: 1.35rem;
  color: var(--black); letter-spacing: .5px;
}
.brand-text .b-name em { color: var(--gold); font-style: italic; }
.brand-text .b-sub {
  font-size: .62rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--grey); margin-top: 3px;
}
.navbar-custom .nav-link {
  font-weight: 500; color: var(--black); margin: 0 .35rem; padding: .5rem .2rem !important;
  position: relative;
}
.navbar-custom .nav-link::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 2px;
  background: var(--gold); transition: width var(--transition);
}
.navbar-custom .nav-link:hover, .navbar-custom .nav-link.active { color: var(--gold-dark); }
.navbar-custom .nav-link:hover::after, .navbar-custom .nav-link.active::after { width: 100%; }
.navbar-custom .btn { padding: .55rem 1.4rem; }
.navbar-toggler { border: none; padding: .25rem .4rem; }
.navbar-toggler:focus { box-shadow: none; }
.navbar-toggler span { display:block; width:26px; height:2px; background: var(--black); margin:5px 0; transition: var(--transition); border-radius:2px;}

/* 5. ─────────────────────────  HERO SLIDER  ────────────────────────── */
.hero-slider .carousel-item { height: min(88vh, 760px); }
.hero-slider .slide-bg {
  height: 100%; width: 100%; background-size: cover; background-position: center;
  position: relative;
}
.hero-slider .slide-bg::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(20,20,20,.72) 0%, rgba(20,20,20,.45) 45%, rgba(20,20,20,.2) 100%);
}
.hero-caption {
  position: absolute; inset: 0; z-index: 3; display: flex; flex-direction: column;
  justify-content: center; color: #fff;
}
.hero-eyebrow {
  color: var(--gold-soft); letter-spacing: 5px; text-transform: uppercase;
  font-size: .85rem; font-weight: 600; margin-bottom: 1rem;
}
.hero-title {
  color: #fff; font-size: clamp(2.3rem, 6vw, 4.6rem); line-height: 1.08;
  margin-bottom: 1.2rem; max-width: 15ch;
}
.hero-title span { color: var(--gold); font-style: italic; }
.hero-text { color: #e9e4da; font-size: clamp(1rem,1.5vw,1.18rem); max-width: 46ch; margin-bottom: 2rem; }
.hero-cta .btn { margin: 0 .6rem .6rem 0; }
.carousel-indicators [data-bs-target] { width: 12px; height: 12px; border-radius: 50%; border: 2px solid #fff; background: transparent; opacity: .8; }
.carousel-indicators .active { background: var(--gold); border-color: var(--gold); }
.carousel-control-prev, .carousel-control-next { width: 6%; opacity: .85; }
.carousel-control-prev-icon, .carousel-control-next-icon {
  background-color: rgba(201,162,39,.85); border-radius: 50%; padding: 1.35rem; background-size: 45%;
}

/* floating trust strip below hero */
.trust-strip { background: var(--black); color: #eee; }
.trust-strip .t-item { display: flex; align-items: center; gap: .8rem; padding: 1.4rem 0; }
.trust-strip .t-item i { font-size: 1.7rem; color: var(--gold); }
.trust-strip .t-item h6 { color: #fff; margin: 0; font-family: var(--font-body); font-weight: 600; font-size: .95rem; }
.trust-strip .t-item small { color: var(--grey-light); }

/* 6. ─────────────────────────  ABOUT  ──────────────────────────────── */
.about-img-wrap { position: relative; }
.about-img-wrap img { border-radius: var(--radius); box-shadow: var(--shadow-lg); position: relative; z-index: 2; }
.about-img-wrap::before {
  content: ""; position: absolute; top: -18px; left: -18px; width: 55%; height: 55%;
  border: 2px solid var(--gold); border-radius: var(--radius); z-index: 1;
}
.about-img-wrap .exp-badge {
  position: absolute; right: -10px; bottom: -22px; z-index: 3;
  background: linear-gradient(120deg,var(--gold),var(--gold-dark)); color: #fff;
  border-radius: var(--radius); padding: 1rem 1.4rem; text-align: center; box-shadow: var(--shadow-gold);
}
.about-img-wrap .exp-badge b { font-family: var(--font-head); font-size: 2rem; display: block; line-height: 1; }
.about-img-wrap .exp-badge span { font-size: .72rem; letter-spacing: 1px; text-transform: uppercase; }
.about-features { list-style: none; padding: 0; margin: 1.5rem 0 2rem; }
.about-features li { display: flex; align-items: flex-start; gap: .8rem; margin-bottom: .8rem; color: var(--black); }
.about-features li i { color: var(--gold); font-size: 1.15rem; margin-top: 3px; }
.signature { font-family: var(--font-accent); font-size: 2rem; color: var(--gold-dark); font-style: italic; }

/* 7. ─────────────────────  FEATURED CATEGORIES  ────────────────────── */
.category-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 2.2rem 1.2rem; text-align: center; height: 100%;
  transition: all var(--transition); position: relative; overflow: hidden;
}
.category-card::before {
  content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, var(--black), var(--charcoal));
  opacity: 0; transition: opacity var(--transition); z-index: 0;
}
.category-card > * { position: relative; z-index: 1; }
.cat-icon {
  width: 78px; height: 78px; margin: 0 auto 1.1rem; border-radius: 50%;
  display: grid; place-items: center; font-size: 2rem; color: var(--gold);
  background: var(--cream); border: 1px solid var(--gold); transition: all var(--transition);
}
.category-card h5 { margin: 0 0 .3rem; transition: color var(--transition); }
.category-card p { font-size: .86rem; margin: 0; }
.category-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.category-card:hover::before { opacity: 1; }
.category-card:hover .cat-icon { background: var(--gold); color: #fff; transform: rotateY(180deg); }
.category-card:hover h5 { color: #fff; }
.category-card:hover p { color: #cfc8ba; }

/* 8. ─────────────────────────  PRODUCTS  ───────────────────────────── */
.filter-bar { margin-bottom: 2.5rem; }
.filter-btn {
  border: 1px solid var(--line); background: #fff; color: var(--black);
  border-radius: 50px; padding: .45rem 1.3rem; margin: .25rem; font-size: .88rem;
  font-weight: 500; transition: all var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--gold); border-color: var(--gold); color: #fff; }

.product-card {
  background: #fff; border-radius: var(--radius); overflow: hidden; height: 100%;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.product-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.product-media { position: relative; overflow: hidden; aspect-ratio: 1/1; background: var(--cream); }
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-media img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 12px; left: 12px; z-index: 2; background: var(--gold);
  color: #fff; font-size: .68rem; font-weight: 600; letter-spacing: .6px; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 50px;
}
.product-badge.sale { background: var(--black); }
.product-overlay {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; gap: .6rem;
  background: rgba(20,20,20,.35); opacity: 0; transition: opacity var(--transition); z-index: 2;
}
.product-card:hover .product-overlay { opacity: 1; }
.product-overlay .icon-btn {
  width: 46px; height: 46px; border-radius: 50%; background: #fff; color: var(--black);
  display: grid; place-items: center; font-size: 1.05rem; transform: translateY(12px);
  transition: all var(--transition); border: none;
}
.product-card:hover .product-overlay .icon-btn { transform: none; }
.product-overlay .icon-btn:hover { background: var(--gold); color: #fff; }
.product-body { padding: 1.3rem 1.3rem 1.5rem; }
.product-cat { font-size: .72rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gold-dark); }
.product-title { font-size: 1.2rem; margin: .25rem 0 .4rem; }
.product-title a { color: var(--black); }
.product-title a:hover { color: var(--gold-dark); }
.product-desc { font-size: .86rem; margin-bottom: .9rem; min-height: 42px; }
.product-rating { color: var(--gold); font-size: .82rem; margin-bottom: .6rem; }
.product-rating span { color: var(--grey); margin-left: .3rem; }
.product-foot { display: flex; align-items: center; justify-content: center; gap: .5rem; }
.product-foot .btn { padding: .5rem 1.1rem; font-size: .82rem; }

/* 9. ─────────────────────────  GALLERY  ────────────────────────────── */
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 1/1; background: var(--cream);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.gallery-item::after {
  content: ""; position: absolute; inset: 0; background: linear-gradient(160deg, rgba(201,162,39,.15), rgba(20,20,20,.55));
  opacity: 0; transition: opacity var(--transition);
}
.gallery-item .gallery-ico {
  position: absolute; inset: 0; z-index: 2; display: grid; place-items: center;
  color: #fff; font-size: 1.6rem; opacity: 0; transform: scale(.6); transition: all var(--transition);
}
.gallery-item .gallery-ico i { width: 58px; height: 58px; border: 1px solid #fff; border-radius: 50%; display: grid; place-items: center; }
.gallery-item:hover img { transform: scale(1.12); }
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover .gallery-ico { opacity: 1; transform: none; }
.gallery-tall { grid-row: span 2; aspect-ratio: auto; height: 100%; }

/* 10. ─────────────────────────  TEAM  ──────────────────────────────── */
.team-card { text-align: center; }
.team-photo {
  position: relative; border-radius: var(--radius); overflow: hidden; margin-bottom: 1.1rem;
  aspect-ratio: 4/5; background: var(--cream); box-shadow: var(--shadow-sm);
}
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-social {
  position: absolute; left: 0; right: 0; bottom: -60px; display: flex; justify-content: center; gap: .5rem;
  padding: 1rem; transition: bottom var(--transition);
  background: linear-gradient(0deg, rgba(20,20,20,.7), transparent);
}
.team-card:hover .team-social { bottom: 0; }
.team-social a {
  width: 40px; height: 40px; border-radius: 50%; background: #fff; color: var(--black);
  display: grid; place-items: center; transition: all var(--transition);
}
.team-social a:hover { background: var(--gold); color: #fff; transform: translateY(-4px); }
.team-name { margin: 0; font-size: 1.25rem; }
.team-role { color: var(--gold-dark); font-size: .85rem; letter-spacing: 1px; text-transform: uppercase; }

/* 11. ────────────────────────  TESTIMONIALS  ───────────────────────── */
.testi-card {
  background: #fff; border-radius: var(--radius); padding: 2.2rem; height: 100%;
  border: 1px solid var(--line); box-shadow: var(--shadow-sm); position: relative;
}
.testi-card .quote-mark { font-family: var(--font-head); font-size: 4.5rem; line-height: .8; color: var(--gold); opacity: .22; position: absolute; top: 1rem; right: 1.4rem; }
.testi-stars { color: var(--gold); margin-bottom: .9rem; }
.testi-text { color: #4a4a4a; font-style: italic; font-family: var(--font-accent); font-size: 1.18rem; line-height: 1.55; margin-bottom: 1.4rem; }
.testi-person { display: flex; align-items: center; gap: .9rem; }
.testi-person img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testi-person h6 { margin: 0; font-family: var(--font-head); }
.testi-person span { font-size: .82rem; color: var(--grey); }

/* 12. ────────────────────────  NEWSLETTER  ─────────────────────────── */
.newsletter { background: linear-gradient(120deg, var(--gold-dark), var(--gold)); color: #fff; border-radius: var(--radius-lg); padding: clamp(2.2rem,5vw,3.5rem); }
.newsletter h2 { color: #fff; }
.newsletter p { color: rgba(255,255,255,.9); }
.newsletter .form-control { border: none; border-radius: 50px; padding: .95rem 1.4rem; height: auto; }
.newsletter .form-control:focus { box-shadow: 0 0 0 .25rem rgba(255,255,255,.35); }
.newsletter .btn-dark-lux { background: var(--black); }
.newsletter .btn-dark-lux:hover { background: var(--charcoal); }

/* 13. ─────────────────────────  FOOTER  ────────────────────────────── */
.footer { background: var(--charcoal); color: #b9b2a4; padding-top: 4.5rem; }
.footer h5 { color: #fff; margin-bottom: 1.4rem; position: relative; padding-bottom: .7rem; font-size: 1.15rem; }
.footer h5::after { content: ""; position: absolute; left: 0; bottom: 0; width: 42px; height: 2px; background: var(--gold); }
.footer .footer-brand { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.1rem; }
.footer .footer-brand img { width: 48px; }
.footer .footer-brand .b-name { font-family: var(--font-head); color: #fff; font-size: 1.4rem; }
.footer .footer-brand .b-name em { color: var(--gold); font-style: italic; }
.footer p { color: #b9b2a4; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: .65rem; }
.footer-links a { color: #b9b2a4; display: inline-flex; align-items: center; gap: .5rem; }
.footer-links a::before { content: "\F285"; font-family: "bootstrap-icons"; font-size: .75rem; color: var(--gold); transition: transform var(--transition); }
.footer-links a:hover { color: var(--gold); padding-left: 3px; }
.footer-contact li { display: flex; gap: .8rem; margin-bottom: 1rem; color: #b9b2a4; }
.footer-contact li i { color: var(--gold); font-size: 1.15rem; margin-top: 3px; }
.footer-social { display: flex; gap: .6rem; margin-top: 1.2rem; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.07); color: #fff; transition: all var(--transition);
}
.footer-social a:hover { background: var(--gold); transform: translateY(-4px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 3rem; padding: 1.4rem 0; font-size: .86rem; }
.footer-bottom a { color: var(--gold); }

/* 14. ──────────────────  FLOATING BUTTONS  ─────────────────────────── */
.whatsapp-float {
  position: fixed; right: 22px; bottom: 22px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; font-size: 1.7rem; box-shadow: 0 8px 24px rgba(37,211,102,.5);
  animation: pulse 2.4s infinite;
}
.whatsapp-float:hover { color: #fff; transform: scale(1.08); }
@keyframes 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);} }

.back-to-top {
  position: fixed; right: 22px; bottom: 88px; z-index: 999;
  width: 48px; height: 48px; border-radius: 50%; border: none;
  background: var(--black); color: #fff; font-size: 1.15rem; cursor: pointer;
  display: grid; place-items: center; opacity: 0; visibility: hidden;
  transform: translateY(14px); transition: all var(--transition); box-shadow: var(--shadow);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--gold); }

/* 15. ─────────────  INNER PAGE HERO · CONTACT · POLICY  ────────────── */
.page-hero {
  position: relative; padding: clamp(4.5rem,10vw,7rem) 0 clamp(3rem,6vw,4.5rem);
  background: linear-gradient(rgba(20,20,20,.78), rgba(20,20,20,.82)), var(--charcoal);
  background-size: cover; background-position: center; color: #fff; text-align: center;
}
.page-hero h1 { color: #fff; font-size: clamp(2.2rem,5vw,3.4rem); }
.page-hero .breadcrumb { justify-content: center; margin: .6rem 0 0; }
.page-hero .breadcrumb a { color: var(--gold-soft); }
.page-hero .breadcrumb-item.active { color: #d7d0c4; }
.page-hero .breadcrumb-item + .breadcrumb-item::before { color: #7a7264; }

/* Contact */
.contact-info-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.8rem; height: 100%; transition: all var(--transition); box-shadow: var(--shadow-sm);
}
.contact-info-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.contact-info-card .ci-icon {
  width: 60px; height: 60px; border-radius: 50%; background: var(--cream); border: 1px solid var(--gold);
  display: grid; place-items: center; font-size: 1.5rem; color: var(--gold); margin-bottom: 1rem;
}
.contact-info-card h6 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: .4rem; }
.contact-info-card p { margin: 0; font-size: .92rem; }
.form-panel { background: #fff; border-radius: var(--radius); box-shadow: var(--shadow); padding: clamp(1.6rem,4vw,2.6rem); border: 1px solid var(--line); }
.form-label { font-weight: 500; font-size: .9rem; color: var(--black); }
.form-control, .form-select {
  border: 1px solid #e2dccf; border-radius: var(--radius-sm); padding: .8rem 1rem;
  background: var(--cream); transition: all var(--transition);
}
.form-control:focus, .form-select:focus { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 .2rem rgba(201,162,39,.18); }
.map-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); border: 1px solid var(--line); position: relative; }
.map-wrap iframe { display: block; width: 100%; border: 0; }
.map-placeholder {
  aspect-ratio: 16/9; display: grid; place-items: center; text-align: center;
  background: linear-gradient(160deg, var(--cream), var(--cream-2)); color: var(--gold-dark);
}
.map-placeholder i { font-size: 3rem; }
.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li { display: flex; justify-content: space-between; padding: .6rem 0; border-bottom: 1px dashed var(--line); }
.hours-list li:last-child { border-bottom: none; }
.hours-list li span:last-child { color: var(--gold-dark); font-weight: 600; }
.hours-list li.closed span:last-child { color: #c0392b; }

/* Policy / Terms pages */
.policy-wrap { background: #fff; }
.policy-toc { position: sticky; top: 110px; background: var(--cream); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem; }
.policy-toc h6 { font-family: var(--font-head); margin-bottom: 1rem; }
.policy-toc ul { list-style: none; padding: 0; margin: 0; }
.policy-toc li { margin-bottom: .55rem; }
.policy-toc a { color: var(--grey); font-size: .9rem; display: flex; gap: .5rem; }
.policy-toc a:hover, .policy-toc a.active { color: var(--gold-dark); font-weight: 600; }
.policy-block { margin-bottom: 2.6rem; scroll-margin-top: 110px; }
.policy-block .pb-head { display: flex; align-items: center; gap: .9rem; margin-bottom: 1rem; }
.policy-block .pb-num {
  flex: 0 0 auto; width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(120deg,var(--gold),var(--gold-dark)); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head); font-weight: 600;
}
.policy-block h3 { margin: 0; font-size: 1.4rem; }
.policy-block p, .policy-block li { color: var(--grey); }
.policy-block ul { padding-left: 1.1rem; }
.policy-block ul li { margin-bottom: .5rem; }
.policy-intro { background: var(--cream); border-left: 4px solid var(--gold); border-radius: var(--radius-sm); padding: 1.4rem 1.6rem; margin-bottom: 2.5rem; }
.policy-intro p { margin: 0; color: #4a4a4a; }
.updated-tag { font-size: .82rem; color: var(--grey); letter-spacing: .5px; }

/* Product detail modal */
.modal-content { border: none; border-radius: var(--radius); overflow: hidden; }
.modal-prod-img { background: var(--cream); aspect-ratio: 1/1; }
.modal-prod-img img { width: 100%; height: 100%; object-fit: cover; }
.modal-body { padding: 2rem; }

/* 16. ─────────────────────  RESPONSIVE TWEAKS  ─────────────────────── */
@media (max-width: 991.98px) {
  .navbar-custom { background: #fff; }
  .navbar-collapse { background: #fff; margin-top: .8rem; padding: 1rem 1.2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
  .navbar-custom .nav-link { margin: .2rem 0; }
  .navbar-custom .nav-link::after { display: none; }
  .navbar-custom .btn { margin-top: .6rem; width: 100%; }
  .hero-slider .carousel-item { height: 78vh; }
  .about-img-wrap { margin-bottom: 3.5rem; }
}
@media (max-width: 767.98px) {
  .top-bar .tb-left { justify-content: center; text-align: center; }
  .top-bar .tb-right { display: none !important; }
  .hero-slider .slide-bg::before { background: linear-gradient(90deg, rgba(20,20,20,.75), rgba(20,20,20,.55)); }
  .hero-cta .btn { display: block; width: 100%; margin: 0 0 .7rem; }
  .section-padding { padding: 3rem 0; }
  .newsletter { text-align: center; }
  .whatsapp-float { width: 50px; height: 50px; font-size: 1.5rem; }
}
@media (max-width: 575.98px) {
  .brand-text .b-name { font-size: 1.1rem; }
  .brand-text .b-sub { letter-spacing: 2.5px; }
  .testi-text { font-size: 1.08rem; }
}
