/* ============================================================
   OPTIMIZED MAIN STYLESHEET – Performance Focused
   ============================================================ */

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

: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;
}

/* ── Reset ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

/* ── 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; }

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

/* Fade-up animation - optimized */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  will-change: opacity, transform;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ── */
.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;
  border: 2px solid transparent;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.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);
}

/* ── Navigation - Optimized ── */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(26, 15, 0, 0);
  padding: 0;
  transition: background-color 0.3s ease;
}
.navbar.scrolled {
  background: rgba(26, 15, 0, 0.98);
  box-shadow: 0 2px 15px rgba(0,0,0,0.2);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-icon {
  width: 45px;
  height: 45px;
  flex-shrink: 0;
}
.logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.logo-text .brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
}
.logo-text .tagline {
  font-size: 0.6rem;
  letter-spacing: 1px;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 70px;
  right: 0;
  width: 100%;
  background: rgba(26, 15, 0, 0.98);
  padding: 24px;
  gap: 16px;
}
.nav-links.open {
  display: flex;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
  display: block;
  padding: 8px 0;
}
.nav-links a:hover {
  color: var(--gold-light);
}

.hamburger {
  display: flex;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* ── Hero Section - Optimized ── */
.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: 2px;
  text-transform: uppercase;
  padding: 8px 24px;
  border-radius: 50px;
  margin-bottom: 28px;
  background: rgba(200,134,10,0.08);
}
.hero-title {
  color: var(--white);
  text-shadow: 0 2px 10px 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;
  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 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;
  will-change: transform;
}
.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: color 0.3s ease;
}
.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: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
  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(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
  contain: layout style;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  position: relative;
  will-change: transform;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(200,134,10,0.15);
}
.product-card-img {
  position: relative;
  overflow: hidden;
  height: 280px;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.05);
}
.product-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--gold);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  z-index: 1;
}
.product-card-body {
  padding: 24px;
}
.product-category {
  font-size: 0.75rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 8px;
}
.product-name {
  font-size: 1.1rem;
  margin-bottom: 12px;
  color: var(--dark);
}
.product-stars {
  color: var(--gold);
  font-size: 0.85rem;
  margin-bottom: 8px;
}
.product-price {
  font-weight: 600;
  color: var(--text);
  margin-bottom: 16px;
}
.product-btn {
  display: inline-block;
  padding: 10px 24px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  transition: background-color 0.3s ease;
}
.product-btn:hover {
  background: var(--gold-light);
}

/* ── Purpose Section ── */
.purpose-section {
  padding: 90px 0;
  background: var(--white);
}
.purpose-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.purpose-text {
  order: 1;
}
.purpose-text h2 {
  margin-bottom: 24px;
}
.purpose-text p {
  margin-bottom: 24px;
  color: var(--text-light);
}
.purpose-video {
  order: 2;
}

/* ── Ethics Section ── */
.ethics-section {
  background: var(--cream);
}
.ethics-top {
  margin-bottom: 48px;
}
.ethics-shloka {
  font-size: 1.2rem;
  margin: 16px 0 8px;
  color: var(--dark);
}
.ethics-translation {
  font-style: italic;
  color: var(--text-light);
  font-size: 0.95rem;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}
.value-card {
  text-align: center;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.value-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(200,134,10,0.1);
}
.value-icon {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}
.value-card h4 {
  margin-bottom: 12px;
}
.value-card p {
  font-size: 0.95rem;
  color: var(--text-light);
}

/* ── Spiritual Section ── */
.spiritual-section {
  position: relative;
  padding: 90px 0;
  text-align: center;
  color: var(--white);
  overflow: hidden;
}
.spiritual-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #2C1A00 0%, #1A0F00 100%);
  z-index: 0;
}
.spiritual-inner {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 0 auto;
}
.spiritual-inner h2 {
  color: var(--white);
  margin-bottom: 24px;
}
.spiritual-inner p {
  color: rgba(255,255,255,0.85);
  margin-bottom: 32px;
}

/* ── Process Section ── */
.process-section {
  background: var(--white);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
  margin-top: 48px;
}
.process-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--cream);
  border-radius: var(--radius);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}
.process-step:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(200,134,10,0.1);
}
.process-num {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 16px;
  font-family: 'Cormorant Garamond', serif;
}
.process-step h4 {
  margin-bottom: 12px;
}
.process-step p {
  color: var(--text-light);
  font-size: 0.95rem;
}

/* ── FAQ Section ── */
.faq-section {
  background: var(--cream);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  margin-top: 48px;
}
.faq-item {
  background: var(--white);
  margin-bottom: 16px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.faq-question {
  padding: 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  user-select: none;
  transition: background-color 0.3s ease;
}
.faq-question:hover {
  background-color: rgba(200,134,10,0.05);
}
.faq-icon {
  font-size: 1.5rem;
  color: var(--gold);
  transition: transform 0.3s ease;
}
.faq-item.open .faq-icon {
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(253,246,227,0.5);
}
.faq-item.open .faq-answer {
  max-height: 500px;
}
.faq-answer p {
  padding: 0 24px 24px;
  color: var(--text);
  line-height: 1.8;
}

/* ── Newsletter Section ── */
.newsletter-section {
  background: linear-gradient(135deg, rgba(200,134,10,0.08) 0%, rgba(229,168,32,0.08) 100%);
}
.form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  padding: 48px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

/* ── Footer ── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  padding: 60px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  grid-column: span 1;
}
.footer-brand .logo {
  margin-bottom: 24px;
}
.footer-brand .logo-icon {
  width: 50px;
  height: 50px;
}
.footer-brand p {
  font-size: 0.9rem;
  margin-bottom: 16px;
  color: rgba(255,255,255,0.6);
}
.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}
.footer-social .social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(200,134,10,0.15);
  color: var(--gold);
  transition: background-color 0.3s ease, color 0.3s ease;
}
.footer-social .social-link:hover {
  background: var(--gold);
  color: var(--white);
}
.footer-col h5 {
  color: var(--white);
  margin-bottom: 20px;
  font-size: 1rem;
}
.footer-col ul {
  list-style: none;
}
.footer-col li {
  margin-bottom: 10px;
}
.footer-col a {
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
  font-size: 0.9rem;
}
.footer-col a:hover {
  color: var(--gold-light);
}
.footer-contact-item {
  margin-bottom: 16px;
  display: flex;
  gap: 12px;
  font-size: 0.9rem;
}
.footer-contact-item .icon {
  flex-shrink: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(200,134,10,0.2);
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
}
.footer-bottom-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}
.footer-bottom-links a:hover {
  color: var(--gold-light);
}

/* ── WhatsApp Float ── */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  z-index: 999;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  animation: whatsapp-pulse 2s infinite;
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37,211,102,0.3);
}
.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

@keyframes whatsapp-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

/* ── Responsive ── */
@media (min-width: 768px) {
  .navbar-inner {
    padding: 18px 40px;
  }
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: relative;
    top: auto;
    width: auto;
    background: none;
    padding: 0;
    gap: 24px;
  }
  .hamburger {
    display: none !important;
  }
  .purpose-inner {
    grid-template-columns: 1fr 1fr;
    gap: 60px;
  }
  .purpose-text {
    order: 1;
  }
  .purpose-video {
    order: 2;
  }
  .section-pad {
    padding: 90px 0;
  }
}

@media (max-width: 767px) {
  .logo-text .brand {
    font-size: 1rem;
  }
  .logo-text .tagline {
    font-size: 0.55rem;
  }
  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }
  .btn {
    width: 100%;
    text-align: center;
  }
  .purpose-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .purpose-text {
    order: 1;
  }
  .purpose-video {
    order: 1;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .footer-bottom {
    text-align: center;
  }
  .footer-bottom-links {
    flex-wrap: wrap;
  }
  .whatsapp-float {
    bottom: 16px;
    right: 16px;
    width: 50px;
    height: 50px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ============================================================
   SUB-PAGE STYLES (Product, About, Contact, etc.)
   ============================================================ */

/* Sub-page padding and navbar fixes */
body.sub-page {
  padding-top: 80px !important;
}

.sub-page .navbar {
  background: rgba(26, 15, 0, 0.97);
}

.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 Grid */
.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;
  font-weight: 700;
  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);
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  will-change: transform;
}

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

.commitment-card .icon {
  font-size: 3.5rem;
  margin-bottom: 20px;
  display: block;
  transition: transform 0.3s ease;
}

.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;
}

/* Contact Page Grid */
.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: border-color 0.3s ease, box-shadow 0.3s ease;
}

.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);
}

/* Breadcrumb Section */
.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: color 0.3s ease;
}

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

/* Main Image Wrapper */
.main-img-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

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

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

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

/* Thumbnail Grid */
.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: opacity 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  border: 3px solid transparent;
  object-fit: cover;
  will-change: transform;
}

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

/* Product Badge Section */
.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;
}

/* Product Rating Section */
.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;
}

/* 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;
}

.price-section .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;
}

/* 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: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
  overflow: hidden;
  will-change: transform;
}

.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-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;
}

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

/* ===== MISSING PRODUCT PAGE STYLES ===== */

/* Trust Badges */
.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;
}

/* Product Meta */
.product-meta {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  font-size: 0.9rem;
  color: var(--text-light);
}
.product-meta p {
  margin-bottom: 4px;
}
.product-meta .in-stock {
  color: #2e7d32;
  font-weight: 600;
}

/* Product Tabs */
.tab-header {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  border-bottom: 2px solid var(--border);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.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);
}
.tab-content {
  padding: 30px 0;
}
.tab-content p {
  margin-bottom: 16px;
  line-height: 1.8;
}
.tab-content p:last-child {
  margin-bottom: 0;
}
.tab-content h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
}

/* 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; }

/* Related Products Section */
.related-products-section { background: var(--cream); }

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

.usage-steps {
  padding-left: 20px;
  margin-bottom: 20px;
}
.usage-steps li {
  margin-bottom: 14px;
  line-height: 1.7;
}
.features-list li, .usage-steps li {
  margin-bottom: 10px;
  line-height: 1.7;
}

/* ========================================= */

.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);
}

/* Sub-page button fixes */
.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;
}

/* Responsive: Product Detail Grid */
@media (max-width: 992px) {
  .product-detail-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}

@media (max-width: 768px) {
  .product-gallery .main-img {
    height: 280px;
    margin-bottom: 15px;
  }

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

  .commitments-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }

  .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;
  }

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

  .pack-btn {
    padding: 12px;
  }

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

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

  .contact-form input,
  .contact-form textarea {
    padding: 12px 16px;
  }

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

   /* Trust badges mobile adjustments */
   .trust-badges {
     flex-direction: column;
     gap: 12px;
   }
   .badge-item {
     min-width: auto;
   }
 }

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

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

  .product-gallery .main-img {
    height: 220px;
  }

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

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

  .commitments-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

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

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

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

  .thumb-grid {
    gap: 8px;
    justify-content: center;
  }

  .thumb {
    width: 70px;
    height: 70px;
    border-radius: 6px;
  }

  .price-section {
    padding: 15px;
  }

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

   /* Trust badges extra small screen tweaks */
    .trust-badges {
      padding: 15px;
      gap: 10px;
    }
    .badge-icon {
      width: 28px;
      height: 28px;
      font-size: 0.8rem;
    }
    .badge-text {
      font-size: 0.8rem;
    }
  }

/* ===== REMAINING MISSING CLASSES ===== */

/* Zoom icon on main product image */
.zoom-icon {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  transition: opacity 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.product-card:hover .zoom-icon {
  opacity: 1;
}

/* Card overlay on related products */
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover .card-overlay {
  opacity: 1;
}

.quick-view {
  color: white;
  font-weight: 600;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  background: var(--gold);
  border-radius: 6px;
  font-size: 0.9rem;
  box-shadow: 0 4px 12px rgba(200,134,10,0.4);
}

/* Disabled button states */
.btn-disabled,
.pack-btn--coming-soon {
  opacity: 0.5;
  cursor: not-allowed !important;
  pointer-events: none;
  background: #f5f5f5 !important;
  color: #999 !important;
  border-color: #ddd !important;
}

