/* ============================================================
   MANOKAMNA – Crafted with Devotion
   Main Stylesheet | Version 2.0
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600&family=Tiro+Devanagari+Sanskrit&display=swap');

/* ── CSS Variables ── */
:root {
  --gold:        #C8860A;
  --gold-light:  #E5A820;
  --gold-dark:   #8B5E06;
  --cream:       #FDF6E3;
  --dark:        #1A0F00;
  --dark-mid:    #2C1A00;
  --text:        #3D2B00;
  --text-light:  #7A5C2E;
  --white:       #FFFFFF;
  --border:      rgba(200,134,10,0.3);
  --shadow:      0 8px 40px rgba(0,0,0,0.25);
  --radius:      12px;
  --transition:  all 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset & Base ── */
* { 
  box-sizing: border-box; 
  margin: 0; 
  padding: 0; 
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  /* This ensures internal pages don't hide behind the fixed navbar */
  padding-top: 80px; 
}

/* On the Home Page ONLY, remove the padding-top so the video/hero touches the top */
.home-page {
  padding-top: 0;
}

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

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.2;
  color: var(--dark);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 600; }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }
.devanagari { font-family: 'Tiro Devanagari Sanskrit', serif; }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 90px 0; }
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  border: 2px solid transparent;
}
.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
}
/* On product pages (sub-page), outline btn should use gold */
.sub-page .btn-outline.btn-large {
  border-color: var(--gold);
  color: var(--gold);
}
.sub-page .btn-outline.btn-large:hover {
  background: var(--gold);
  color: var(--white);
}
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 20px auto;
  width: fit-content;
}
.divider::before, .divider::after {
  content: '';
  display: block;
  width: 80px;
  height: 1px;
  background: var(--gold);
}
.divider-icon { color: var(--gold); font-size: 1.2rem; }

/* ── Top Bar ── */
.top-bar {
  background: var(--gold);
  color: var(--white);
  text-align: center;
  padding: 10px 24px;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.5px;
}
.top-bar a {
  color: var(--white);
  font-weight: 700;
  text-decoration: underline;
  margin-left: 8px;
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition);
  padding: 0;
}
.navbar.scrolled {
  background: rgba(26, 15, 0, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1400px;
  margin: 0 auto;
}
/* Optimized CSS for Transparent Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 50px; /* Adjust size to fit your navbar height */
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.logo-icon img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
}

.logo-text .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}

.logo-text .tagline {
  font-size: 0.65rem;
  letter-spacing: 2px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { width: 100%; }
.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--gold-light) !important; }
.nav-cta::after { display: none !important; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
}

/* ── Hero Section ── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-top: 0;
}
.hero-video-wrap {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-video-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(26,15,0,0.55) 0%,
    rgba(26,15,0,0.35) 50%,
    rgba(26,15,0,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 900px;
}
.hero-badge {
  display: inline-block;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  backdrop-filter: blur(6px);
  background: rgba(200,134,10,0.12);
}
.hero-title {
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
  margin-bottom: 16px;
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  font-size: 1rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 12px;
  font-style: italic;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
}
.hero-shloka {
  font-family: 'Tiro Devanagari Sanskrit', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  margin-bottom: 40px;
  opacity: 0.9;
}
.hero-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  animation: bounce 2s infinite;
}
.hero-scroll .arrow { font-size: 1.2rem; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Presence / Logos Strip ── */
.presence-strip {
  background: var(--dark);
  padding: 24px 0;
  overflow: hidden;
}
.presence-label {
  text-align: center;
  color: var(--gold);
  font-size: 0.65rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.logo-track {
  display: flex;
  gap: 60px;
  align-items: center;
  animation: scroll-logos 25s linear infinite;
  width: max-content;
}
.logo-track:hover { animation-play-state: paused; }
.logo-track .logo-item {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  white-space: nowrap;
  transition: var(--transition);
}
.logo-track .logo-item:hover { color: var(--gold-light); }
@keyframes scroll-logos {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ── Product Banner ── */
.product-banner {
  position: relative;
  height: 480px;
  overflow: hidden;
}
.product-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,15,0,0.75) 0%, rgba(26,15,0,0.2) 60%, transparent 100%);
}
.product-banner-text {
  position: absolute;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
  z-index: 1;
  color: var(--white);
}
.product-banner-text .hindi {
  font-family: 'Tiro Devanagari Sanskrit', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--gold-light);
  display: block;
  margin-bottom: 8px;
}
.product-banner-text p {
  font-size: 1rem;
  color: rgba(255,255,255,0.8);
  max-width: 380px;
}

/* ── Section Headers ── */
.section-header { text-align: center; margin-bottom: 60px; }
.section-header .eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 16px; }
.section-header p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1rem;
}

/* ── Products Section ── */
.products-section { background: var(--cream); }
.product-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  padding: 8px 24px;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--text-light);
  font-size: 0.82rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Poppins', sans-serif;
}
.filter-btn.active, .filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  position: relative;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(200,134,10,0.2);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-card-img img { transform: scale(1.06); }
.product-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: var(--gold);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 50px;
  text-transform: uppercase;
}
.product-card-body { padding: 24px; }
.product-category {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.product-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}
.product-stars { color: var(--gold); font-size: 0.9rem; margin-bottom: 8px; }
.product-price {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.product-price .original {
  text-decoration: line-through;
  color: var(--text-light);
  font-weight: 400;
  margin-left: 8px;
  font-size: 0.9rem;
}
.product-btn {
  display: block;
  text-align: center;
  padding: 12px;
  background: var(--dark);
  color: var(--white);
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
}
.product-btn:hover { background: var(--gold); }

/* ── Our Purpose Section ── */
.purpose-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.purpose-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/purpose_bg.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.15;
}
.purpose-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.purpose-text .eyebrow {
  color: var(--gold-light);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 16px;
}
.purpose-text h2 { color: var(--white); margin-bottom: 24px; }
.purpose-text p { color: rgba(255,255,255,0.75); margin-bottom: 32px; line-height: 1.9; }
.purpose-video {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  position: relative;
}
.purpose-video iframe {
  width: 100%;
  height: 340px;
  border: none;
  display: block;
}

/* ── Ethics / Values Section ── */
.ethics-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--white);
}
.ethics-top { text-align: center; margin-bottom: 60px; }
.ethics-top .eyebrow {
  display: inline-block;
  border: 1px solid rgba(255,255,255,0.4);
  color: rgba(255,255,255,0.9);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 50px;
  margin-bottom: 20px;
}
.ethics-top h2 { color: var(--white); margin-bottom: 12px; }
.ethics-shloka {
  font-family: 'Tiro Devanagari Sanskrit', serif;
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 8px;
}
.ethics-translation {
  font-style: italic;
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.value-card {
  text-align: center;
  padding: 32px 20px;
  background: rgba(255,255,255,0.12);
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  transition: var(--transition);
}
.value-card:hover {
  background: rgba(255,255,255,0.2);
  transform: translateY(-6px);
}
.value-icon {
  font-size: 2.5rem;
  margin-bottom: 16px;
  display: block;
}
.value-card h4 { color: var(--white); margin-bottom: 12px; font-size: 1rem; }
.value-card p { color: rgba(255,255,255,0.8); font-size: 0.88rem; line-height: 1.7; }

/* ── Spiritual Essence Section ── */
.spiritual-section {
  position: relative;
  overflow: hidden;
}
.spiritual-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/spiritual_essence.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.spiritual-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,15,0,0.72);
}
.spiritual-inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
  padding: 120px 24px;
  max-width: 800px;
  margin: 0 auto;
}
.spiritual-inner h2 { color: var(--white); margin-bottom: 24px; }
.spiritual-inner p { color: rgba(255,255,255,0.8); font-size: 1.05rem; line-height: 1.9; margin-bottom: 40px; }

/* ── Process Section ── */
.process-section { background: var(--cream); }
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 48px;
  left: 12%;
  right: 12%;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
  z-index: 0;
}
.process-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.process-num {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 700;
  margin: 0 auto 20px;
  box-shadow: 0 8px 24px rgba(200,134,10,0.4);
  border: 4px solid var(--cream);
  transition: var(--transition);
}
.process-step:hover .process-num {
  background: var(--dark);
  transform: scale(1.1);
}
.process-step h4 { color: var(--dark); margin-bottom: 8px; font-size: 1rem; }
.process-step p { color: var(--text-light); font-size: 0.88rem; }

/* ── FAQ Section ── */
.faq-section { background: var(--white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--dark);
  transition: var(--transition);
  gap: 16px;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
  transition: var(--transition);
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--dark); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-answer p {
  padding-bottom: 24px;
  color: var(--text-light);
  line-height: 1.9;
}
.faq-item.open .faq-answer { max-height: 300px; }

/* ── About Page ── */
.about-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,15,0,0.6);
}
.about-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--white);
}
.about-hero-content h1 { color: var(--white); }
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 100px 0;
}
.about-text h2 { margin-bottom: 24px; }
.about-text p { color: var(--text-light); margin-bottom: 20px; line-height: 1.9; }
.about-info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 32px;
}
.about-info-item {
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--gold);
}
.about-info-item .label {
  font-size: 0.72rem;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.about-info-item .value { font-size: 0.9rem; color: var(--text); font-weight: 500; }
.about-img { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .logo-text .brand { color: var(--white); }
.footer-brand .logo-text .tagline { color: var(--gold); }
.footer-brand p {
  margin-top: 20px;
  font-size: 0.88rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.6);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}
.social-link {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-col h5 {
  color: var(--white);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(200,134,10,0.3);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 0.88rem;
}
.footer-contact-item .icon { color: var(--gold); font-size: 1rem; margin-top: 2px; flex-shrink: 0; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(255,255,255,0.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: var(--transition);
  animation: pulse-wa 2.5s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }
@keyframes pulse-wa {
  0%, 100% { box-shadow: 0 8px 24px rgba(37,211,102,0.4); }
  50% { box-shadow: 0 8px 40px rgba(37,211,102,0.7); }
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .purpose-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-content { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .navbar-inner { padding: 16px 24px; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--dark);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .hamburger { display: flex; z-index: 1000; }
  .values-grid { grid-template-columns: 1fr 1fr; }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .products-grid { grid-template-columns: 1fr 1fr; }
  .about-info-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .values-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
}


/* --- INTERNAL PAGE FIXES --- */

/* 1. Remove the white gap at the top */
html {
  margin: 0;
  padding: 0;
}
body {
  margin: 0;
}

/* 2. Fix the Navbar background for internal pages */
/* Because there is no video behind the navbar on internal pages, we need to see it */
body:not(.home-page) .navbar {
  background: var(--dark) !important;
  position: fixed;
}

/* 3. Ensure content starts below the navbar */
body:not(.home-page) {
  background-color: var(--cream); /* Matches your design */
}

/* ── Subpage Specific Styles ── */
.sub-page .navbar {
  background: rgba(26, 15, 0, 0.97);
  backdrop-filter: blur(12px);
}

.sub-hero {
  height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  background-size: cover;
  background-position: center;
  position: relative;
}

.sub-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 0;
}

.sub-hero .container {
  position: relative;
  z-index: 1;
}

.sub-hero h1,
.sub-hero h2,
.sub-hero h3,
.sub-hero p {
  color: var(--white);
}

/* ── Product Detail Page ── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

.product-gallery .main-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
  height: 500px;
}

.product-gallery .main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info-wrap .product-title {
  font-size: 2.8rem;
  margin: 10px 0 20px;
}

.product-rating {
  color: var(--gold);
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.product-info-wrap .product-price {
  font-size: 1.8rem;
  color: var(--gold-dark);
  margin-bottom: 30px;
}

.product-options {
  margin-bottom: 30px;
}

.product-options label {
  font-weight: 600;
  margin-right: 15px;
}

.product-options select {
  padding: 10px 20px;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--white);
  font-family: inherit;
}

.btn-large {
  padding: 18px 60px;
  font-size: 1.1rem;
}

/* ── About Page Grid ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 25px;
}

.about-text p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.commitments-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
}

.commitment-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold);
}

.commitment-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.commitment-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 12px 32px rgba(200,134,10,0.2);
}

.commitment-card:hover::after {
  opacity: 0.05;
}

.commitment-card .icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
  transition: var(--transition);
}

.commitment-card:hover .icon {
  transform: scale(1.1) rotate(5deg);
}

.commitment-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--dark);
  margin-bottom: 12px;
  font-weight: 600;
}

.commitment-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.7;
}

/* Responsive Commitment Cards */
@media (max-width: 1024px) {
  .commitments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 768px) {
  .commitments-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .commitment-card {
    padding: 30px 25px;
  }

  .commitment-card .icon {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  .commitment-card h4 {
    font-size: 1.1rem;
  }

  .commitment-card p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .commitment-card {
    padding: 25px 20px;
  }

  .commitment-card .icon {
    font-size: 2.5rem;
  }

  .commitment-card h4 {
    font-size: 1rem;
  }
}

/* ── Contact Page ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
}

.info-card {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.info-item {
  display: flex;
  gap: 25px;
  margin-bottom: 35px;
}

.info-item .icon {
  font-size: 1.8rem;
  color: var(--gold);
}

.info-item h4 {
  margin-bottom: 5px;
}

.contact-form-wrap {
  background: var(--white);
  padding: 50px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form .form-group {
  margin-bottom: 25px;
}

.contact-form label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 15px 20px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-family: inherit;
  transition: var(--transition);
}

.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(200,134,10,0.1);
}



/* ── Responsive ── */
@media (max-width: 992px) {
  .product-detail-grid, .about-grid, .contact-grid, .footer-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
  
  .footer-grid {
    text-align: center;
  }
  
  .footer-brand p {
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .product-gallery .main-img {
    height: 350px;
  }
  
  .product-info-wrap .product-title {
    font-size: 2rem;
  }
}


/* ════════════════════════════════════════════════════════════════
   ENHANCED ANIMATIONS & EFFECTS
   ════════════════════════════════════════════════════════════════ */

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInRight {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

@keyframes slideInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px rgba(200,134,10,0.3); }
  50% { box-shadow: 0 0 20px rgba(200,134,10,0.6); }
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes shimmer {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes rotateIn {
  from { opacity: 0; transform: rotate(-5deg); }
  to { opacity: 1; transform: rotate(0deg); }
}

/* Animation Utility Classes */
.animate-pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.animate-float {
  animation: float 3s ease-in-out infinite;
}

.animate-bounce {
  animation: bounce 2s ease-in-out infinite;
}

.animate-title {
  animation: slideInLeft 0.8s ease-out;
}

.btn-pulse {
  animation: glow 2s ease-in-out infinite;
}

/* ════════════════════════════════════════════════════════════════
   ENHANCED PRODUCT PAGE STYLES
   ════════════════════════════════════════════════════════════════ */

.breadcrumb-section {
  background: rgba(200,134,10,0.05);
  padding: 20px 0;
  font-size: 0.9rem;
  color: var(--text-light);
}

.breadcrumb-section a {
  color: var(--gold);
  transition: var(--transition);
}

.breadcrumb-section a:hover {
  color: var(--gold-dark);
  text-decoration: underline;
}

.product-section {
  background: var(--white);
}

/* Product Gallery Enhancements */
.main-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.product-main-image {
  transition: all 0.5s ease;
  display: block;
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,134,10,0.1);
  opacity: 0;
  transition: var(--transition);
}

.main-img-wrapper:hover .image-overlay {
  opacity: 1;
}

.zoom-icon {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 2rem;
  background: rgba(255,255,255,0.9);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  opacity: 0;
  transform: scale(0.8);
  transition: var(--transition);
}

.main-img-wrapper:hover .zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.thumb-grid {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
}

.thumb {
  width: 100px;
  height: 100px;
  border-radius: 8px;
  cursor: pointer;
  opacity: 0.6;
  transition: var(--transition);
  border: 3px solid transparent;
  object-fit: cover;
}

.thumb.active, .thumb:hover {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.05);
}

/* Product Info Enhancements */
.product-badge-section {
  display: flex;
  gap: 10px;
  margin-bottom: 15px;
  flex-wrap: wrap;
}

.product-category {
  display: inline-block;
  background: rgba(200,134,10,0.1);
  color: var(--gold);
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.sale-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  animation: pulse 2s ease-in-out infinite;
}

.product-rating-section {
  margin: 20px 0;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.stars {
  color: var(--gold);
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.review-count {
  color: var(--text-light);
  font-size: 0.9rem;
}

.rating-bar {
  width: 100%;
  height: 6px;
  background: rgba(200,134,10,0.2);
  border-radius: 10px;
  overflow: hidden;
}

.rating-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  animation: slideInLeft 1s ease-out;
}

/* Price Section */
.price-section {
  margin: 30px 0;
  padding: 20px;
  background: linear-gradient(135deg, rgba(200,134,10,0.05), rgba(200,134,10,0.1));
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
}

.product-price-label {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.product-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-bottom: 10px;
}

.price-note {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* Enhanced Pack Options */
.product-options-enhanced {
  margin: 30px 0;
}

.product-options-enhanced label {
  display: block;
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 0.95rem;
}

.pack-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  margin-bottom: 20px;
}

.pack-btn {
  position: relative;
  padding: 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  background: var(--white);
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  overflow: hidden;
}

.pack-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(200,134,10,0.1), rgba(200,134,10,0.05));
  opacity: 0;
  transition: var(--transition);
}

.pack-btn:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(200,134,10,0.15);
}

.pack-btn.active {
  border-color: var(--gold);
  background: linear-gradient(135deg, rgba(200,134,10,0.1), rgba(200,134,10,0.05));
  box-shadow: 0 8px 25px rgba(200,134,10,0.25);
}

.pack-btn.active::before {
  opacity: 1;
}

.pack-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: var(--dark);
}

.pack-price {
  display: block;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 5px;
}

.pack-badge {
  display: inline-block;
  background: linear-gradient(135deg, #FF6B6B, #FF8E53);
  color: white;
  padding: 3px 8px;
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 600;
  margin-top: 5px;
}

/* Enhanced CTA Buttons */
.product-actions-enhanced {
  display: flex;
  gap: 15px;
  margin: 30px 0;
  flex-wrap: wrap;
}

.btn-large {
  padding: 16px 50px;
  font-size: 1rem;
  flex: 1;
  min-width: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
}

.btn-gold.btn-large {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

.btn-gold.btn-large:hover {
  background: var(--gold-dark);
  color: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(200,134,10,0.3);
}

.btn-outline.btn-large {
  border: 2px solid var(--gold);
  color: var(--gold);
  background: transparent;
}

.btn-outline.btn-large:hover {
  background: var(--gold);
  color: var(--white);
}

.btn-icon {
  display: inline-block;
  transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
  transform: translateX(5px);
}

/* ════════════════════════════════════════════════════════════════
   MOBILE OPTIMIZATIONS
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .pack-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .product-actions-enhanced {
    flex-direction: column;
  }

  .btn-large {
    width: 100%;
  }
}

@media (max-width: 768px) {
  body {
    padding-top: 70px;
  }

  .section-pad {
    padding: 60px 0;
  }

  .product-main-image {
    height: 350px;
  }

  .product-info-wrap .product-title {
    font-size: 1.8rem;
  }

  .product-price {
    font-size: 2rem;
  }

  .pack-options {
    grid-template-columns: repeat(2, 1fr);
  }

  .pack-btn {
    padding: 12px;
  }

  .pack-name {
    font-size: 0.8rem;
  }

  .pack-price {
    font-size: 1.1rem;
  }

  .trust-badges {
    flex-direction: column;
    gap: 12px;
  }

  .badge-item {
    min-width: auto;
  }

  .tab-header {
    gap: 15px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .tab-btn {
    font-size: 1rem;
    padding: 12px 0;
  }

  .product-actions-enhanced {
    gap: 10px;
  }

  .btn-large {
    padding: 14px 30px;
    font-size: 0.9rem;
    min-width: auto;
  }

  .breadcrumb-section {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .product-detail-grid {
    gap: 30px;
  }

  .product-main-image {
    height: 280px;
  }

  .product-info-wrap .product-title {
    font-size: 1.5rem;
  }

  .product-price {
    font-size: 1.6rem;
  }

  .pack-options {
    grid-template-columns: 1fr;
  }

  .thumb-grid {
    gap: 8px;
  }

  .thumb {
    width: 70px;
    height: 70px;
  }

  .product-badge-section {
    gap: 8px;
  }

  .product-category, .sale-badge {
    font-size: 0.7rem;
    padding: 4px 10px;
  }

  .price-section {
    padding: 15px;
  }

  .trust-badges {
    padding: 15px;
    gap: 10px;
  }

  .badge-icon {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

  .badge-text {
    font-size: 0.8rem;
  }

  .tab-header {
    gap: 10px;
  }

  .tab-btn {
    font-size: 0.9rem;
    padding: 10px 0;
  }

  .tab-content {
    padding: 20px 0;
  }

  .review-item {
    padding: 15px;
  }

  .product-actions-enhanced {
    gap: 8px;
  }

  .btn-large {
    padding: 12px 20px;
    font-size: 0.8rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* ════════════════════════════════════════════════════════════════
   PERFORMANCE OPTIMIZATIONS
   ════════════════════════════════════════════════════════════════ */

/* Lazy Loading Images */
img[loading="lazy"] {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* Reduce Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* GPU Acceleration */
.product-card,
.btn,
.pack-btn,
.thumb {
  will-change: transform;
  transform: translateZ(0);
}

/* Font Display Strategy */
@font-face {
  font-family: 'Cormorant Garamond';
  font-display: swap;
}

@font-face {
  font-family: 'Poppins';
  font-display: swap;
}

/* ============================================================
   BUG FIXES — Applied after main stylesheet
   ============================================================ */

/* FIX 1: Ensure sub-pages have padding-top so content doesn't go under fixed navbar */
body.sub-page {
  padding-top: 80px !important;
}

/* FIX 2: Navbar must stay fixed (not sticky) on all pages including sub-pages */
.navbar {
  position: fixed !important;
}

/* FIX 3: Sub-page navbar always visible with dark background */
.sub-page .navbar,
body:not(.home-page) .navbar {
  background: rgba(26, 15, 0, 0.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}

/* FIX 4: Outline button on product pages should use gold color, not white */
.sub-page .btn-outline {
  border-color: var(--gold) !important;
  color: var(--gold) !important;
  background: transparent !important;
}
.sub-page .btn-outline:hover {
  background: var(--gold) !important;
  color: var(--white) !important;
}

/* FIX 5: Product section background and spacing */
.product-section {
  background: var(--white);
  padding-top: 60px !important;
  padding-bottom: 80px !important;
}

/* FIX 6: Breadcrumb section should not double-pad with body padding-top */
.breadcrumb-section {
  position: relative;
  z-index: 1;
}

/* FIX 7: Product gallery image height consistency */
.main-img-wrapper {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.product-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s ease;
}

/* FIX 8: Thumb grid wrapping on small screens */
.thumb-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
}
.thumb {
  width: 90px;
  height: 90px;
  border-radius: 8px;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.6;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
.thumb.active,
.thumb:hover {
  opacity: 1;
  border-color: var(--gold);
  transform: scale(1.05);
}

/* FIX 9: Pack buttons display properly */
.pack-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
  gap: 12px;
}

/* FIX 10: Tab buttons overflow fix on mobile */
.tab-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
}
.tab-btn {
  background: none;
  border: none;
  padding: 14px 20px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: var(--text-light);
  white-space: nowrap;
  transition: color 0.3s ease;
}
.tab-btn:hover { color: var(--gold); }
.tab-btn.active { color: var(--gold); }
.tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
}

/* FIX 11: Trust badges layout */
.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 24px 0;
  padding: 16px;
  background: rgba(200,134,10,0.05);
  border-radius: var(--radius);
}
.badge-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
}
.badge-icon {
  color: var(--gold);
  font-weight: 700;
  font-size: 1rem;
}

/* FIX 12: Product actions flex wrap */
.product-actions-enhanced {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 24px 0;
}
.product-actions-enhanced .btn-large {
  flex: 1;
  min-width: 160px;
  text-align: center;
  justify-content: center;
}

/* FIX 13: In-stock badge */
.in-stock {
  color: #2e7d32;
  font-weight: 600;
}

/* FIX 14: Review items */
.review-item {
  padding: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 16px;
  background: var(--cream);
}
.review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.reviewer-name { font-weight: 600; color: var(--dark); }
.review-rating { color: var(--gold); }
.review-text { color: var(--text-light); font-style: italic; line-height: 1.6; }

/* FIX 15: Related products section */
.related-products-section { background: var(--cream); }
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 30px;
}

/* FIX 16: Mobile responsive for product detail */
@media (max-width: 768px) {
  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 30px;
  }
  .product-info-wrap .product-title {
    font-size: 2rem !important;
  }
  .pack-options {
    grid-template-columns: repeat(2, 1fr);
  }
  .thumb { width: 70px; height: 70px; }
}

/* FIX 17: Features list styling */
.features-list {
  list-style: none;
  padding: 0;
}
.features-list li {
  padding: 10px 0;
  border-bottom: 1px solid rgba(200,134,10,0.1);
  padding-left: 20px;
  position: relative;
}
.features-list li::before {
  content: '✦';
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 10px;
  font-size: 0.7rem;
}

/* FIX 18: Usage steps */
.usage-steps {
  padding-left: 20px;
}
.usage-steps li {
  margin-bottom: 14px;
  line-height: 1.7;
}

/* FIX 19: Amazon Buy Now button — special gold accent */
.btn-amazon {
  background: linear-gradient(135deg, #FF9900, #FF6600) !important;
  border-color: #FF9900 !important;
  color: #fff !important;
}
.btn-amazon:hover {
  background: linear-gradient(135deg, #FF6600, #cc5500) !important;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255,153,0,0.35) !important;
}

/* FIX 20: Smooth scroll and section anchors */
html { scroll-behavior: smooth; }

/* ════════════════════════════════════════════════════════════════
   BLOG PAGE STYLES
   ════════════════════════════════════════════════════════════════ */

/* Blog Hero Section */
.blog-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-mid) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/spiritual_essence.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.1;
  z-index: 0;
}

.blog-hero .container {
  position: relative;
  z-index: 1;
}

.blog-hero .hero-title {
  color: var(--white);
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.blog-hero .hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* Blog Section */
.blog-section {
  background: var(--cream);
}

/* Blog Grid Layout */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

/* Blog Card */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
  animation: scaleIn 0.6s ease-out;
}

.blog-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 16px 48px rgba(200,134,10,0.2);
}

/* Blog Card Image */
.blog-card-img {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
}

.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-card-img img {
  transform: scale(1.08);
}

/* Blog Date Badge */
.blog-date {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 1px;
  z-index: 2;
}

/* Blog Card Content */
.blog-card-content {
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Blog Title */
.blog-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.4;
  transition: var(--transition);
}

.blog-card:hover .blog-title {
  color: var(--gold);
}

/* Blog Excerpt */
.blog-excerpt {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  flex: 1;
}

/* Blog Meta */
.blog-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 20px;
}

.blog-author {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}

.blog-read-time {
  font-size: 0.85rem;
  color: var(--text-light);
  font-style: italic;
}

/* Blog Link */
.blog-link {
  display: inline-block;
  color: var(--gold);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}

.blog-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: var(--transition);
}

.blog-card:hover .blog-link {
  color: var(--gold-dark);
  transform: translateX(4px);
}

.blog-card:hover .blog-link::after {
  width: 100%;
}

/* Newsletter Section */
.newsletter-section {
  background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('../images/spiritual_essence.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.08;
}

.newsletter-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-section h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.newsletter-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 32px;
  font-size: 1rem;
}

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 16px 24px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50px;
  background: rgba(255,255,255,0.95);
  color: var(--dark);
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.newsletter-form input::placeholder {
  color: rgba(0,0,0,0.5);
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--white);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.2);
}

.newsletter-form button {
  padding: 16px 40px;
  background: var(--white);
  color: var(--gold);
  border: none;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  min-width: 160px;
}

.newsletter-form button:hover {
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ════════════════════════════════════════════════════════════════
   BLOG PAGE RESPONSIVE DESIGN
   ════════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
  .blog-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .blog-card-img {
    height: 250px;
  }

  .blog-card-content {
    padding: 24px 20px;
  }

  .blog-title {
    font-size: 1.4rem;
  }

  .blog-excerpt {
    font-size: 0.9rem;
  }

  .blog-meta {
    flex-direction: column;
    align-items: flex-start;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    min-width: 100%;
  }

  .newsletter-form button {
    width: 100%;
  }

  .blog-hero .hero-title {
    font-size: 2rem;
  }

  .blog-hero .hero-subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .blog-grid {
    gap: 16px;
  }

  .blog-card-img {
    height: 220px;
  }

  .blog-card-content {
    padding: 20px 16px;
  }

  .blog-date {
    padding: 6px 12px;
    font-size: 0.7rem;
  }

  .blog-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }

  .blog-excerpt {
    font-size: 0.85rem;
    margin-bottom: 16px;
  }

  .blog-meta {
    padding: 12px 0;
    gap: 8px;
    font-size: 0.8rem;
  }

  .blog-link {
    font-size: 0.8rem;
  }

  .newsletter-section {
    padding: 60px 0;
  }

  .newsletter-section h2 {
    font-size: 1.5rem;
    margin-bottom: 12px;
  }

  .newsletter-section p {
    margin-bottom: 24px;
    font-size: 0.9rem;
  }
}

/* ════════════════════════════════════════════════════════════════
   UTILITY CLASSES & MISSING STYLES
   ════════════════════════════════════════════════════════════════ */

/* Image Utilities */
.img-fluid {
  max-width: 100%;
  height: auto;
  display: block;
}

.about-image {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.6s ease;
}

.about-image img:hover {
  transform: scale(1.05);
}

/* Border & Shadow Utilities */
.rounded {
  border-radius: var(--radius);
}

.rounded-lg {
  border-radius: calc(var(--radius) * 2);
}

.rounded-full {
  border-radius: 50%;
}

.shadow {
  box-shadow: var(--shadow);
}

.shadow-sm {
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.shadow-lg {
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

/* Background Utilities */
.bg-light {
  background: var(--cream);
}

.bg-white {
  background: var(--white);
}

.bg-dark {
  background: var(--dark);
}

.bg-gold {
  background: var(--gold);
}

/* Navigation Active State */
.nav-links a.active {
  color: var(--gold);
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100% !important;
}

/* Eyebrow / Label Utilities */
.eyebrow {
  display: inline-block;
  color: var(--gold);
  font-size: 0.72rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}

.eyebrow-alt {
  color: var(--gold-light);
  font-size: 0.7rem;
}

/* Section Header refinement */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .eyebrow {
  margin-bottom: 16px;
}

.section-header h2 {
  margin-bottom: 20px;
  color: var(--dark);
}

.section-header p {
  max-width: 680px;
  margin: 0 auto;
  color: var(--text-light);
  font-size: 1rem;
  line-height: 1.8;
}

/* About Grid Refinements */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text {
  color: var(--text);
}

.about-text h2 {
  color: var(--dark);
  margin-bottom: 24px;
  margin-top: 10px;
}

.about-text p {
  color: var(--text-light);
  margin-bottom: 20px;
  line-height: 1.9;
  font-size: 1rem;
}

.about-text p:last-child {
  margin-bottom: 0;
}

/* Responsive About Grid */
@media (max-width: 1024px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .about-grid {
    gap: 40px;
  }

  .about-text h2 {
    font-size: 1.8rem;
  }

  .about-image {
    margin-top: 30px;
  }
}

/* Spacing Utilities */
.mt-20 { margin-top: 20px; }
.mt-30 { margin-top: 30px; }
.mt-40 { margin-top: 40px; }
.mt-50 { margin-top: 50px; }

.mb-20 { margin-bottom: 20px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.mb-50 { margin-bottom: 50px; }

.py-20 { padding: 20px 0; }
.py-40 { padding: 40px 0; }
.py-60 { padding: 60px 0; }

.px-20 { padding: 0 20px; }
.px-40 { padding: 0 40px; }

/* Text Utilities */
.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: var(--text-light);
}

.text-muted-light {
  color: rgba(122, 92, 46, 0.7);
}

.font-weight-600 {
  font-weight: 600;
}

.font-weight-700 {
  font-weight: 700;
}

/* Display & Flex Utilities */
.d-flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.gap-20 { gap: 20px; }
.gap-30 { gap: 30px; }
.gap-40 { gap: 40px; }

/* Opacity Utilities */
.opacity-75 { opacity: 0.75; }
.opacity-50 { opacity: 0.5; }

/* Transition Utilities */
.transition-all {
  transition: var(--transition);
}

.transition-fast {
  transition: all 0.2s ease;
}

.transition-slow {
  transition: all 0.5s ease;
}

/* Responsive Utilities */
@media (max-width: 768px) {
  .hide-mobile {
    display: none !important;
  }
}

@media (min-width: 769px) {
  .show-mobile {
    display: none !important;
  }
}

