/* =====================================================
   SHREE SUVARNA LAXMI JEWELLERS — Main Stylesheet
   Brand Identity: Traditional Indian + Modern Luxury
   ===================================================== */

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+Devanagari:wght@400;500;600;700;800&family=Noto+Sans+Devanagari:wght@400;500;600;700&family=Rozha+One&family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400&family=Outfit:wght@300;400;500;600;700&display=swap');

/* =====================================================
   CSS CUSTOM PROPERTIES (Design System)
   ===================================================== */
:root {
  /* Primary Storefront Palette */
  --saffron:         #C95A20;
  --saffron-light:   #E56A26;
  --deep-red:        #8E2418;
  --deep-red-dark:   #68170F;
  --gold:            #C89B3C;
  --gold-light:      #E7C873;
  --gold-deep:       #8B6914;

  /* Gradients */
  --saffron-gradient: linear-gradient(135deg, #E56A26 0%, #C95A20 50%, #8E2418 100%);
  --gold-gradient:    linear-gradient(135deg, #F5D78E 0%, #C89B3C 50%, #8B6914 100%);
  --gold-gradient-h:  linear-gradient(90deg, #F5D78E 0%, #C89B3C 50%, #8B6914 100%);
  --red-saffron-grad: linear-gradient(135deg, #8E2418 0%, #C95A20 100%);

  /* Neutrals */
  --cream:           #FFF8ED;
  --ivory:           #FDFAF4;
  --white:           #FFFFFF;
  --dark-charcoal:   #2B211C;
  --dark-bg:         #1E1612;
  --footer-bg:       #18100C;

  /* Text Colors */
  --text-dark:       #2B211C;
  --text-muted:      #6B5B52;
  --text-light:      #9E8C82;

  /* Fonts */
  --font-hindi-serif: 'Noto Serif Devanagari', 'Rozha One', Georgia, serif;
  --font-hindi-sans:  'Noto Sans Devanagari', 'Outfit', sans-serif;
  --font-serif:       'Cormorant Garamond', Georgia, serif;
  --font-sans:        'Outfit', sans-serif;

  /* Spacing */
  --section-py:      90px;
  --section-py-sm:   50px;

  /* Shadows */
  --shadow-sm:       0 2px 10px rgba(142,36,24,0.06);
  --shadow-md:       0 8px 26px rgba(142,36,24,0.1);
  --shadow-gold:     0 8px 25px rgba(200,155,60,0.3);
  --shadow-hover:    0 14px 40px rgba(142,36,24,0.16);

  /* Border Radius */
  --radius-sm:  8px;
  --radius-md:  14px;
  --radius-lg:  20px;
  --radius-arch:20px 20px 0 0;
}

/* =====================================================
   RESET & BASE
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-hindi-sans);
  color: var(--text-dark);
  background-color: var(--ivory);
  overflow-x: hidden;
  line-height: 1.7;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; padding: 0; margin: 0; }

/* =====================================================
   LANGUAGE SWITCHER PILL
   ===================================================== */
.lang-switcher-wrap {
  display: inline-flex;
  align-items: center;
  background: rgba(142,36,24,0.08);
  border: 1.5px solid var(--saffron);
  border-radius: 50px;
  padding: 2px;
  margin-left: 8px;
}
.lang-pill-btn {
  font-family: var(--font-hindi-sans);
  font-size: 0.76rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
  border: none;
  background: transparent;
  color: var(--dark-charcoal);
  cursor: pointer;
  transition: all 0.25s ease;
}
.lang-pill-btn:hover {
  color: var(--deep-red);
}
.lang-pill-btn.active {
  background: var(--saffron-gradient);
  color: #fff;
  box-shadow: 0 2px 8px rgba(201,90,32,0.3);
}

/* =====================================================
   TYPOGRAPHY & HINDI STYLING
   ===================================================== */
.font-hindi-serif { font-family: var(--font-hindi-serif); }
.font-serif { font-family: var(--font-serif); }

.hindi-tagline {
  font-family: var(--font-hindi-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--saffron);
  letter-spacing: 0.08em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hindi-tagline::before,
.hindi-tagline::after {
  content: '❖';
  font-size: 0.8rem;
  color: var(--gold);
}

.section-label {
  font-family: var(--font-hindi-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--saffron);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.section-label::before,
.section-label::after {
  content: '';
  flex: 1;
  max-width: 36px;
  height: 2px;
  background: var(--gold-gradient-h);
}
.section-label.centered { justify-content: center; }

.section-title {
  font-family: var(--font-hindi-serif);
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--deep-red);
}

.section-title .en-sub {
  display: block;
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2vw, 1.6rem);
  font-weight: 600;
  color: var(--saffron);
  margin-top: 4px;
}

.section-subtitle {
  font-family: var(--font-sans);
  font-size: 1.02rem;
  color: var(--text-muted);
  max-width: 620px;
  line-height: 1.75;
  margin-top: 10px;
}

/* Ornamental Dividers */
.gold-divider {
  width: 70px;
  height: 3px;
  background: var(--saffron-gradient);
  margin: 14px 0 20px;
  border-radius: 3px;
  position: relative;
}
.gold-divider::after {
  content: '◆';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 10px;
  color: var(--gold);
  background: var(--ivory);
  padding: 0 4px;
}
.gold-divider.centered { margin: 14px auto 20px; }

/* =====================================================
   BUTTONS
   ===================================================== */
.btn-saffron {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--saffron-gradient);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 18px rgba(201,90,32,0.35);
  text-transform: uppercase;
}
.btn-saffron:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(201,90,32,0.5);
  color: #fff;
}

.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  background: var(--gold-gradient);
  color: var(--dark-charcoal);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: var(--shadow-gold);
  text-transform: uppercase;
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(200,155,60,0.5);
  color: var(--dark-charcoal);
}

.btn-outline-red {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: transparent;
  color: var(--deep-red);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border: 2px solid var(--deep-red);
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-base);
  text-transform: uppercase;
}
.btn-outline-red:hover {
  background: var(--deep-red);
  color: #fff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 26px;
  background: #25D366;
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 700;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition-base);
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
  text-transform: uppercase;
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,211,102,0.45);
}

/* =====================================================
   NAVBAR
   ===================================================== */
#mainNavbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  padding: 12px 0;
  background: rgba(255, 248, 237, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s ease;
}
#mainNavbar.scrolled {
  padding: 8px 0;
  box-shadow: 0 4px 20px rgba(43,33,28,0.12);
}

.brand-logo-img {
  height: 52px;
  width: auto;
  transition: transform 0.3s ease;
}
.brand-logo-img:hover { transform: scale(1.03); }

.nav-links-center {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-link-item {
  font-family: var(--font-hindi-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--dark-charcoal);
  padding: 8px 14px;
  border-radius: 6px;
  transition: var(--transition-base);
  position: relative;
}
.nav-link-item:hover,
.nav-link-item.active {
  color: var(--deep-red);
  background: rgba(201,90,32,0.08);
}
.nav-link-item.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 15%; right: 15%;
  height: 2px;
  background: var(--saffron);
  border-radius: 2px;
}

.navbar-cta-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.navbar-cta-wrap .btn-call {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--saffron-gradient);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  border-radius: 50px;
  transition: var(--transition-base);
  white-space: nowrap;
}
.navbar-cta-wrap .btn-call:hover { transform: translateY(-1px); }

/* Mobile Menu Toggle */
.nav-toggler {
  width: 42px; height: 42px;
  background: rgba(201,90,32,0.08);
  border: 1px solid var(--saffron);
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  padding: 0;
}
.nav-toggler span {
  width: 22px; height: 2px;
  background: var(--deep-red);
  border-radius: 2px;
  transition: var(--transition-base);
}
.nav-toggler.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggler.open span:nth-child(2) { opacity: 0; }
.nav-toggler.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu Drawer */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 1049;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateX(100%);
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-nav-link {
  font-family: var(--font-hindi-serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--deep-red);
  padding: 8px 16px;
  transition: var(--transition-base);
}
.mobile-nav-link:hover { color: var(--saffron); }

/* =====================================================
   HERO SECTION
   ===================================================== */
#hero {
  position: relative;
  padding-top: 130px;
  padding-bottom: 80px;
  background: linear-gradient(135deg, #FFF8ED 0%, #FDFAF4 60%, #F5E9D3 100%);
  overflow: hidden;
  border-bottom: 3px solid var(--gold);
}

.hero-arch-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 4px solid var(--saffron);
  box-shadow: var(--shadow-hover);
  background: #fff;
}
.hero-arch-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-shop-hindi {
  font-family: var(--font-hindi-serif);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  font-weight: 800;
  line-height: 1.15;
  color: var(--deep-red);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}

.hero-shop-en {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.2vw, 1.8rem);
  font-weight: 700;
  color: var(--saffron);
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.hero-subtitle {
  font-family: var(--font-hindi-sans);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--text-dark);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 540px;
}

.hero-trust-bar {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.trust-badge-item {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1.5px solid rgba(200,155,60,0.3);
  padding: 8px 16px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
}
.trust-badge-item strong {
  font-family: var(--font-hindi-serif);
  color: var(--deep-red);
  font-size: 1.1rem;
}
.trust-badge-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* =====================================================
   TRUST STATS STRIP
   ===================================================== */
#trust-stats {
  background: var(--deep-red);
  color: #fff;
  padding: 50px 0;
  position: relative;
}
.stat-card-new {
  text-align: center;
  padding: 16px;
}
.stat-number-new {
  font-family: var(--font-hindi-serif);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label-new {
  font-family: var(--font-hindi-sans);
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.05em;
}

/* =====================================================
   ABOUT SECTION
   ===================================================== */
#about {
  padding: var(--section-py) 0;
  background: var(--ivory);
}

.about-store-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--gold);
}
.about-store-frame img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* =====================================================
   COLLECTIONS GRID
   ===================================================== */
#collections {
  padding: var(--section-py) 0;
  background: var(--cream);
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1199px) { .collections-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .collections-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; } }

.collection-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,90,32,0.15);
  transition: var(--transition-base);
}
.collection-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--saffron);
}

.collection-img-wrap {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.collection-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collection-card:hover .collection-img-wrap img { transform: scale(1.08); }

.collection-body {
  padding: 16px;
  text-align: center;
}
.collection-title-hi {
  font-family: var(--font-hindi-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--deep-red);
  margin-bottom: 2px;
}
.collection-title-en {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--saffron);
  margin-bottom: 8px;
}
.collection-desc {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
}

/* =====================================================
   FEATURED JEWELLERY
   ===================================================== */
#featured {
  padding: var(--section-py) 0;
  background: var(--ivory);
}

.product-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(200,155,60,0.2);
  transition: var(--transition-base);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--gold);
}

.product-body {
  padding: 18px;
}
.product-name-hi {
  font-family: var(--font-hindi-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--deep-red);
}
.product-name-en {
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--saffron);
  margin-bottom: 12px;
}

/* =====================================================
   WHY CHOOSE US
   ===================================================== */
#why-us {
  padding: var(--section-py) 0;
  background: var(--dark-bg);
  color: #fff;
}

.why-card-new {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(200,155,60,0.25);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  height: 100%;
  transition: var(--transition-base);
}
.why-card-new:hover {
  background: rgba(201,90,32,0.15);
  border-color: var(--saffron);
  transform: translateY(-4px);
}
.why-icon-new {
  font-size: 2rem;
  margin-bottom: 14px;
}
.why-title-hi {
  font-family: var(--font-hindi-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.why-title-en {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* =====================================================
   REVIEWS & LOCATION & CONTACT
   ===================================================== */
#reviews, #location, #contact {
  padding: var(--section-py) 0;
}
#reviews { background: var(--cream); }
#location { background: var(--ivory); }
#contact { background: var(--cream); }

.review-card-new {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(201,90,32,0.12);
  margin-bottom: 16px;
}

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 3px solid var(--saffron);
  height: 400px;
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* =====================================================
   FLOATING BUTTONS & FOOTER
   ===================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 24px; right: 24px;
  z-index: 1000;
  width: 58px; height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem; color: #fff;
  box-shadow: 0 6px 20px rgba(37,211,102,0.45);
}
.floating-call {
  position: fixed;
  bottom: 92px; right: 24px;
  z-index: 1000;
  width: 50px; height: 50px;
  background: var(--saffron-gradient);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: #fff;
  box-shadow: 0 4px 16px rgba(201,90,32,0.4);
}

#footer {
  background: var(--footer-bg);
  color: #fff;
  padding: 70px 0 30px;
  border-top: 3px solid var(--saffron);
}
.footer-logo-img { height: 60px; width: auto; margin-bottom: 14px; }
.footer-tagline {
  font-family: var(--font-hindi-serif);
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 16px;
}

/* Scroll reveal classes */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease-out;
}
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* Responsive adjustments */
@media (max-width: 991px) {
  :root { --section-py: 60px; }
  .nav-links-center, .navbar-cta-wrap { display: none !important; }
}