/* ═══════════════════════════════════════
   SHREEJI DECORATION – STYLESHEET
   Color Palette:
   Saffron:   #E8772E
   Gold:      #C8A76A
   Deep Red:  #8B1A1A
   Cream:     #FAF6F0
   Dark:      #1A1208
═══════════════════════════════════════ */

:root {
  --saffron: #E8772E;
  --saffron-dark: #C45E16;
  --gold: #C8A76A;
  --gold-light: #F0DFB4;
  --deep-red: #8B1A1A;
  --cream: #FAF6F0;
  --dark: #1A1208;
  --dark-mid: #2D1F0A;
  --text-muted: #7a6650;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: 'Poppins', sans-serif;
  color: var(--dark);
  background: #fff;
  overflow-x: hidden;
}

h1,h2,h3,h4,h5,h6,em { font-family: 'Playfair Display', serif; }
em { font-style: italic; color: var(--saffron); }

.bg-cream { background: var(--cream); }
.text-saffron { color: var(--saffron) !important; }
.section-pad { padding: 80px 0; }

/* ─── TOP BAR ─── */
.topbar {
  background: var(--dark-mid);
  color: #e6d9c4;
  font-size: 12.5px;
  letter-spacing: .3px;
}
.topbar a { color: #e6d9c4; text-decoration: none; }
.topbar a:hover { color: var(--gold); }

/* ─── NAVBAR ─── */
.main-nav {
  background: #fff;
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
  padding: 10px 0;
  transition: all .3s;
}
.main-nav.scrolled {
  padding: 6px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,.15);
}
.brand-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--saffron), var(--deep-red));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-size: 22px;
}
.brand-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--dark); line-height: 1.2; }
.brand-tagline { font-size: 10px; color: var(--gold); letter-spacing: 1px; }
.nav-link { color: var(--dark) !important; font-weight: 500; font-size: 14px; padding: 6px 12px !important; border-radius: 6px; transition: all .2s; }
.nav-link:hover { color: var(--saffron) !important; background: #fff5ef; }
.btn-quote {
  background: var(--saffron);
  color: #fff !important;
  border-radius: 25px;
  padding: 8px 22px !important;
  font-size: 13px;
  font-weight: 600;
  transition: all .3s;
}
.btn-quote:hover { background: var(--saffron-dark); transform: translateY(-1px); }

/* ───────────────── HERO SECTION ───────────────── */

.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;

  background:
    linear-gradient(
      90deg,
      #8f633f 0%,
      #6d2a09 18%,
      #4a1905 45%,
      #5b1f06 70%,
      #8f633f 100%
    ),

    radial-gradient(
      circle at bottom right,
      rgba(255,170,90,0.12) 0%,
      rgba(255,130,40,0.05) 18%,
      transparent 34%
    ),

    linear-gradient(
      135deg,
      #160801 0%,
      #2B1003 30%,
      #4A1905 60%,
      #220B03 100%
    );
}

/* LIGHT OVERLAY */

.hero-overlay {
  position: absolute;
  inset: 0;

  background:

    radial-gradient(
      circle at 8% 18%,
      rgba(255,180,110,0.12) 0%,
      rgba(255,130,40,0.05) 18%,
      transparent 36%
    ),

    radial-gradient(
      circle at 92% 82%,
      rgba(255,180,110,0.10) 0%,
      rgba(255,130,40,0.04) 18%,
      transparent 36%
    ),

    radial-gradient(
      ellipse at 60% 50%,
      rgba(232,119,46,.10) 0%,
      transparent 65%
    ),

    radial-gradient(
      ellipse at 20% 80%,
      rgba(200,167,106,.05) 0%,
      transparent 50%
    );

  z-index: 1;
}

/* PARTICLE EFFECT */

.hero-pattern {
  position: absolute;
  inset: 0;

  background-image:
    radial-gradient(
      circle,
      rgba(255,220,180,.05) 1px,
      transparent 1px
    ),

    radial-gradient(
      circle,
      rgba(232,119,46,.03) 1px,
      transparent 1px
    );

  background-size: 40px 40px, 70px 70px;
  background-position: 0 0, 20px 20px;

  opacity: .55;
  z-index: 1;
}

/* TOP LEFT GLOW */

.hero-section::before {
  content: "";
  position: absolute;

  top: -180px;
  left: -180px;

  width: 520px;
  height: 520px;

  background:
    radial-gradient(
      circle,
      rgba(255,180,110,0.16) 0%,
      rgba(255,130,40,0.06) 32%,
      transparent 72%
    );

  border-radius: 50%;
  filter: blur(50px);

  z-index: 0;
  pointer-events: none;
}

/* BOTTOM RIGHT GLOW */

.hero-section::after {
  content: "";
  position: absolute;

  bottom: -180px;
  right: -180px;

  width: 520px;
  height: 520px;

  background:
    radial-gradient(
      circle,
      rgba(255,180,110,0.14) 0%,
      rgba(255,130,40,0.05) 32%,
      transparent 72%
    );

  border-radius: 50%;
  filter: blur(50px);

  z-index: 0;
  pointer-events: none;
}

/* HERO CONTENT */

.hero-section .container {
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-block;
  padding: 6px 20px;
  border: 1px solid rgba(200,167,106,.5);
  border-radius: 30px;
  color: var(--gold);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 4rem);
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
}
.hero-sub { color: rgba(255,255,255,.65); font-size: 16px; line-height: 1.8; }
.btn-hero-primary {
  background: var(--saffron);
  color: #fff;
  border: none;
  border-radius: 30px;
  padding: 14px 36px;
  font-weight: 600;
  font-size: 15px;
  transition: all .3s;
}
.btn-hero-primary:hover { background: var(--saffron-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,119,46,.4); }
.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 30px;
  padding: 14px 36px;
  font-weight: 500;
  font-size: 15px;
  transition: all .3s;
}

.btn-hero-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,167,106,.1); }
.hero-stats { color: #fff; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; font-weight: 700; color: var(--gold); line-height: 1; }
.stat-lbl { font-size: 12px; color: rgba(255,255,255,.6); margin-top: 4px; }
.stat-divider { width: 1px; height: 50px; background: rgba(255,255,255,.2); }
.hero-scroll-hint {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,.4); font-size: 20px;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(8px)} }

/* ─── MARQUEE ─── */
.marquee-bar { background: var(--saffron); color: #fff; overflow: hidden; }
.marquee-track {
  display: flex; white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-size: 13px; font-weight: 500; letter-spacing: .5px;
}
@keyframes marquee { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* ─── SECTION LABELS ─── */
.section-label {
  display: inline-block;
  background: #fff5ef;
  color: var(--saffron);
  border: 1px solid rgba(232,119,46,.25);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-label-ws {
  display: inline-block;
  background: rgba(200,167,106,.15);
  color: var(--gold);
  border: 1px solid rgba(200,167,106,.3);
  padding: 4px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; color: var(--dark); line-height: 1.25; }

/* ─── ABOUT ─── */
.about-img-grid {
  position: relative;
  height: 460px;
}
.about-img {
  position: absolute;
  border-radius: 12px;
  background: #e0c8b0;
  background-size: cover;
  background-position: center;
}
.ab1 {
  width: 65%; height: 68%;
  top: 0; left: 0;
}
.ab2 {
  width: 42%; height: 55%;
  bottom: 0; right: 0;
}
.ab3 {
  width: 35%; height: 38%;
  bottom: 20%; left: 55%;
  border: 4px solid #fff;
}
.about-badge {
  position: absolute;
  top: 55%; left: 55%;
  width: 80px; height: 80px;
  background: var(--saffron);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-size: 11px; font-weight: 700;
  line-height: 1.3;
  border: 4px solid #fff;
  box-shadow: 0 4px 20px rgba(232,119,46,.4);
  z-index: 2;
}
.feat-card {
  display: flex; align-items: flex-start; gap: 12px;
  background: #fff;
  border-radius: 10px;
  padding: 14px;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.feat-card i { font-size: 22px; margin-top: 2px; flex-shrink: 0; }

/* ─── SECTION DIVIDER ─── */
.section-divider { background: var(--dark); color: #fff; }
.divider-text { color: #fff; }
.btn-section-primary {
  background: var(--saffron);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 10px 28px;
  font-weight: 600;
  font-size: 14px;
  transition: all .3s;
}
.btn-section-primary:hover { background: var(--saffron-dark); color: #fff; transform: translateY(-1px); }
.btn-section-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 25px;
  padding: 10px 28px;
  font-weight: 500;
  font-size: 14px;
  transition: all .3s;
}
.btn-section-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── WHOLESALE ─── */
.wholesale-section {
  background: linear-gradient(160deg, #1A0A02 0%, #2D1208 50%, #1A0A02 100%);
  position: relative;
  overflow: hidden;
}
.ws-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(200,167,106,.06) 1px, transparent 1px);
  background-size: 35px 35px;
}
.ws-benefit-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(200,167,106,.2);
  border-radius: 14px;
  padding: 28px 20px;
  color: #fff;
  transition: all .3s;
}
.ws-benefit-card:hover {
  background: rgba(200,167,106,.1);
  border-color: rgba(200,167,106,.4);
  transform: translateY(-4px);
}
.ws-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--saffron), var(--deep-red));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: #fff;
  margin: 0 auto 16px;
}
.ws-benefit-card h6 { font-weight: 600; font-size: 15px; margin-bottom: 6px; }
.ws-benefit-card p { color: rgba(255,255,255,.55); font-size: 13px; margin: 0; }

.ws-product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  transition: all .3s;
  box-shadow: 0 4px 20px rgba(0,0,0,.15);
}
.ws-product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(0,0,0,.25); }
.ws-prod-img {
  height: 200px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.ws-p1 { background: linear-gradient(135deg, #c4813c, #8B3A09); }
.ws-p2 { background: linear-gradient(135deg, #E8772E, #C45E16); }
.ws-p3 { background: linear-gradient(135deg, #9B59B6, #6C3483); }
.ws-p4 { background: linear-gradient(135deg, #F39C12, #D68910); }
.ws-p5 { background: linear-gradient(135deg, #27AE60, #1E8449); }
.ws-p6 { background: linear-gradient(135deg, #E74C3C, #C0392B); }
.ws-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--saffron);
  color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 12px; border-radius: 20px;
  letter-spacing: .5px;
}
.ws-badge-new { background: #27AE60; }
.ws-prod-body { padding: 20px; }
.ws-prod-body h5 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.ws-price-row { display: flex; justify-content: space-between; align-items: center; margin: 12px 0; }
.ws-price { font-size: 17px; font-weight: 700; color: var(--saffron); }
.ws-moq { font-size: 11px; color: #888; background: #f0f0f0; padding: 3px 10px; border-radius: 20px; }
.ws-feature-list { list-style: none; padding: 0; margin: 8px 0 0; }
.ws-feature-list li { display: flex; align-items: center; gap: 8px; padding: 3px 0; color: #555; }
.ws-feature-list li i { color: #27AE60; font-size: 13px; }
.btn-ws-card {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 10px;
  transition: all .3s;
}
.btn-ws-card:hover { background: var(--saffron); color: #fff; }

.ws-cta-block {
  background: linear-gradient(135deg, rgba(232,119,46,.15), rgba(200,167,106,.1));
  border: 1px solid rgba(200,167,106,.25);
  border-radius: 20px;
}
.btn-ws-primary {
  background: var(--saffron);
  color: #fff;
  border: none;
  border-radius: 25px;
  padding: 12px 32px;
  font-weight: 600;
  transition: all .3s;
}
.btn-ws-primary:hover { background: var(--saffron-dark); color: #fff; transform: translateY(-2px); }
.btn-ws-outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 25px;
  padding: 12px 32px;
  font-weight: 500;
  transition: all .3s;
}
.btn-ws-outline:hover { border-color: var(--gold); color: var(--gold); }

/* ─── RETAIL ─── */
.btn-filter {
  border: 1.5px solid #e0d0c0;
  color: var(--dark);
  border-radius: 25px;
  padding: 7px 20px;
  font-size: 13px;
  font-weight: 500;
  background: #fff;
  transition: all .2s;
}
.btn-filter:hover, .btn-filter.active {
  background: var(--saffron);
  color: #fff;
  border-color: var(--saffron);
}

.retail-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.08);
  transition: all .3s;
}
.retail-card:hover { transform: translateY(-6px); box-shadow: 0 12px 35px rgba(0,0,0,.15); }
.retail-img {
  height: 200px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.ri1 { background: linear-gradient(135deg, #f7b32b, #e8772e, #8B3A09); }
.ri2 { background: linear-gradient(135deg, #F97316, #EA580C, #C2410C); }
.ri3 { background: linear-gradient(135deg, #A855F7, #7C3AED, #5B21B6); }
.ri4 { background: linear-gradient(135deg, #F59E0B, #D97706, #B45309); }
.ri5 { background: linear-gradient(135deg, #B45309, #92400E, #78350F); }
.ri6 { background: linear-gradient(135deg, #FBBF24, #F59E0B, #D97706); }
.ri7 { background: linear-gradient(135deg, #EF4444, #DC2626, #B91C1C); }
.ri8 { background: linear-gradient(135deg, #EC4899, #DB2777, #BE185D); }
.retail-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--saffron);
  color: #fff;
  font-size: 10px; font-weight: 700;
  padding: 3px 10px; border-radius: 15px;
}
.festival-badge { background: #F97316; }
.birthday-badge { background: #A855F7; }
.puja-badge { background: #F59E0B; }
.home-badge { background: #27AE60; }
.wishlist-btn {
  position: absolute; top: 10px; right: 10px;
  width: 34px; height: 34px;
  background: #fff;
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: #999;
  cursor: pointer;
  transition: all .2s;
}
.wishlist-btn:hover { color: #e74c3c; transform: scale(1.1); }
.retail-body { padding: 16px; }
.retail-body h6 { font-size: 14px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.retail-price { font-size: 16px; font-weight: 700; color: var(--saffron); }
.retail-mrp { font-size: 13px; color: #aaa; text-decoration: line-through; }
.stars { font-size: 13px; color: #F59E0B; }
.btn-retail-add {
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  padding: 9px;
  transition: all .3s;
}
.btn-retail-add:hover { background: var(--saffron); color: #fff; }

/* ─── GALLERY ─── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 250px 250px;
  gap: 12px;
}
.gal-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gal-item.g1 { background: linear-gradient(135deg, #8B3A09, #c4813c); }
.gal-item.g2 { background: linear-gradient(135deg, #F59E0B, #D97706); }
.gal-item.g3 { background: linear-gradient(135deg, #E8772E, #8B1A1A); grid-row: span 2; }
.gal-item.g4 { background: linear-gradient(135deg, #1A0A02, #c4813c); }
.gal-item.g5 { background: linear-gradient(135deg, #A855F7, #5B21B6); }
.gal-item.g6 { background: linear-gradient(135deg, #27AE60, #1A0A02); grid-column: span 2; }
.gal-item.g7 { background: linear-gradient(135deg, #E74C3C, #8B1A1A); }
.gal-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0);
  display: flex; align-items: flex-end;
  padding: 20px;
  transition: all .3s;
}
.gal-overlay span {
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s;
}
.gal-item:hover .gal-overlay { background: rgba(0,0,0,.45); }
.gal-item:hover .gal-overlay span { opacity: 1; transform: translateY(0); }
@media (max-width: 768px) {
  .gallery-grid { grid-template-columns: repeat(2,1fr); grid-template-rows: auto; }
  .gal-item.g3 { grid-row: span 1; }
  .gal-item.g6 { grid-column: span 1; }
}

/* ─── TESTIMONIALS ─── */
.testimonials-section {
  background: linear-gradient(160deg, #1A0A02, #2D1208);
}
.testi-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(200,167,106,.2);
  border-radius: 16px;
  padding: 28px;
  color: #fff;
  height: 100%;
  transition: all .3s;
}
.testi-card:hover { border-color: rgba(200,167,106,.45); background: rgba(255,255,255,.09); }
.featured-testi {
  background: rgba(232,119,46,.12);
  border-color: rgba(232,119,46,.4);
}
.testi-stars { font-size: 18px; color: #F59E0B; margin-bottom: 14px; }
.testi-card p { color: rgba(255,255,255,.75); font-size: 14px; line-height: 1.8; margin-bottom: 20px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-avatar {
  width: 44px; height: 44px;
  background: var(--saffron);
  color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 18px; flex-shrink: 0;
}
.gold-av { background: var(--gold); color: var(--dark); }
.trust-bar { color: #fff; gap: 30px; }
.trust-item { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,.75); }
.trust-item i { font-size: 20px; color: var(--gold); }

/* ─── CONTACT ─── */
.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.ci-item { display: flex; gap: 14px; align-items: flex-start; }
.ci-icon {
  width: 42px; height: 42px;
  background: #fff5ef;
  color: var(--saffron);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ci-item a { color: var(--text-muted); text-decoration: none; }
.ci-item a:hover { color: var(--saffron); }
.social-bar { display: flex; gap: 10px; }
.soc-btn {
  width: 38px; height: 38px;
  background: #fff;
  border: 1.5px solid #e0d0c0;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; color: var(--dark);
  text-decoration: none;
  transition: all .2s;
}
.soc-btn:hover { background: var(--saffron); border-color: var(--saffron); color: #fff; }
.soc-light { border-color: rgba(255,255,255,.2); color: rgba(255,255,255,.7); background: transparent; }
.soc-light:hover { background: var(--saffron); border-color: var(--saffron); color: #fff; }
.contact-form-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 40px rgba(0,0,0,.1);
}
.form-label { font-size: 13px; font-weight: 600; color: var(--dark); margin-bottom: 6px; }
.form-control, .form-select {
  border: 1.5px solid #e5d8ca;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 14px;
  transition: all .2s;
}
.form-control:focus, .form-select:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232,119,46,.12);
  outline: none;
}
.btn-contact-submit {
  background: linear-gradient(135deg, var(--saffron), var(--saffron-dark));
  color: #fff; border: none;
  border-radius: 12px;
  padding: 14px;
  font-weight: 700;
  font-size: 15px;
  transition: all .3s;
}
.btn-contact-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(232,119,46,.35); color: #fff; }

/* ─── MAP ─── */
.map-section { height: 260px; }
.map-placeholder {
  height: 100%;
  background: linear-gradient(135deg, #f0e8dc, #e8d8c8);
  border-top: 3px solid var(--saffron);
}

/* ─── FOOTER ─── */
.main-footer { background: var(--dark); }
.footer-top { padding: 60px 0 40px; }
.footer-head { font-family: 'Poppins', sans-serif; font-weight: 700; color: var(--gold); font-size: 13px; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 16px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,.55); text-decoration: none; font-size: 13.5px; transition: color .2s; }
.footer-links a:hover { color: var(--gold); }
.newsletter-form { display: flex; gap: 0; overflow: hidden; border-radius: 10px; border: 1px solid rgba(200,167,106,.3); }
.newsletter-form .form-control { border: none; background: rgba(255,255,255,.07); color: #fff; border-radius: 0; padding: 10px 14px; font-size: 13px; }
.newsletter-form .form-control::placeholder { color: rgba(255,255,255,.35); }
.newsletter-form .form-control:focus { box-shadow: none; }
.btn-saffron { background: var(--saffron); color: #fff; border: none; padding: 10px 18px; border-radius: 0; font-size: 13px; font-weight: 600; flex-shrink: 0; cursor: pointer; }
.payment-badges { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.payment-badges span {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-size: 11px; font-weight: 600;
  padding: 4px 12px; border-radius: 4px;
  border: 1px solid rgba(255,255,255,.15);
}
.footer-bottom { background: rgba(0,0,0,.3); padding: 18px 0; }

/* ─── FLOATING ELEMENTS ─── */
.whatsapp-float {
  position: fixed; bottom: 90px; right: 24px;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 1000;
  transition: all .3s;
  animation: pulse 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }
@keyframes pulse {
  0%,100%{box-shadow:0 4px 20px rgba(37,211,102,.4)}
  50%{box-shadow:0 4px 30px rgba(37,211,102,.7)}
}
.back-to-top {
  position: fixed; bottom: 24px; right: 24px;
  width: 44px; height: 44px;
  background: var(--saffron);
  color: #fff; border: none;
  border-radius: 50%;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(232,119,46,.4);
  z-index: 999;
  opacity: 0; pointer-events: none;
  transition: all .3s;
}
.back-to-top.visible { opacity: 1; pointer-events: all; }
.back-to-top:hover { background: var(--saffron-dark); transform: translateY(-2px); }

/* ─── ANIMATIONS ─── */
.fade-in { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 991px) {
  .section-pad { padding: 60px 0; }
  .about-img-grid { height: 320px; }
}
@media (max-width: 767px) {
  .hero-title { font-size: 2rem; }
  .stat-divider { display: none; }
  .hero-stats { gap: 20px; }
  .about-img-grid { height: 260px; }
  .contact-form-card { padding: 24px; }
}

/* GALLERY */

.gallery-card{
position:relative;
overflow:hidden;
border-radius:22px;
height:320px;
cursor:pointer;
}

.gallery-image{
width:100%;
height:100%;
object-fit:cover;
transition:.4s;
}

.gallery-card:hover .gallery-image{
transform:scale(1.08);
}

.gallery-overlay{
position:absolute;
left:0;
right:0;
bottom:0;
padding:20px;
background:linear-gradient(
to top,
rgba(0,0,0,.8),
transparent
);
color:#fff;
}

.gallery-overlay h5{
font-weight:700;
margin-bottom:5px;
}

.gallery-overlay p{
margin:0;
font-size:14px;
}

.testimonial-card{
background:rgba(255,255,255,.08);
border:1px solid rgba(255,255,255,.15);
padding:30px;
border-radius:20px;
height:100%;
}

.testimonial-card p{
color:#ffffff;
font-size:16px;
line-height:1.8;
}

.testimonial-card h5{
color:#ffffff;
margin-top:20px;
font-weight:600;
}

.stars{
font-size:24px;
margin-bottom:15px;
}
/* ── TOPBAR ── */
        .topbar {
            background: #0D0800;
            border-bottom: 1px solid rgba(200, 167, 106, .1);
            color: rgba(255, 255, 255, .6);
            font-size: .75rem;
            padding: 7px 0
        }

        .topbar i {
            color: #C8A76A;
            margin-right: 4px
        }

        .topbar a {
            color: rgba(255, 255, 255, .5);
            text-decoration: none;
            transition: color .2s
        }

        .topbar a:hover {
            color: #C8A76A
        }
        /* ── NAVBAR ── */
        .main-nav {
            background: rgba(13, 8, 0, .96);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(200, 167, 106, .12);
            position: sticky;
            top: 0;
            z-index: 999;
            padding: 10px 0
        }

        .brand-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, #C8A76A, #E8772E);
            display: flex;
            align-items: center;
            justify-content: center;
            color: #0D0800;
            font-size: 1.2rem;
            flex-shrink: 0
        }

        .brand-name {
            font-family: 'Playfair Display', serif;
            color: #fff;
            font-size: 1rem;
            font-weight: 700;
            line-height: 1.1
        }

        .brand-tagline {
            font-size: .62rem;
            color: #C8A76A;
            letter-spacing: 1px
        }

        .main-nav .nav-link {
            color: rgba(255, 255, 255, .6);
            font-size: .84rem;
            font-weight: 500;
            padding: 7px 13px;
            border-radius: 8px;
            transition: all .2s;
            text-decoration: none;
            display: inline-block
        }

        .main-nav .nav-link:hover,
        .main-nav .nav-link.active {
            color: #C8A76A;
            background: rgba(200, 167, 106, .08)
        }

        .btn-quote {
            background: linear-gradient(135deg, #C8A76A, #E8772E);
            color: #0D0800 !important;
            font-weight: 700;
            font-size: .82rem;
            padding: 8px 22px;
            border-radius: 50px;
            text-decoration: none;
            transition: all .2s;
            display: inline-block
        }

        .btn-quote:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(232, 119, 46, .4)
        }

        .navbar-toggler {
            border: 1px solid rgba(200, 167, 106, .3);
            background: transparent;
            padding: 6px 10px;
            cursor: pointer
        }

        .custom-nav-toggler {
            display: none;
        }

        .navbar-toggler i {
            color: #C8A76A;
            font-size: 1.3rem
        }

        #navMenu {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .main-nav .nav-link {
            color: rgba(255, 255, 255, .72) !important;
            opacity: 1 !important;
            visibility: visible !important;
            display: inline-block !important;
        }

        .main-nav .nav-link:hover,
        .main-nav .nav-link.active {
            color: #C8A76A !important;
            background: rgba(200, 167, 106, .08);
        }

        @media(max-width:1399px) {

            #navMenu {
                display: none;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0;
                gap: 4px;
                width: 100%;
            }

            #navMenu.open {
                display: flex;
            }

            .main-nav .nav-link {
                width: 100%;
                padding: 10px 16px;
            }

            .custom-nav-toggler {
                display: inline-flex;
            }

        }

        @media(max-width:1399px) {
            #navMenu {
                display: none;
                flex-direction: column;
                align-items: flex-start;
                padding: 16px 0;
                gap: 4px;
                width: 100%
            }

            #navMenu.open {
                display: flex
            }

            .main-nav .nav-link {
                width: 100%;
                padding: 10px 16px
            }

            .custom-nav-toggler {
                display: inline-flex;
            }
        }
.cart-wrapper{
    position:relative;
    margin-left: 12px;
}

.cart-bubble {
    position: relative;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all .25s;
}

.cart-bubble:hover {
    background: rgba(200, 167, 106, .12);
    border-color: #C8A76A;
}

.cart-icon {
    color: #fff;
    font-size: 1.1rem;
}

.cart-bubble .bubble {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 19px;
    height: 19px;
    background: #E8772E;
    color: #fff;
    font-size: .58rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-dropdown{
    position:absolute;
    top:58px;
    right:0;
    width:320px;
    background:#fff;
    border-radius:18px;
    box-shadow:0 20px 60px rgba(0,0,0,.18);
    overflow:hidden;
    display:none;
    z-index:99999;
}

.cart-dropdown.show{
    display:block;
    animation: cartAnim .25s ease;
}

@keyframes cartAnim {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.cart-head {
    padding: 16px 18px;
    background: #2A1800;
    color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: .82rem;
    font-weight: 700;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
    padding: 14px;
}

.cart-items::-webkit-scrollbar {
    width: 6px;
}

.cart-items::-webkit-scrollbar-thumb {
    background: #E2C48D;
    border-radius: 20px;
}

.empty-cart {
    text-align: center;
    padding: 30px 10px;
    color: #9CA3AF;
}

.empty-cart i {
    font-size: 2rem;
    display: block;
    margin-bottom: 10px;
}

.cart-item-card {
    display: flex;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid #F3E7D3;
    align-items: center;
}

.cart-item-card:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 70px;
    height: 70px;
    border-radius: 14px;
    overflow: hidden;
    background: #FFF7EA;
    flex-shrink: 0;
    border: 1px solid #F3E7D3;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-size: .92rem;
    font-weight: 700;
    color: #2A1800;
    line-height: 1.3;
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 1rem;
    font-weight: 800;
    color: #E8772E;
    margin-bottom: 3px;
}

.cart-item-qty-control {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
}

.cart-item-qty-control button {
    width: 28px;
    height: 28px;
    border: none;
    border-radius: 8px;
    background: #2A1800;
    color: #C8A76A;
    font-weight: 700;
    cursor: pointer;
}

.cart-item-qty-control span {
    font-size: .9rem;
    font-weight: 700;
    min-width: 20px;
    text-align: center;
}

.cart-remove-btn {
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 10px;
    background: #FFF1F1;
    color: #DC2626;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: .2s;
    flex-shrink: 0;
}

.cart-remove-btn:hover {
    background: #DC2626;
    color: #fff;
}

.cart-footer {
    padding: 14px;
    border-top: 1px solid #eee;
}

.view-cart-btn {
    width: 100%;
    background: #2A1800;
    color: #C8A76A;
    border: none;
    padding: 11px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
}

.btn-profile{

width:48px;

height:48px;

border-radius:50%;

background:#D89A4B;

color:#fff;

font-weight:bold;

font-size:20px;

border:none;

display:flex;

align-items:center;

justify-content:center;

transition:.3s;

}

.btn-profile:hover{

background:#b87d36;

color:#fff;

}

.profile-dropdown{

min-width:260px;

border-radius:15px;

padding:10px;

border:none;

box-shadow:0 10px 30px rgba(0,0,0,.15);

}