:root {
  /* Colors */
  --primary-green: #0B3D2E;
  --dark-green: #072A20;
  --accent-gold: #D4AF37;
  --accent-gold-hover: #E8C766;
  --bg-dark: #0A0A0A;
  --bg-darker: #072A20;
  --bg-card: #0B3D2E;
  --text-light: #F5F5F5;
  --text-muted: rgba(245, 245, 245, 0.7);
  --black: #0A0A0A;
  --border-color: rgba(212, 175, 55, 0.2);

  /* Metallic Gradients */
  --gold-gradient: linear-gradient(135deg, #A88126 0%, #E8C766 50%, #D4AF37 100%);
  --gold-gradient-hover: linear-gradient(135deg, #D4AF37 0%, #F6E29F 50%, #E8C766 100%);

  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-dark);
  color: var(--text-light);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* Animations */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.fade-in {
  animation: fadeIn 1.2s ease-out forwards;
}

.slide-up {
  animation: slideUp 1s ease-out forwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--accent-gold);
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Layout Utilities */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.text-center {
  text-align: center;
}

.flex {
  display: flex;
}

.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}

.grid {
  display: grid;
}

/* Typography Utilities */
.section-title {
  font-size: 2.1rem;
  margin: 0 auto 20px;
  text-align: center;
  position: relative;
  display: block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background-color: var(--accent-gold);
  transition: width 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active .section-title::after {
  width: 80px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-bottom: 40px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  font-family: var(--font-body);
  border: none;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  font-size: 0.7rem;
}

.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
  filter: brightness(1.1);
}

.btn-primary, .btn-add-cart {
  background: var(--gold-gradient);
  color: var(--black);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.btn-primary:hover, .btn-add-cart:hover {
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.btn-whatsapp {
  background-color: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.btn-outline, .btn-email-buy {
  background-color: transparent;
  border: 1px solid var(--accent-gold);
  color: var(--accent-gold);
}

.btn-outline:hover, .btn-email-buy:hover {
  background-color: rgba(212, 175, 55, 0.1);
}

/* Navbar */
.navbar {
  background-color: var(--primary-green);
  padding: 5px 0;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--border-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.nav-brand img {
  height: 80px;
  width: auto;
  transition: transform 0.3s ease;
}

.nav-brand img:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 30px;
  list-style: none;
}

.nav-links a {
  font-weight: 500;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  transition: color 0.3s ease;
}

.nav-links a:hover {
  color: var(--accent-gold);
}

.nav-icons {
  display: flex;
  gap: 20px;
  align-items: center;
}

.cart-icon {
  position: relative;
  font-size: 1.2rem;
  cursor: pointer;
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -10px;
  background-color: var(--accent-gold);
  color: var(--bg-darker);
  font-size: 0.7rem;
  font-weight: bold;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Slider Section */
.hero-slider {
  height: 100vh;
  min-height: 650px;
  position: relative;
  overflow: hidden;
  margin-top: 0px;
  background-color: var(--bg-dark);
}

.slider-wrapper {
  height: 100%;
  width: 100%;
  position: relative;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

/* ✅ MAIN FIX HERE */
.hero-slide-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  object-position: center center;

  z-index: 0; /* 🔥 FIX (was -2) */
  background-color: #0b1f17;
}

/* Overlay */
.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    75deg,
    rgba(7, 31, 23, 0.95) 0%,
    rgba(10, 10, 10, 0.7) 40%,
    transparent 100%
  );
  z-index: -1;
}

/* Content */
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ✅ REMOVE UNWANTED ZOOM */
.hero-image-side {
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transform: translateX(50px); /* scale removed */
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1) 0.5s;
}

.hero-slide.active .hero-image-side {
  opacity: 1;
  transform: translateX(0);
}

/* Product image */
.hero-product-img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 50px rgba(0,0,0,0.5));
  animation: floatProduct 6s ease-in-out infinite;
}

@keyframes floatProduct {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Slider Controls */
.slider-controls {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10;
  pointer-events: none;
}

.slider-arrow {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid rgba(212, 175, 55, 0.3);
  color: var(--accent-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  pointer-events: auto;
  backdrop-filter: blur(5px);
}

.slider-arrow:hover {
  background: var(--accent-gold);
  color: var(--black);
  transform: scale(1.1);
}

.slider-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot.active {
  background: var(--accent-gold);
  width: 30px;
  border-radius: 10px;
}

/* Responsive */
@media (max-width: 992px) {
  .hero-slide-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .hero-text-side { order: 2; }
  .hero-image-side { order: 1; }

  .hero-actions {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-slider {
    height: auto;
    padding: 120px 0 80px;
  }

  .hero-slide {
    position: relative;
    display: none;
    opacity: 1;
    visibility: visible;
  }

  .hero-slide.active {
    display: block;
  }

  .slider-controls {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.2rem;
  }
}

/* Badge */
.badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  background: rgba(255,255,255,0.1);
  padding: 8px 15px;
  border-radius: 30px;
  border: 1px solid rgba(212, 175, 55, 0.3);
  backdrop-filter: blur(5px);
}

.badge i {
  color: var(--accent-gold);
}

/* ✅ MOBILE HERO FIX FOR PORTRAIT IMAGES */
@media (max-width: 768px) {

  .hero-slider {
    height: auto;
    min-height: auto;
    padding: 100px 0 40px;
  }

  .hero-slide {
    position: relative;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

    opacity: 1;
    visibility: visible;
  }

  .hero-slide.active {
    display: flex;
  }

  /* ✅ IMAGE FULL SHOW (NO CROP) */
  .hero-slide-bg {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain !important;
    object-position: center;
    margin-bottom: 10px;
  }

  /* Overlay remove for mobile clarity */
  .hero-slide-overlay {
    display: none;
  }

  /* Content spacing */
  .hero-slide-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .hero-text-side {
    order: 2;
  }

  .hero-image-side {
    order: 1;
    transform: none !important;
    opacity: 1 !important;
  }

  .hero-product-img {
    max-width: 80%;
    height: auto;
    margin: 0 auto;
  }

  /* Buttons full width */
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
  }

  /* Hide arrows */
  .slider-controls {
    display: none;
  }

  /* Dots adjust */
  .slider-dots {
    bottom: 7px;
  }
}
/* HERO BUTTON WRAPPER */
.hero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

/* ALL BUTTONS SAME SIZE */
.hero-actions .btn {
  height: 48px;
  padding: 0 22px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  font-size: 14px;
  font-weight: 600;
  border-radius: 10px;

  white-space: nowrap;
  transition: 0.25s ease;
}

/* PRIMARY (SHOP NOW) */
.btn-primary {
  background: linear-gradient(135deg, #D4AF37, #F4E2A1);
  color: #000;
  border: none;
}

/* WHATSAPP */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;
}

/* OUTLINE FIX (IMPORTANT) */
.btn-outline {
  border: 1.5px solid #D4AF37;
  color: #D4AF37;
  background: transparent;
}

/* HOVER EFFECT */
.hero-actions .btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.05);
}

/* ICON SIZE FIX */
.hero-actions .btn i {
  font-size: 14px;
}
/* ================= MOBILE HERO FIX ================= */
@media (max-width: 768px) {

  /* HERO PADDING FIX */
  .hero {
    padding: 20px;
    text-align: left;
  }

  /* HEADING SIZE FIX */
  .hero h1 {
    font-size: 38px;
    line-height: 1.2;
  }

  .hero p {
    font-size: 15px;
  }

  /* BUTTON WRAPPER */
  .hero-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
  }

  /* ALL BUTTONS FULL WIDTH */
  .hero-actions .btn {
    width: 100%;
    height: 46px;
    font-size: 14px;
    justify-content: center;
  }

  /* OUTLINE BUTTON FIX */
  .btn-outline {
    border: 1.5px solid #D4AF37;
  }

  /* BADGES FIX */
  .trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 20px;
  }

}

/* Product Cards */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 340px));
  justify-content: center;
  gap: 35px;
  max-width: 900px;
  margin: 0 auto;
}
.products-grid {
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
}
.product-card {
  background-color: var(--primary-green);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.product-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border-color: var(--accent-gold);
}

.product-image {
  height: 280px;
  position: relative;
  overflow: hidden;
  background-color: var(--dark-green);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-content {
  padding: 25px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-title {
  font-size: 1.4rem;
  margin-bottom: 4px;
  color: #fff;
}

.product-price {
  font-size: 1.2rem;
  color: var(--accent-gold);
  font-weight: 600;
  margin-bottom: 8px;
}

.product-options {
  margin-bottom: 8px;
}

.product-options select {
  width: 100%;
  padding: 8px;
  background-color: var(--bg-dark);
  color: var(--text-light);
  border: 1px solid var(--border-color);
  border-radius: 4px;
  font-family: var(--font-body);
}

.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  margin-top: auto;
}

.product-actions .btn-add-cart {
  grid-column: 1 / -1;
}

.product-actions .btn {
  width: 100%;
}

@media (max-width: 480px) {
  .product-actions {
    grid-template-columns: 1fr;
  }
}

/* WhatsApp Button Fix */
.btn-whatsapp {
  background: #25D366;
  color: #fff;
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  font-size: 13px;
  font-weight: 600;
  height: 40px;

  border-radius: 8px;

  white-space: nowrap;   /* text ek line mein rahe */
  padding: 0 12px;

  transition: 0.25s ease;
}

/* icon size */
.btn-whatsapp i {
  font-size: 14px;
}

/* hover effect */
.btn-whatsapp:hover {
  transform: scale(1.03);
  filter: brightness(1.05);
}

/* Features Section */
.features-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  text-align: center;
}

/* Premium About Section */
.premium-about {
  background-color: var(--bg-dark);
  overflow: hidden;
  padding: 100px 0;
}

.premium-about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.premium-label {
  color: var(--accent-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
  display: block;
}

.premium-title {
  font-size: 3.5rem;
  margin-bottom: 30px;
  text-align: left;
  left: 0;
  transform: none;
  line-height: 1.2;
}

.premium-title::after {
  left: 0;
  transform: none;
}

.premium-description {
  color: var(--text-light);
  font-size: 1.15rem;
  line-height: 1.8;
  margin-bottom: 40px;
  opacity: 0.9;
  max-width: 550px;
}

.premium-about-video {
  position: relative;
}

.video-container {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.6);
  border: 1px solid var(--border-color);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: var(--dark-green);
}

.video-container:hover {
  transform: scale(1.02);
  box-shadow: 0 35px 60px -15px rgba(0, 0, 0, 0.8);
  border-color: var(--accent-gold);
}

.about-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90px;
  height: 90px;
  background: rgba(212, 175, 55, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(212, 175, 55, 0.4);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--accent-gold);
  font-size: 1.8rem;
  cursor: pointer;
  transition: all 0.4s ease;
  pointer-events: none;
}

.video-container:hover .play-overlay {
  background: var(--accent-gold);
  color: var(--black);
  transform: translate(-50%, -50%) scale(1.1);
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

@media (max-width: 992px) {
  .premium-about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }

  .premium-title {
    font-size: 2.8rem;
    text-align: center;
    left: 50%;
    transform: translateX(-50%);
  }

  .premium-title::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .premium-description {
    margin-left: auto;
    margin-right: auto;
  }

  .premium-about-video {
    order: -1;
  }
}

@media (max-width: 576px) {
  .premium-title {
    font-size: 2.2rem;
  }
  
  .play-overlay {
    width: 60px;
    height: 60px;
    font-size: 1.2rem;
  }
}

/* Shipping Partners Section */
.shipping-partners {
  background-color: var(--bg-dark);
  padding: 80px 0;
  overflow: hidden;
  border-top: 1px solid var(--border-color);
}

.logos-carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
  margin-top: 40px;
  padding: 20px 0;
}





.partner-card {
  width: 220px;
  height: 110px;
  background: var(--bg-card);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 20px;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  flex-shrink: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.partner-card:hover {
  transform: translateY(-4px) scale(1.05);
  border-color: var(--accent-gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  background: var(--dark-green);
}

.partner-name {
  color: var(--accent-gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}



/* Gradient Fade for Carousel */
.logos-carousel::before,
.logos-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  width: 150px;
  height: 100%;
  z-index: 2;
}

.logos-carousel::before {
  left: 0;
  background: linear-gradient(to right, var(--bg-dark), transparent);
}

.logos-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-dark), transparent);
}

@media (max-width: 992px) {
  .partner-card {
    width: 180px;
    height: 90px;
    margin: 0 15px;
  }
  
  .partner-name {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .partner-card {
    width: 150px;
    height: 75px;
    margin: 0 10px;
  }
  
  .partner-name {
    font-size: 0.9rem;
    letter-spacing: 1px;
  }
  
  .logos-carousel::before,
  .logos-carousel::after {
    width: 50px;
  }
}

/* Enhanced Features Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.feature-item {
  padding: 45px 35px;
  background-color: #0B3D2E;
  border-radius: 16px;
  border: 1px solid rgba(212, 175, 55, 0.1);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.feature-item:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.6), 0 0 15px rgba(212, 175, 55, 0.3);
  border-color: var(--accent-gold);
}

.feature-icon {
  font-size: 3rem;
  color: var(--accent-gold);
  margin-bottom: 25px;
  transition: transform 0.4s ease;
}

.feature-item:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
}

.feature-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 15px;
  color: var(--text-light);
  letter-spacing: 0.5px;
}

.feature-desc {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 280px;
}

@media (max-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .feature-item {
    padding: 40px 25px;
  }
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 850px;
  margin: 50px auto 0;
}

.faq-item {
  background-color: var(--bg-dark);
  border-radius: 14px;
  margin-bottom: 15px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-question {
  padding: 22px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.faq-question span {
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 15px;
  font-family: var(--font-heading);
}

.faq-question i.fa-circle-question {
  color: var(--accent-gold);
  font-size: 1.2rem;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--accent-gold);
  transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.4);
  transform: translateX(8px);
  background-color: rgba(11, 61, 46, 0.1);
}

.faq-item.active {
  border-color: var(--accent-gold);
  background-color: rgba(11, 61, 46, 0.3);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-item.active .faq-question {
  border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.faq-answer-content {
  padding: 25px 30px 25px 67px;
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.8;
}

/* Wholesale Section */
.wholesale-banner {
  background: linear-gradient(rgba(7, 31, 23, 0.92), rgba(7, 31, 23, 0.92)),
              url('../images/hero_himalayas.png') center/cover;
  padding: 70px 0;
  text-align: center;
  border-top: 1px solid var(--accent-gold);
  border-bottom: 1px solid var(--accent-gold);
}

.wholesale-banner h2 {
  font-size: 3.5rem;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.2;
}

.wholesale-banner p {
  font-size: 1.2rem;
  max-width: 800px;
  margin: 0 auto 25px;
  line-height: 1.8;
  color: var(--text-muted);
  padding: 0 20px;
}

/* Buttons */
.wholesale-banner-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
}

.wholesale-banner-actions .btn {
  min-width: 220px;
  padding: 14px 22px;
}

/* Mobile Responsive */
@media (max-width: 768px) {

  .wholesale-banner {
    padding: 50px 0;
  }

  .wholesale-banner h2 {
    font-size: 2.2rem;
    padding: 0 20px;
  }

  .wholesale-banner p {
    font-size: 1rem;
    line-height: 1.6;
    padding: 0 25px;
    margin-bottom: 20px;
  }

  .wholesale-banner-actions {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
    padding: 0 20px;
  }

  .wholesale-banner-actions .btn {
    min-width: 180px;
    width: auto;
    font-size: 14px;
    padding: 12px 18px;
  }
}

/* Footer */
.footer {
  background-color: var(--dark-green);
  border-top: 1px solid var(--accent-gold);
  padding: 80px 0 30px;
  color: var(--text-light);
}

.footer-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  color: var(--accent-gold);
  font-size: 1.2rem;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 15px;
}

.footer-links a {
  color: var(--text-muted);
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--accent-gold);
  padding-left: 5px;
}

.newsletter-form {
  display: flex;
  margin-top: 15px;
}

.newsletter-form input {
  flex-grow: 1;
  padding: 10px 15px;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  border-radius: 4px 0 0 4px;
}

.newsletter-form button {
  border-radius: 0 4px 4px 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 20px;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.9rem;
}

/* Order Modal */
.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(10, 10, 10, 0.8);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.modal.active {
  display: flex;
}

.modal-content {
  background-color: var(--bg-card);
  padding: 30px;
  border-radius: 8px;
  border: 1px solid var(--accent-gold);
  width: 90%;
  max-width: 500px;
  position: relative;
}

.close-modal {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text-muted);
}

.close-modal:hover {
  color: var(--accent-gold);
}

.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  color: var(--text-muted);
}

.form-group input, .form-group textarea {
  width: 100%;
  padding: 10px;
  background-color: var(--bg-dark);
  border: 1px solid var(--border-color);
  color: var(--text-light);
  border-radius: 4px;
  font-family: var(--font-body);
}


/* Responsive */
@media (max-width: 768px) {
  .navbar {
    padding: 5px 0;
  }
  .nav-links {
    display: none; /* Add JS toggle for mobile */
  }
  
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--primary-green);
    padding: 30px;
    gap: 20px;
    border-top: 1px solid var(--border-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
    z-index: 1001;
    animation: slideDownMobile 0.4s ease-out forwards;
  }

  @keyframes slideDownMobile {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero {
    margin-top: 90px;
    height: 80vh;
    min-height: 450px;
  }
  
  .hero-title {
    font-size: 2.2rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }

  .hide-mobile {
    display: none !important;
  }
}

/* Floating WhatsApp Widget */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 30px;
  right: 30px;
  background-color: #25d366;
  color: #FFF;
  border-radius: 50px;
  text-align: center;
  font-size: 32px;
  box-shadow: 0px 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: pulse-whatsapp 2s infinite;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0px 10px 25px rgba(37, 211, 102, 0.6);
  color: #FFF;
  animation: none;
}

.whatsapp-float i {
  margin-top: 0;
  display: block;
}

.whatsapp-tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--bg-card);
  color: var(--text-light);
  padding: 10px 18px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-family: var(--font-body);
  border: 1px solid var(--accent-gold);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  white-space: nowrap;
  box-shadow: 0 4px 15px rgba(0,0,0,0.4);
  transform: translateX(15px);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.whatsapp-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  background-color: #ff3b30;
  color: white;
  border-radius: 50%;
  width: 22px;
  height: 22px;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: bold;
  border: 2px solid #FFF;
  box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7), 0px 4px 20px rgba(37, 211, 102, 0.4); }
  70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0), 0px 4px 20px rgba(37, 211, 102, 0.4); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0), 0px 4px 20px rgba(37, 211, 102, 0.4); }
}


@media (max-width: 768px) {
  .whatsapp-float {
    width: 55px;
    height: 55px;
    bottom: 25px;
    right: 25px;
    font-size: 28px;
  }
  .whatsapp-tooltip {
    display: none;
  }
}

/* --- New eCommerce Styles --- */

/* Product Detail Page */
.product-detail-grid {
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}

/* Premium Gallery Styles */
.gallery-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 15px;
    background: var(--bg-darker);
    border: 1px solid var(--border-color);
    cursor: zoom-in;
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.3s ease;
}

.main-image-wrapper:hover .main-image {
    transform: scale(1.5);
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 12px;
}

.thumbnail-item {
    aspect-ratio: 1/1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: var(--bg-darker);
    opacity: 0.7;
}

.thumbnail-item:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.thumbnail-item.active {
    border-color: var(--accent-gold);
    opacity: 1;
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Lightbox Styles */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 3000;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
    box-shadow: 0 0 50px rgba(0,0,0,0.5);
    border: 1px solid var(--accent-gold);
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 30px;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: var(--accent-gold);
}

@media (max-width: 768px) {
    .thumbnail-grid {
        display: flex;
        overflow-x: auto;
        padding-bottom: 10px;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .thumbnail-grid::-webkit-scrollbar {
        display: none;
    }
    
    .thumbnail-item {
        flex: 0 0 80px;
    }
}

.product-info-title {
  font-size: 3rem;
  margin-bottom: 10px;
  color: #fff;
}

.product-info-price {
  font-size: 2rem;
  color: var(--accent-gold);
  font-weight: 700;
  margin-bottom: 25px;
}

.product-info-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 30px;
  line-height: 1.8;
}

.selection-group {
  margin-bottom: 25px;
}

.selection-group label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--accent-gold);
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 1px;
}

.qty-input {
  display: flex;
  align-items: center;
  gap: 15px;
  background: var(--bg-dark);
  border: 1px solid var(--border-color);
  width: fit-content;
  padding: 5px;
  border-radius: 8px;
  margin-bottom: 30px;
}

.qty-btn {
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary-green);
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.qty-btn:hover {
  background: var(--accent-gold);
  color: var(--black);
}

.qty-number {
  font-weight: 700;
  min-width: 30px;
  text-align: center;
}

/* Cart Page */
.cart-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 40px;
}

.cart-table th {
  text-align: left;
  padding: 15px;
  border-bottom: 2px solid var(--accent-gold);
  color: var(--accent-gold);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.cart-table td {
  padding: 20px 15px;
  border-bottom: 1px solid var(--border-color);
}

.cart-item-info {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.cart-summary {
  background: var(--bg-card);
  padding: 30px;
  border-radius: 12px;
  border: 1px solid var(--border-color);
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.summary-row.total {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
  margin-top: 20px;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-gold);
}

/* Checkout Page */
.checkout-grid {
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
}

.payment-options {
  display: grid;
  gap: 15px;
  margin-top: 20px;
}

.payment-card {
  padding: 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 15px;
}

.payment-card.active {
  border-color: var(--accent-gold);
  background: rgba(212, 175, 55, 0.1);
}

.payment-card i {
  font-size: 1.5rem;
  color: var(--accent-gold);
}

/* Responsive Cart & Product */
@media (max-width: 992px) {
  .product-detail-grid, .checkout-grid {
    grid-template-columns: 1fr;
  }
  
  .product-gallery {
    position: relative;
    top: 0;
    margin-bottom: 30px;
  }
}

@media (max-width: 768px) {
  .cart-table thead {
    display: none;
  }
  
  .cart-table tr {
    display: block;
    margin-bottom: 20px;
    background: var(--bg-card);
    border-radius: 10px;
    padding: 10px;
  }
  
  .cart-table td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: none;
    padding: 10px;
    text-align: right;
  }
  
  .cart-table td::before {
    content: attr(data-label);
    font-weight: 700;
    color: var(--accent-gold);
    text-transform: uppercase;
    font-size: 0.75rem;
  }
  
  .cart-item-info {
    flex-direction: column;
    text-align: center;
    width: 100%;
  }
}

/* Certificates Section */
.certificates-section {
  background-color: var(--bg-dark);
  border-top: 1px solid var(--border-color);
  padding: 100px 0;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 40px;
}

.cert-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 20px;
  cursor: pointer;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  text-align: center;
  position: relative;
}

.cert-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: var(--accent-gold);
  color: var(--black);
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.65rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 10;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  pointer-events: none;
}

.cert-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 0 20px rgba(0,0,0,0.1);
}

.cert-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(100%) contrast(1.1);
  transition: all 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cert-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 61, 46, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-gold);
  font-size: 2.2rem;
  opacity: 0;
  transition: all 0.4s ease;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}



.cert-card:hover .cert-image img {
  transform: scale(1.15);
  filter: grayscale(0) contrast(1);
}

.cert-card:hover .cert-overlay {
  opacity: 1;
}

.cert-label {
  margin-top: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.8px;
  font-family: var(--font-heading);
  text-transform: uppercase;
}

/* Certificate Lightbox */
.cert-lightbox {
  display: none;
  position: fixed;
  z-index: 6000;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  align-items: center;
  justify-content: center;
  padding: 40px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.cert-lightbox.active {
  display: flex;
  animation: fadeIn 0.4s ease-out forwards;
}

.cert-lightbox-content {
  max-width: 90%;
  max-height: 85vh;
  border: 1px solid var(--accent-gold);
  border-radius: 12px;
  box-shadow: 0 0 60px rgba(212, 175, 55, 0.4);
  object-fit: contain;
  background: #fff;
}

.cert-lightbox-close {
  position: absolute;
  top: 30px;
  right: 40px;
  color: #fff;
  font-size: 4rem;
  cursor: pointer;
  transition: all 0.4s ease;
  line-height: 1;
}

.cert-lightbox-close:hover {
  color: var(--accent-gold);
  transform: rotate(90deg) scale(1.2);
}

@media (max-width: 1200px) {
  .certificates-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .certificates-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 576px) {
  .certificates-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
  
  .cert-card {
    max-width: 340px;
    margin: 0 auto;
  }
  
  .cert-lightbox {
    padding: 20px;
  }
  
  .cert-lightbox-close {
    top: 10px;
    right: 20px;
    font-size: 3rem;
  }
}
/* MOBILE 3 COLUMN CERTIFICATES */
@media (max-width: 576px) {

  .certificates-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
  }

  .cert-card {
    max-width: 100%;
    padding: 10px;
    border-radius: 12px;
  }

  .cert-label {
    font-size: 0.7rem;
    margin-top: 10px;
    line-height: 1.3;
  }

  .cert-badge {
    font-size: 0.5rem;
    padding: 3px 6px;
    top: 8px;
    right: 8px;
  }

}
/* Benefits Image Grid Section */
.benefits-images-section {
  background-color: var(--bg-dark);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 50px;
}

.benefit-image-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  background: var(--bg-card);
  border: 1px solid var(--border-color);
}

.benefit-image-card img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.benefit-image-card:hover {
  transform: translateY(-15px) scale(1.01);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(212, 175, 55, 0.2);
  border-color: var(--accent-gold);
}

.benefit-image-card:hover img {
  transform: scale(1.05);
}

@media (max-width: 992px) {
  .benefits-grid {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .benefit-image-card {
    border-radius: 15px;
  }
}

/* ================= PRODUCT DETAIL MOBILE RESPONSIVE ================= */

@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding: 0 10px;
  }
  
  .product-gallery {
    position: relative;
    top: 0 !important;
    margin-bottom: 20px;
  }
}

@media (max-width: 768px) {
  /* Layout Spacing */
  .section {
    padding: 60px 0 !important;
  }
  
  /* Text Sizes */
  .product-info-title {
    font-size: 2.2rem;
    line-height: 1.2;
    margin-bottom: 15px;
    text-align: center;
  }
  
  .product-info-price {
    font-size: 1.6rem;
    margin-bottom: 20px;
    text-align: center;
  }
  
  .product-info-desc {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    text-align: center;
  }
  
  .product-info .badge {
    margin: 0 auto 20px;
    display: table;
  }
  
  /* Snappier Thumbnails Scroll */
  .thumbnail-grid {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 5px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: flex-start;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .thumbnail-grid::-webkit-scrollbar {
    display: none;
  }
  
  .thumbnail-item {
    flex: 0 0 95px;
    height: 95px;
    border-radius: 12px;
    scroll-snap-align: start;
    border-width: 1px;
  }

  /* Enhanced Touch Targets */
  .selection-group select {
    height: 55px !important;
    font-size: 1rem !important;
    padding: 0 15px !important;
  }
  
  .selection-group label {
    text-align: center;
    font-size: 0.9rem !important;
    letter-spacing: 1.5px !important;
  }

  /* Full Width Buttons & Better Alignment */
  .product-actions {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
  }
  
  .product-actions .btn {
    width: 100% !important;
    height: 60px !important;
    font-size: 1.1rem !important;
    border-radius: 12px !important;
    letter-spacing: 1px;
  }
  
  /* Qty Input Alignment */
  .qty-input {
    width: 100%;
    max-width: 250px;
    margin: 0 auto 30px;
    height: 55px;
    justify-content: space-between;
    padding: 0 10px;
  }
  
  .qty-btn {
    width: 45px !important;
    height: 45px !important;
    font-size: 1.4rem !important;
  }
  
  .qty-number {
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .product-info-title {
    font-size: 1.8rem;
  }
  
  .section {
    padding: 10px 0 !important;
    margin-top: 30px !important;
  }
  
  .container {
    padding: 0 20px;
  }
  
  .main-image-wrapper {
    border-radius: 15px;
    height: 400px;
  }
  
  .thumbnail-item {
    flex: 0 0 85px;
    height: 85px;
  }
}

/* Wholesale Banner Alignment Fix */
.wholesale-banner .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.wholesale-banner .btn-whatsapp {
  width: fit-content;
  margin: 0 auto;
}

/* Premium About Grid */
.premium-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

.about-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid var(--border-color);
}

.about-text h2 {
  font-size: 2.5rem;
  margin-bottom: 25px;
  color: var(--accent-gold);
}

.about-text p {
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
  font-size: 1.05rem;
}

.about-badges {
  display: flex;
  gap: 15px;
  margin-top: 35px;
}

@media (max-width: 992px) {
  .premium-about-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .about-text h2 {
    font-size: 2rem;
  }
  
  .about-badges {
    justify-content: center;
  }
}

/* Product Details Responsive */
@media (max-width: 992px) {
  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .product-info {
    text-align: center;
  }

  .product-info .badge {
    margin: 0 auto 15px;
    width: fit-content;
  }

  .selection-group {
    text-align: left;
  }

  .qty-input {
    margin: 0 auto 25px;
  }

  .product-info-title {
    font-size: 2.2rem;
  }

  .product-insights-section .grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
    text-align: center;
    margin-bottom: 40px !important;
  }

  .product-insights-section .grid:last-child {
    margin-bottom: 0 !important;
  }
}

@media (max-width: 768px) {
  .product-detail-grid {
    gap: 40px;
  }

  .main-image-wrapper {
    height: 380px !important;
  }

  .thumbnail-grid {
    gap: 10px;
    justify-content: center;
  }

  .thumbnail-item {
    flex: 0 0 65px;
    height: 65px;
  }

  .product-info-title {
    font-size: 1.8rem;
  }

  .product-benefits-grid {
    grid-template-columns: 1fr !important;
    gap: 20px !important;
  }

  .product-guides-grid {
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }
}

/* =========================
   SHIPPING PARTNERS HARD FIX (ABSOLUTE SYSTEM)
========================= */

.shipping-partners {
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* WRAPPER */
.logos-carousel {
  position: relative;
  width: 100%;
  height: 110px; /* lock height */
  overflow: hidden;
}

/* TRACK (ABSOLUTE → NO LAYOUT SHIFT EVER) */
.logos-track {
  position: absolute;   /* 🔥 KEY FIX */
  top: 0;
  left: 0;

  display: flex;
  gap: 25px;

  animation: scrollMove 20s linear infinite;
}

/* CARD */
.partner-card {
  flex: 0 0 auto;
  width: 180px;
  height: 100px;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff; /* WHITE BACKGROUND */
  border-radius: 12px;
  padding: 10px;

  border: 1px solid rgba(212, 175, 55, 0.2);

  /* optional premium look */
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

/* LOGO IMAGE */
.partner-card img {
  max-width: 80%;
  max-height: 70%;
  object-fit: contain;

  filter: none;   /* remove grayscale */
  opacity: 1;
  transition: 0.3s ease;
}

/* HOVER EFFECT */
.partner-card:hover img {
  transform: scale(1.05);
}

/* ANIMATION */
@keyframes scrollMove {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .logos-carousel {
    height: 90px;
  }

  .partner-card {
    width: 140px;
    height: 80px;
  }

  .partner-card img {
    max-height: 40px;
  }
}
/* CERTIFICATES GRID CENTER FIX (SAFE OVERRIDE) */

.certificates-section .certificates-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 260px)) !important;
  justify-content: center !important;
  gap: 25px !important;
}

/* FIX picture inside hero slider */
.hero-slide picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Mobile optimization */
@media (max-width: 768px) {
  .hero-slide picture img {
    object-fit: contain;
    max-height: 70vh;
  }
}
/* ===== FINAL HERO MOBILE FIX ===== */

.hero-slide picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 768px) {

  .hero-slide picture {
    position: relative;
  }

  .hero-slide picture img {
    position: relative;
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    z-index: 1; /* 🔥 FIX */
  }
}

/* ===== FORCE CENTER FIX (MOBILE ONLY) ===== */
@media (max-width: 768px) {

  .premium-about-wrapper {
    display: block !important;
    text-align: center !important;
  }

  .premium-about-content {
    width: 100% !important;
    text-align: center !important;
  }

  .premium-label {
    display: block !important;
    text-align: center !important;
  }

  .premium-title {
    width: 100% !important;
    text-align: center !important;
    margin: 0 auto 20px auto !important;
    left: auto !important;
    transform: none !important;
  }

  /* 🔥 underline line (IMPORTANT FIX) */
  .premium-title::after {
    left: 50% !important;
    transform: translateX(-50%) !important;
  }

  .premium-description {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .premium-about-actions {
    display: flex !important;
    justify-content: center !important;
  }
}

@media (max-width: 768px) {

  .premium-about-wrapper {
    gap: 60px !important; /* 🔥 main spacing fix */
  }

  .premium-about-content {
    margin-bottom: 20px; /* extra safety */
  }

  .premium-about-actions {
    margin-bottom: 10px;
  }

  .premium-about-video {
    margin-top: 10px;
  }

}

/* ===== PREMIUM CAROUSEL EFFECT ===== */

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s ease;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 3;
}

.slide.prev {
  opacity: 0.4;
  transform: translateX(-20%) scale(0.85);
  z-index: 2;
}

.slide.next {
  opacity: 0.4;
  transform: translateX(20%) scale(0.85);
  z-index: 2;
}

/* ===============================
   HOMEPAGE SLIDER FINAL FIX
=============================== */

/* WRAPPER FIX (HEIGHT + FLOW) */
#homepageSlider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* IMPORTANT: FIX HEIGHT ISSUE */
#homepageSlider.slider-wrapper {
  position: relative;
  width: 100%;
  height: 500px; /* 🔥 desktop height */
}

/* SLIDES */
#homepageSlider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;

  opacity: 0;
  transform: scale(0.9);
  transition: all 0.7s ease;

  z-index: 1;
}

/* ACTIVE CENTER */
#homepageSlider .slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 3;
}

/* LEFT SIDE */
#homepageSlider .slide.prev {
  opacity: 0.4;
  transform: translateX(-20%) scale(0.85);
  z-index: 2;
}

/* RIGHT SIDE */
#homepageSlider .slide.next {
  opacity: 0.4;
  transform: translateX(20%) scale(0.85);
  z-index: 2;
}

/* IMAGE FIX */
#homepageSlider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  #homepageSlider.slider-wrapper {
    height: 260px; /* 🔥 mobile height */
  }
}

/* ===== GLASS CARD EFFECT ===== */
.glass-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 16px;
  padding: 25px;
  transition: all 0.3s ease;
}

/* HOVER EFFECT */
.glass-card:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 10px 30px rgba(0,0,0,0.5);
  border-color: var(--accent-gold);
}


/* ===== MOBILE FIX (PRODUCT PAGE) ===== */
@media (max-width: 768px) {

  /* Product layout 2 column → 1 column */
  .product-detail-grid {
    grid-template-columns: 1fr !important;
    gap: 25px !important;
  }

  /* Thumbnail horizontal scroll */
  .thumbnail-grid {
    display: flex !important;
    overflow-x: auto;
    gap: 10px;
  }

  .thumbnail-item {
    flex: 0 0 80px;
  }

}

html, body {
  overflow-x: hidden;
}

/* ===== PRODUCT INSIGHT GRID FIX ===== */
.product-insight-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}

/* MOBILE FIX */
@media (max-width: 768px) {
  .product-insight-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
.mobile-grid-fix {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .mobile-grid-fix {
    grid-template-columns: 1fr;
  }
}

/* ===== PRODUCT PAGE CENTER FIX ===== */

@media (max-width: 768px) {

  /* GRID CENTER */
  .product-detail-grid {
    grid-template-columns: 1fr !important;
    justify-items: center;
    text-align: center;
  }

  /* LEFT SIDE (IMAGE) */
  .product-gallery {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
  }

  /* RIGHT SIDE (CONTENT) */
  .product-info {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    text-align: center;
  }

  /* TEXT CENTER */
  .product-info-desc,
  .product-info-title {
    text-align: center;
  }

  /* LIST CENTER */
  .product-info ul {
    text-align: left; /* readable */
    margin: 0 auto;
    max-width: 300px;
  }

  /* BUTTONS FULL WIDTH */
  .product-actions {
    width: 100%;
  }

}
/* ===== TESTIMONIALS ===== */

.testimonials-section {
  padding: 60px 0;
  background: linear-gradient(180deg, #071f17, #0b3d2e);
}

.testimonial-slider {
  overflow: hidden;
  margin-top: 50px;
}

.testimonial-track {
  display: flex;
  gap: 25px;
  animation: scrollTestimonials 25s linear infinite;
}

.testimonial-card {
  min-width: 300px;
  max-width: 300px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 16px;
  padding: 25px;
  backdrop-filter: blur(10px);
  transition: 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: #D4AF37;
}

.testimonial-card p {
  font-size: 0.95rem;
  color: #ccc;
  line-height: 1.6;
  margin-bottom: 15px;
}

.testimonial-card h4 {
  color: #D4AF37;
  margin: 0;
  font-size: 1rem;
}

.testimonial-card span {
  font-size: 0.8rem;
  color: #aaa;
}

/* animation */
@keyframes scrollTestimonials {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-track {
    animation: none;
    overflow-x: auto;
    padding-bottom: 10px;
  }

  .testimonial-card {
    min-width: 260px;
  }
}
/* ===============================
   MAIN HERO PREMIUM CAROUSEL
=============================== */

.hero-slider {
  position: relative;
  overflow: hidden;
}

.slider-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;
}

/* ALL SLIDES */
.hero-slide {
  position: absolute;
  top: 0;
  left: 0;

  width: 100%;
  height: 100%;

  opacity: 0;
  visibility: hidden;

  transition:
    transform 0.8s ease,
    opacity 0.8s ease,
    filter 0.8s ease;

  transform: scale(0.82);
  filter: blur(3px);

  z-index: 1;
}

/* ACTIVE CENTER SLIDE */
.hero-slide.active {
  opacity: 1;
  visibility: visible;

  transform: translateX(0) scale(1);
  filter: blur(0);

  z-index: 5;
}

/* LEFT PREVIEW */
.hero-slide.prev {
  opacity: 0.45;
  visibility: visible;

  transform: translateX(-18%) scale(0.88);
  filter: blur(2px);

  z-index: 3;
}

/* RIGHT PREVIEW */
.hero-slide.next {
  opacity: 0.45;
  visibility: visible;

  transform: translateX(18%) scale(0.88);
  filter: blur(2px);

  z-index: 3;
}

/* IMAGE FIX */
.hero-slide-bg,
.hero-slide picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* PREMIUM DEPTH EFFECT */
.hero-slide::after {
  content: "";

  position: absolute;
  inset: 0;

  background:
    linear-gradient(
      to bottom,
      rgba(0,0,0,0.15),
      rgba(0,0,0,0.45)
    );

  z-index: 1;
}

/* CONTENT ABOVE */
.hero-slide-content {
  position: relative;
  z-index: 5;
}

/* MOBILE FIX */
@media (max-width: 768px) {

  .slider-wrapper {
    height: auto;
  }

  .hero-slide,
  .hero-slide.prev,
  .hero-slide.next,
  .hero-slide.active {

    position: relative;

    opacity: 1;
    visibility: visible;

    transform: none;
    filter: none;
  }

  .hero-slide.prev,
  .hero-slide.next {
    display: none;
  }

}
/* ===============================
   GLOBAL CONTAINER FIX
=============================== */

.container {
  width: 100%;
  max-width: 1450px;   /* increased width */
  margin: 0 auto;
  padding: 0 25px;
}

/* ===============================
   MOBILE SIDE SPACE FIX
=============================== */

@media (max-width: 768px) {

  .container {
    padding: 0 12px;
  }

}

/* ===============================
   FEATURES GRID FIX
=============================== */

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

/* ===============================
   PRODUCTS GRID FIX
=============================== */

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));

  max-width: 1400px;   /* increased */

  margin: 0 auto;
  gap: 35px;
}

/* ===============================
   BENEFITS GRID FIX
=============================== */

.benefits-grid {
  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));

  gap: 35px;
  margin-top: 50px;
}

/* ===============================
   CERTIFICATES GRID FIX
=============================== */

.certificates-section .certificates-grid {

  display: grid !important;

  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)) !important;

  gap: 25px !important;

  justify-content: center !important;
}

/* ===============================
   FAQ WIDTH FIX
=============================== */

.faq-accordion {
  max-width: 1200px;
  margin: 50px auto 0;
}

/* ===============================
   WHOLESALE / DISTRIBUTOR FIX
=============================== */

.wholesale-banner .container {
  max-width: 1200px;
}

/* ===============================
   PREMIUM ABOUT FIX
=============================== */

.premium-about-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

/* ===============================
   MOBILE RESPONSIVE IMPROVEMENTS
=============================== */

@media (max-width: 992px) {

  .premium-about-wrapper {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .features-grid,
  .benefits-grid,
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }

}

@media (max-width: 768px) {

  .features-grid,
  .benefits-grid,
  .products-grid,
  .certificates-section .certificates-grid {

    grid-template-columns: 1fr !important;
  }

}

/* ===============================
   PREMIUM PRODUCTS FINAL FIX
=============================== */

/* PRODUCTS GRID */
.products-grid {

  display: grid;

  grid-template-columns: repeat(auto-fit, minmax(320px, 420px));

  justify-content: center;

  gap: 35px;

  max-width: 1400px;

  margin: 0 auto;

  align-items: stretch;
}

/* PRODUCT CARD */
.product-card {

  height: 100%;

  background-color: #0B3D2E;

  border-radius: 16px;

  overflow: hidden;

  border: 1px solid rgba(212, 175, 55, 0.18);

  transition: all 0.4s ease;

  display: flex;

  flex-direction: column;
}

/* HOVER */
.product-card:hover {

  transform: translateY(-8px);

  border-color: #D4AF37;

  box-shadow:
    0 20px 40px rgba(0,0,0,0.45),
    0 0 18px rgba(212,175,55,0.15);
}

/* PRODUCT IMAGE */
.product-image {

  height: 340px;

  overflow: hidden;

  background: #061f18;
}

/* IMAGE */
.product-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.5s ease;
}

/* IMAGE HOVER */
.product-card:hover .product-image img {

  transform: scale(1.04);
}

/* PRODUCT CONTENT */
.product-content {

  padding: 26px;

  display: flex;

  flex-direction: column;

  flex-grow: 1;
}

/* TITLE */
.product-title {

  font-size: 2rem;

  font-weight: 700;

  color: #fff;

  margin-bottom: 10px;
}

/* PRICE */
.product-price {

  font-size: 1.6rem;

  font-weight: 700;

  color: #D4AF37;

  margin-bottom: 18px;
}

/* SELECT */
.product-options select {

  width: 100%;

  height: 46px;

  border-radius: 8px;

  background: #000;

  color: #fff;

  border: 1px solid rgba(212,175,55,0.25);

  padding: 0 14px;

  font-size: 14px;
}

/* ACTIONS */
.product-actions {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;

  margin-top: auto;
}

/* ADD TO CART */
.product-actions .btn-add-cart {

  grid-column: 1 / -1;
}

/* BUTTONS */
.product-actions .btn {

  width: 100%;

  height: 48px;

  border-radius: 10px;

  font-size: 13px;

  font-weight: 700;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  transition: 0.25s ease;
}

/* BUTTON HOVER */
.product-actions .btn:hover {

  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {

  .products-grid {

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .product-image {

    height: 260px;
  }

  .product-content {

    padding: 20px;
  }

  .product-title {

    font-size: 1.7rem;
  }

  .product-price {

    font-size: 1.4rem;
  }

  .product-actions {

    grid-template-columns: 1fr;
  }

}
/* ===============================
   FINAL PREMIUM PRODUCT POLISH
=============================== */

/* PRODUCT CARD */
.product-card {

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.02),
      rgba(0,0,0,0.15)
    ),
    #0B3D2E;

  border-radius: 16px;

  overflow: hidden;

  border: 1px solid rgba(212,175,55,0.18);

  transition: all 0.4s ease;
}

/* CARD HOVER */
.product-card:hover {

  transform: translateY(-8px);

  border-color: #D4AF37;

  box-shadow:
    0 20px 40px rgba(0,0,0,0.45),
    0 0 18px rgba(212,175,55,0.15);
}

/* PRODUCT IMAGE */
.product-image {

  height: 340px;

  overflow: hidden;

  background: #061f18;
}

/* IMAGE */
.product-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.7s ease;
}

/* IMAGE HOVER */
.product-card:hover .product-image img {

  transform: scale(1.06);
}

/* PRODUCT CONTENT */
.product-content {

  padding: 26px;

  display: flex;

  flex-direction: column;

  flex-grow: 1;
}

/* TITLE */
.product-title {

  font-size: 2rem;

  font-weight: 700;

  color: #fff;

  margin-bottom: 10px;
}

/* PRICE */
.product-price {

  font-size: 1.6rem;

  font-weight: 700;

  color: #D4AF37;

  margin-bottom: 18px;
}

/* SELECT BOX */
.product-options select {

  width: 100%;

  height: 46px;

  border-radius: 8px;

  background: #000;

  color: #fff;

  border: 1px solid rgba(212,175,55,0.25);

  padding: 0 14px;

  font-size: 14px;
}

/* ACTIONS */
.product-actions {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;

  margin-top: auto;

  align-items: stretch;
}

/* ADD TO CART FULL WIDTH */
.product-actions .btn-add-cart {

  grid-column: 1 / -1;
}

/* BUTTONS */
.product-actions .btn {

  width: 100%;

  min-height: 48px;

  border-radius: 10px;

  font-size: 12px;

  font-weight: 700;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  padding: 0 10px;

  white-space: nowrap;

  transition: 0.25s ease;
}

/* EMAIL BUTTON */
.btn-email-buy {

  line-height: 1;
}

/* BUTTON HOVER */
.product-actions .btn:hover {

  transform: translateY(-2px);
}

/* MOBILE */
@media (max-width: 768px) {

  .product-image {

    height: 260px;
  }

  .product-content {

    padding: 20px;
  }

  .product-title {

    font-size: 1.7rem;
  }

  .product-price {

    font-size: 1.4rem;
  }

  .product-actions {

    grid-template-columns: 1fr;
  }

}
/* ===============================
   50 / 50 PREMIUM PRODUCTS LAYOUT
=============================== */

.products-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 30px;

  width: 100%;

  max-width: 1400px;

  margin: 0 auto;
}

/* PRODUCT CARD */
.product-card {

  background:
    linear-gradient(
      to bottom,
      rgba(255,255,255,0.02),
      rgba(0,0,0,0.15)
    ),
    #0B3D2E;

  border-radius: 18px;

  overflow: hidden;

  border: 1px solid rgba(212,175,55,0.18);

  transition: all 0.4s ease;

  height: 100%;
}

/* HOVER */
.product-card:hover {

  transform: translateY(-8px);

  border-color: #D4AF37;

  box-shadow:
    0 20px 40px rgba(0,0,0,0.45),
    0 0 18px rgba(212,175,55,0.15);
}

/* IMAGE AREA */
.product-image {

  aspect-ratio: 1 / 1;   /* PERFECT SQUARE */

  overflow: hidden;

  background: #061f18;
}

/* IMAGE */
.product-image img {

  width: 100%;

  height: 100%;

  object-fit: cover;

  transition: transform 0.7s ease;
}

/* IMAGE HOVER */
.product-card:hover .product-image img {

  transform: scale(1.06);
}

/* CONTENT */
.product-content {

  padding: 28px;

  display: flex;

  flex-direction: column;
}

/* TITLE */
.product-title {

  font-size: 2.2rem;

  font-weight: 700;

  color: #fff;

  margin-bottom: 14px;
}

/* PRICE */
.product-price {

  font-size: 1.7rem;

  font-weight: 700;

  color: #D4AF37;

  margin-bottom: 20px;
}

/* SELECT */
.product-options select {

  width: 100%;

  height: 50px;

  border-radius: 10px;

  background: #000;

  color: #fff;

  border: 1px solid rgba(212,175,55,0.25);

  padding: 0 14px;

  font-size: 15px;
}

/* BUTTON AREA */
.product-actions {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;

  margin-top: 20px;
}

/* ADD TO CART */
.product-actions .btn-add-cart {

  grid-column: 1 / -1;
}

/* BUTTONS */
.product-actions .btn {

  width: 100%;

  min-height: 50px;

  border-radius: 10px;

  font-size: 13px;

  font-weight: 700;

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  white-space: nowrap;
}

/* MOBILE */
@media (max-width: 768px) {

  .products-grid {

    grid-template-columns: 1fr;

    gap: 25px;
  }

  .product-title {

    font-size: 1.8rem;
  }

  .product-price {

    font-size: 1.4rem;
  }

}
/* ===============================
   PREMIUM PRODUCT CONTENT SPACING
=============================== */

/* PRODUCT CONTENT */
.product-content {

  padding: 22px;

  display: flex;

  flex-direction: column;

  gap: 12px;   /* 🔥 controls all spacing */
}

/* TITLE */
.product-title {

  margin: 0;

  line-height: 1.1;

  font-size: 2.1rem;
}

/* PRICE */
.product-price {

  margin: 0;

  font-size: 1.6rem;

  line-height: 1.1;
}

/* OPTIONS */
.product-options {

  margin: 0;
}

/* SELECT */
.product-options select {

  margin: 0;

  height: 48px;
}

/* ACTIONS */
.product-actions {

  margin-top: 6px;

  gap: 10px;
}

/* ADD TO CART BUTTON */
.product-actions .btn-add-cart {

  margin-bottom: -2px;
}

/* MOBILE */
@media (max-width: 768px) {

  .product-content {

    padding: 18px;

    gap: 10px;
  }

  .product-title {

    font-size: 1.8rem;
  }

  .product-price {

    font-size: 1.4rem;
  }

}
/* ===============================
   COMPACT PREMIUM FAQ FIX
=============================== */

/* FAQ GRID */
.faq-accordion {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 12px;   /* 🔥 reduced gap */

  margin-top: 35px;
}

/* FAQ ITEM */
.faq-item {

  margin: 0 !important;

  border-radius: 14px;
}

/* QUESTION AREA */
.faq-question {

  padding: 18px 22px;   /* 🔥 reduced padding */

  min-height: 72px;     /* 🔥 fixed balanced height */
}

/* QUESTION TEXT */
.faq-question span {

  font-size: 1.05rem;

  line-height: 1.3;
}

/* ANSWER */
.faq-answer-content {

  padding: 0 22px 18px;

  font-size: 0.95rem;

  line-height: 1.7;
}

/* MOBILE */
@media (max-width: 768px) {

  .faq-accordion {

    grid-template-columns: 1fr;

    gap: 10px;
  }

  .faq-question {

    min-height: auto;

    padding: 16px 18px;
  }

}
/* ===============================
   GLOBAL PREMIUM SPACING FIX
=============================== */

/* MAIN SECTION SPACING */
.section {

  padding: 55px 0 !important;
}

/* SECTION TITLES */
.section-title {

  margin-bottom: 12px !important;

  line-height: 1.15;
}

/* SECTION SUBTITLE */
.section-subtitle {

  margin-bottom: 28px !important;

  line-height: 1.6;
}

/* GRIDS */
.features-grid,
.products-grid,
.benefits-grid,
.certificates-grid,
.faq-accordion {

  margin-top: 28px !important;
}

/* ABOUT SECTION */
.premium-about {

  padding: 70px 0 !important;
}

/* WHOLESALE / DISTRIBUTOR */
.wholesale-banner {

  padding: 60px 0 !important;
}

/* FAQ */
.faq-section {

  padding-bottom: 50px !important;
}

/* SHIPPING PARTNERS */
.shipping-partners {

  padding: 55px 0 !important;
}

/* FOOTER */
.footer {

  padding: 60px 0 25px !important;
}

/* PRODUCT CONTENT */
.product-content {

  padding: 20px !important;
}

/* MOBILE */
@media (max-width: 768px) {

  .section {

    padding: 40px 0 !important;
  }

  .premium-about,
  .wholesale-banner,
  .shipping-partners {

    padding: 45px 0 !important;
  }

  .section-subtitle {

    margin-bottom: 22px !important;
  }

}
/* ===============================
   ULTRA TIGHT PREMIUM SPACING FIX
=============================== */

/* REMOVE EXTRA TOP SPACE */
.section > .container {

  padding-top: 0 !important;
}

/* SECTION */
.section {

  padding: 38px 0 !important;
}

/* TITLES */
.section-title {

  margin-top: 0 !important;

  margin-bottom: 8px !important;

  line-height: 1.1 !important;
}

/* SUBTITLE */
.section-subtitle {

  margin-top: 0 !important;

  margin-bottom: 20px !important;

  line-height: 1.5;
}

/* FIRST ELEMENT INSIDE SECTION */
.section .container > *:first-child {

  margin-top: 0 !important;
}

/* LAST ELEMENT */
.section .container > *:last-child {

  margin-bottom: 0 !important;
}

/* ALL GRIDS */
.features-grid,
.products-grid,
.benefits-grid,
.certificates-grid,
.faq-accordion {

  margin-top: 18px !important;
}

/* FAQ */
.faq-question {

  min-height: auto !important;
}

/* WHOLESALE */
.wholesale-banner {

  padding: 45px 0 !important;
}

/* ABOUT */
.premium-about {

  padding: 50px 0 !important;
}

/* SHIPPING */
.shipping-partners {

  padding: 40px 0 !important;
}

/* FOOTER */
.footer {

  padding: 45px 0 20px !important;
}

/* MOBILE */
@media (max-width: 768px) {

  .section {

    padding: 28px 0 !important;
  }

  .section-title {

    margin-bottom: 6px !important;
  }

  .section-subtitle {

    margin-bottom: 16px !important;
  }

}
@media (max-width: 768px) {

  .benefits-grid {

    display: grid !important;

    grid-template-columns: repeat(2, 1fr) !important;

    gap: 18px !important;

    max-width: 100% !important;

    margin-left: auto;

    margin-right: auto;
  }

  .benefit-image-card {

    border-radius: 14px;
  }

}
/* ===============================
   MOBILE CAROUSEL FINAL FIX
=============================== */

@media (max-width: 768px) {

  /* SLIDER WRAPPER */
  #homepageSlider.slider-wrapper {

    height: auto !important;

    overflow: hidden !important;
  }

  /* ALL SLIDES */
  #homepageSlider .slide {

    position: absolute !important;

    top: 0;
    left: 0;

    width: 100% !important;

    opacity: 0 !important;

    visibility: hidden !important;

    transform: none !important;

    pointer-events: none !important;
  }

  /* ACTIVE SLIDE */
  #homepageSlider .slide.active {

    position: relative !important;

    opacity: 1 !important;

    visibility: visible !important;

    display: block !important;

    z-index: 5;
  }

  /* HIDE SIDE SLIDES */
  #homepageSlider .slide.prev,
  #homepageSlider .slide.next {

    display: none !important;
  }

  /* IMAGE FIX */
  #homepageSlider .slide img {

    width: 100% !important;

    height: auto !important;

    object-fit: contain !important;

    border-radius: 12px;
  }

  /* HIDE DOTS */
  .slider-dots {

    display: none !important;
  }

  /* HIDE ARROWS */
  .slider-controls,
  .slider-arrow {

    display: none !important;
  }

}
/* =========================================
   COMPACT PREMIUM FEATURE BOXES
========================================= */

.feature-item {

  padding: 28px 24px !important;

  min-height: auto !important;

  justify-content: flex-start !important;
}

/* ICON */
.feature-icon {

  font-size: 2.3rem !important;

  margin-bottom: 14px !important;
}

/* TITLE */
.feature-title {

  font-size: 1.9rem !important;

  margin-bottom: 12px !important;

  line-height: 1.15 !important;
}

/* DESCRIPTION */
.feature-desc {

  font-size: 1rem !important;

  line-height: 1.7 !important;

  max-width: 100% !important;

  margin: 0 auto;
}

/* GRID */
.features-grid {

  gap: 22px !important;

  margin-top: 25px !important;
}

/* MOBILE */
@media (max-width: 768px) {

  .feature-item {

    padding: 22px 18px !important;
  }

  .feature-title {

    font-size: 1.45rem !important;
  }

  .feature-desc {

    font-size: 0.92rem !important;
  }

}
/* =========================================
   PRODUCT DETAILS PAGE HEADER OVERLAP FIX
========================================= */

/* PRODUCT PAGE MAIN WRAPPER */
.product-details-page,
.product-page,
.product-details-section {

  padding-top: 110px !important;
}

/* MOBILE */
@media (max-width: 768px) {

  .product-details-page,
  .product-page,
  .product-details-section {

    padding-top: 98px !important;
  }

}
/* =========================================
   FIXED HEADER CONTENT OFFSET
========================================= */

main {

  padding-top: 95px;
}

@media (max-width: 768px) {

  main {

    padding-top: 82px;
  }

}
/* =========================================
   MOBILE HEADER FIX
   EXCEPT HOME PAGE
========================================= */

@media (max-width: 768px) {

  body:not(.home-page) {

    padding-top: 95px !important;
  }

}