:root {
  --dark-green: #1e3b24;
  --olive-green: #4d7c35;
  --accent-green: #92b85a;
  --cream-bg: #f6f2ea;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(0,0,0,0.05);
  --shadow-hover: 0 20px 40px rgba(0,0,0,0.1);
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  background-color: var(--white);
  color: #2d2d2d;
  overflow-x: hidden;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, .navbar-brand {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  line-height: 1.2;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--cream-bg);
}

::-webkit-scrollbar-thumb {
  background: var(--olive-green);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--dark-green);
}

/* Navbar */
.navbar {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-sm);
  padding: 1rem 0;
  transition: var(--transition-smooth);
}

.sticky-navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--dark-green) !important;
  transition: var(--transition-smooth);
}

.navbar-brand i {
  color: var(--olive-green);
  margin-right: 8px;
}

.nav-link {
  color: #2d2d2d !important;
  font-weight: 500;
  margin: 0 0.5rem;
  transition: var(--transition-smooth);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--olive-green);
  transition: width 0.3s ease;
}

.nav-link:hover::after {
  width: 80%;
}

.nav-link:hover {
  color: var(--olive-green) !important;
  transform: translateY(-2px);
}

.nav-cta {
  background: var(--dark-green) !important;
  color: white !important;
  padding: 0.5rem 1.5rem !important;
  border-radius: 50px !important;
  transition: var(--transition-smooth) !important;
}

.nav-cta:hover {
  background: var(--olive-green) !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--shadow-hover);
}

.nav-cta::after {
  display: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  padding: 100px 0 80px;
  background: linear-gradient(135deg, var(--cream-bg) 0%, #ffffff 100%);
  overflow: hidden;
}

.herbal-badge {
  display: inline-block;
  background: var(--accent-green);
  color: var(--dark-green);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  animation: fadeInUp 0.6s ease;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  color: var(--dark-green);
  animation: fadeInUp 0.8s ease;
}

.accent-text {
  color: var(--olive-green);
  position: relative;
  display: inline-block;
}

.accent-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background: rgba(146, 184, 90, 0.3);
  z-index: -1;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: #555;
  margin-bottom: 2rem;
  animation: fadeInUp 1s ease;
}

.hero-buttons {
  animation: fadeInUp 1.2s ease;
}

.cta-btn {
  background: var(--dark-green);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-smooth);
  margin-right: 1rem;
}

.cta-btn:hover {
  background: var(--olive-green);
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.btn-outline-secondary {
  border: 2px solid var(--dark-green);
  color: var(--dark-green);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  transition: var(--transition-smooth);
}

.btn-outline-secondary:hover {
  background: var(--dark-green);
  color: white;
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.trust-badges span {
  margin-right: 1.5rem;
  font-size: 0.9rem;
  color: #666;
  transition: var(--transition-smooth);
}

.trust-badges span:hover {
  transform: translateY(-2px);
  color: var(--dark-green);
}

.trust-badges i {
  color: var(--accent-green);
  margin-right: 0.5rem;
}

.hero-img-wrapper {
  position: relative;
  animation: float 3s ease-in-out infinite;
}

.floating-leaf {
  position: absolute;
  font-size: 2rem;
  color: var(--accent-green);
  animation: spin 8s linear infinite;
  opacity: 0.6;
}

.leaf-1 { top: 10%; left: 0; }
.leaf-2 { bottom: 10%; right: 0; }

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

@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

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

/* Section Styles */
.section-badge {
  display: inline-block;
  background: var(--accent-green);
  color: var(--dark-green);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--dark-green);
}

.section-subtitle {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

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

/* Pain Cards */
.pain-card {
  background: white;
  padding: 2rem;
  text-align: center;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.pain-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.pain-card i {
  font-size: 3rem;
  color: var(--olive-green);
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.pain-card:hover i {
  transform: scale(1.1);
}

.pain-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.pain-card p {
  color: #666;
  margin: 0;
}

.solution-box {
  background: linear-gradient(135deg, var(--dark-green), var(--olive-green));
  color: white;
  padding: 2rem;
  border-radius: 30px;
  margin-top: 2rem;
  transition: var(--transition-smooth);
}

.solution-box:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

.solution-box i {
  font-size: 2rem;
  margin-bottom: 1rem;
  animation: bounce 2s infinite;
}

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

/* Feature Cards */
.feature-card, .benefit-card {
  background: white;
  padding: 2rem;
  text-align: center;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.feature-card:hover, .benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.feature-card i, .benefit-card i {
  font-size: 2.5rem;
  color: var(--olive-green);
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.feature-card:hover i, .benefit-card:hover i {
  transform: scale(1.1);
}

.feature-card h4, .benefit-card h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

/* Testimonial Cards */
.testimonial-card {
  background: white;
  padding: 2rem;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  position: relative;
  transition: var(--transition-smooth);
  height: 100%;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.testimonial-card i {
  font-size: 2rem;
  color: var(--accent-green);
  opacity: 0.5;
  margin-bottom: 1rem;
}

.stars {
  color: #ffc107;
  margin-top: 1rem;
  font-size: 0.9rem;
}

/* FAQ Accordion */
.accordion-item {
  border: none;
  margin-bottom: 1rem;
  border-radius: 15px !important;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.accordion-button {
  background: white;
  font-weight: 600;
  padding: 1.2rem;
  font-size: 1rem;
}

.accordion-button:focus {
  box-shadow: none;
  border-color: transparent;
}

.accordion-button:not(.collapsed) {
  background: var(--cream-bg);
  color: var(--dark-green);
}

.accordion-body {
  padding: 1.5rem;
  color: #666;
}

/* Final CTA */
.final-cta {
  background: linear-gradient(135deg, var(--dark-green), var(--olive-green));
  padding: 80px 0;
  color: white;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.final-cta::before {
  content: '🌿';
  position: absolute;
  font-size: 15rem;
  opacity: 0.1;
  bottom: -50px;
  right: -50px;
}

.final-cta h2 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  animation: fadeInUp 0.8s ease;
}

.final-cta p {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.cta-btn-light {
  background: white;
  color: var(--dark-green);
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  margin-top: 1rem;
  transition: var(--transition-smooth);
  border: none;
}

.cta-btn-light:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
  color: var(--olive-green);
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: var(--shadow-hover);
  z-index: 1000;
  transition: var(--transition-smooth);
  text-decoration: none;
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(360deg);
  color: white;
  background: #128C7E;
}

/* Footer */
.footer {
  background: var(--dark-green);
  color: white;
  padding: 50px 0 20px;
}

.footer h4, .footer h5 {
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.8rem;
}

.footer-links a {
  color: white;
  text-decoration: none;
  opacity: 0.8;
  transition: var(--transition-smooth);
}

.footer-links a:hover {
  opacity: 1;
  padding-left: 5px;
}

.social-links a {
  color: white;
  margin-right: 1rem;
  font-size: 1.2rem;
  opacity: 0.8;
  transition: var(--transition-smooth);
  display: inline-block;
}

.social-links a:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
}

/* Ingredient Cards (Glassmorphism) */
.ingredient-card {
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.ingredient-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.ingredient-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.ingredient-card:hover .ingredient-img {
  transform: scale(1.05);
}

.ingredient-info {
  padding: 1.5rem;
}

.ingredient-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: var(--dark-green);
}

.benefit-badge {
  display: inline-block;
  background: var(--accent-green);
  color: var(--dark-green);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* Page Hero */
.page-hero {
  background: linear-gradient(135deg, var(--dark-green), var(--olive-green));
  padding: 100px 0 80px;
  color: white;
  text-align: center;
}

.page-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* Mission Cards */
.mission-card {
  background: white;
  padding: 2rem;
  text-align: center;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
  height: 100%;
}

.mission-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
}

.mission-card i {
  font-size: 3rem;
  color: var(--olive-green);
  margin-bottom: 1rem;
}

.trust-list {
  margin-top: 2rem;
}

.trust-list div {
  margin-bottom: 1rem;
  font-size: 1.1rem;
}

.trust-list i {
  color: var(--accent-green);
  margin-right: 0.8rem;
}

/* Image Styles */
.hero-product {
  max-width: 100%;
  height: auto;
  display: block !important;
  opacity: 1 !important;
  visibility: visible !important;
  position: relative;
  z-index: 5;
  filter: drop-shadow(0 25px 40px rgba(0,0,0,0.15));
  transition: var(--transition-smooth);
}

.hero-product:hover {
  transform: scale(1.02);
}

.hero-img-wrapper {
  position: relative;
  z-index: 5;
}

.herbal-bg-overlay {
  z-index: 1;
}

.story-section img,
.mission-section img,
.trust-section img {
  position: relative;
  z-index: 5;
  opacity: 1 !important;
  visibility: visible !important;
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  transition: var(--transition-smooth);
}

.story-section img:hover,
.mission-section img:hover,
.trust-section img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-hover);
}

/* ============================================
   RESPONSIVE DESIGN - Mobile First Approach
   ============================================ */

/* Large Desktop (1200px and above) */
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
  
  .hero-title {
    font-size: 4rem;
  }
}

/* Desktop (992px to 1199px) */
@media (min-width: 992px) and (max-width: 1199px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .ingredient-img {
    height: 220px;
  }
}

/* Tablet (768px to 991px) */
@media (min-width: 768px) and (max-width: 991px) {
  .hero-section {
    padding: 80px 0 60px;
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .pain-card, .feature-card, .benefit-card {
    padding: 1.5rem;
  }
  
  .ingredient-img {
    height: 200px;
  }
  
  .page-hero h1 {
    font-size: 2.5rem;
  }
  
  .final-cta h2 {
    font-size: 2rem;
  }
  
  .trust-badges span {
    margin-right: 1rem;
    font-size: 0.8rem;
  }
}

/* Mobile Landscape (576px to 767px) */
@media (min-width: 576px) and (max-width: 767px) {
  .hero-section {
    padding: 60px 0 40px;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
  }
  
  .hero-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .pain-card, .feature-card, .benefit-card {
    padding: 1.2rem;
  }
  
  .pain-card i {
    font-size: 2.5rem;
  }
  
  .feature-card i, .benefit-card i {
    font-size: 2rem;
  }
  
  .testimonial-card {
    padding: 1.5rem;
  }
  
  .ingredient-img {
    height: 250px;
  }
  
  .page-hero {
    padding: 80px 0 60px;
  }
  
  .page-hero h1 {
    font-size: 2rem;
  }
  
  .final-cta {
    padding: 60px 0;
  }
  
  .final-cta h2 {
    font-size: 1.8rem;
  }
  
  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
    bottom: 20px;
    right: 20px;
  }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
  /* General */
  body {
    font-size: 14px;
  }
  
  /* Navbar */
  .navbar-brand {
    font-size: 1.4rem;
  }
  
  .navbar-toggler {
    border: none;
    padding: 0.5rem;
  }
  
  .navbar-toggler:focus {
    box-shadow: none;
  }
  
  .nav-link {
    margin: 0.5rem 0;
    text-align: center;
  }
  

  
  /* Hero Section */
  .hero-section {
    padding: 50px 0 40px;
  }
  
  .herbal-badge {
    font-size: 0.8rem;
    padding: 0.3rem 0.8rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }
  
  .hero-buttons .btn {
    width: 100%;
    margin-right: 0;
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .trust-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
  }
  
  .trust-badges span {
    margin-right: 0;
    font-size: 0.75rem;
  }
  
  .floating-leaf {
    font-size: 1.2rem;
  }
  
  /* Section Titles */
  .section-badge {
    font-size: 0.7rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .section-subtitle {
    font-size: 0.9rem;
  }
  
  /* Cards */
  .pain-card, .feature-card, .benefit-card, .testimonial-card, .mission-card {
    padding: 1.2rem;
  }
  
  .pain-card i {
    font-size: 2rem;
  }
  
  .pain-card h4, .feature-card h4, .benefit-card h4 {
    font-size: 1.1rem;
  }
  
  .feature-card i, .benefit-card i {
    font-size: 1.8rem;
  }
  
  .solution-box {
    padding: 1.5rem;
    margin-top: 1.5rem;
  }
  
  .solution-box h3 {
    font-size: 1.3rem;
  }
  
  /* Testimonials */
  .testimonial-card p {
    font-size: 0.9rem;
  }
  
  .testimonial-card h5 {
    font-size: 1rem;
  }
  
  /* FAQ */
  .accordion-button {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  .accordion-body {
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  /* Final CTA */
  .final-cta {
    padding: 50px 0;
  }
  
  .final-cta h2 {
    font-size: 1.5rem;
  }
  
  .final-cta p {
    font-size: 0.9rem;
  }
  
  .cta-btn-light {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
  
  /* Footer */
  .footer {
    padding: 40px 0 20px;
  }
  
  .footer h4, .footer h5 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  
  .footer p, .footer-links li {
    font-size: 0.85rem;
  }
  
  .social-links {
    margin-top: 1rem;
  }
  
  /* Ingredients Page */
  .ingredient-img {
    height: 200px;
  }
  
  .ingredient-info {
    padding: 1rem;
  }
  
  .ingredient-info h4 {
    font-size: 1.1rem;
  }
  
  .ingredient-info p {
    font-size: 0.85rem;
  }
  
  .benefit-badge {
    font-size: 0.7rem;
  }
  
  /* About Page */
  .page-hero {
    padding: 60px 0 50px;
  }
  
  .page-hero h1 {
    font-size: 1.8rem;
  }
  
  .page-hero p {
    font-size: 0.9rem;
  }
  
  .story-section .lead {
    font-size: 1rem;
  }
  
  .trust-list div {
    font-size: 0.9rem;
  }
  
  /* WhatsApp Float */
  .whatsapp-float {
    width: 45px;
    height: 45px;
    font-size: 1.3rem;
    bottom: 15px;
    right: 15px;
  }
  
  /* Spacing Adjustments */
  .py-5 {
    padding-top: 3rem !important;
    padding-bottom: 3rem !important;
  }
  
  .mt-5 {
    margin-top: 2rem !important;
  }
  
  .mb-5 {
    margin-bottom: 2rem !important;
  }
  
  .g-4 {
    --bs-gutter-y: 1rem;
  }
}

/* Extra Small Devices (up to 375px) */
@media (max-width: 375px) {
  .hero-title {
    font-size: 1.6rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .pain-card, .feature-card, .benefit-card {
    padding: 1rem;
  }
  
  .pain-card h4 {
    font-size: 1rem;
  }
  
  .btn {
    font-size: 0.85rem;
  }
}

/* Print Styles */
@media print {
  .whatsapp-float, .nav-cta, .hero-buttons .btn {
    display: none;
  }
  
  body {
    background: white;
    color: black;
  }
  
  .hero-section, .final-cta {
    background: white;
    color: black;
  }
}

/* Hover Effects for Touch Devices */
@media (hover: hover) {
  .feature-card:hover, .benefit-card:hover, .pain-card:hover {
    transform: translateY(-5px);
  }
}

/* Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite;
}

/* Utility Classes */
.text-center-mobile {
  text-align: center;
}

@media (max-width: 767px) {
  .text-center-mobile {
    text-align: center !important;
  }
  
  .order-first-mobile {
    order: -1;
  }
}

.page-hero{
  position: relative;
  padding: 140px 0 100px;
  background: url('hexiheal\ \(1\).jpeg') center/cover no-repeat;
  overflow: hidden;
}

.page-hero .overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  z-index: 1;
}

.page-hero .container{
  position: relative;
  z-index: 2;
}

.hero-page-title{
  font-size: 4rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1rem;
}

.hero-page-subtitle{
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  max-width: 700px;
  margin: auto;
}

@media(max-width:768px){

  .hero-page-title{
    font-size: 2.5rem;
  }

  .page-hero{
    padding: 100px 0 70px;
  }

}

.offer-badge{
  display: inline-block;
  background: rgba(255,255,255,0.15);
  color: white;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.offer-price{
  margin-top: 1.5rem;
}

.old-price{
  text-decoration: line-through;
  opacity: 0.7;
  font-size: 1.5rem;
  margin-right: 10px;
}

.new-price{
  font-size: 3rem;
  font-weight: 800;
  color: #ffe082;
}

.countdown-wrapper{
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.time-box{
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(10px);
  padding: 1rem 1.5rem;
  border-radius: 20px;
  min-width: 100px;
}

.time-box span{
  display: block;
  font-size: 2rem;
  font-weight: 700;
  color: white;
}

.time-box small{
  color: rgba(255,255,255,0.8);
}

.offer-warning{
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}


  .nav-cta {
    display: inline-block;
    width: auto;
    margin-left: 10px;
    color: #e0e0e0 !important;
    background-color: #1e3b24;
    border: none;
    outline: none;
  }