@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --primary-color: #E30B5C;
  --primary-dark: #B8093F;
  --secondary-color: #6c757d;
  --success-color: #28a745;
  --danger-color: #dc3545;
  --warning-color: #ffc107;
  --info-color: #17a2b8;
  --light-color: #f8f9fa;
  --dark-color: #343a40;
  --white: #ffffff;
  --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
  --border-radius: 15px;
  --border-radius-lg: 20px;
  --transition: all 0.3s ease;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', zans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

/* Modern Navbar */
.navbar {
  background: linear-gradient(172deg, #ffc107 0%, #b8002f 100% 100% );
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border-radius: 0 0 20px 20px;
}

.navbar-brand {
  font-weight: 700;
  font-size: 1.25rem;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.me-3
 {
    margin-right: 1px !important;
}

.flag-icon {
  width: 25px;
  height: 50px;
 /* border-radius: 3px; */
 /* box-shadow: 0 2px 4px rgba(0,0,0,0.2); */
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.brand-main {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--white);
}

.brand-tag {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-weight: 500;
  padding: 0.5rem 1rem;
  transition: var(--transition);
  position: relative;
}

.navbar-nav .nav-link:hover {
  color: var(--white) !important;
  transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after {
  width: 100%;
}

.navbar-actions {
  gap: 0.5rem;
}

.navbar-toggler {
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* Hero Section */
.hero-section {
  position: relative;
  min-height: 90vh;
  background: linear-gradient(135deg, #dc3545fa 0%, #ffc107e0 100%), url('img/hero.webp') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.bg-primary {
    --bs-bg-opacity: 1;
    background-color: #ffc107 !important;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 0;
}

.hero-text {
  max-width: 600px;
}

.hero-badge {
  margin-bottom: 1.5rem;
}

.hero-badge .badge {
  background: rgba(255,255,255,0.2);
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
  font-size: 0.875rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 1rem;
  color: var(--white);
}

.text-gradient {
  background: linear-gradient(45deg, #ffffff, #e3f2fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: rgba(255,255,255,0.9);
}

.hero-features {
  margin-bottom: 2rem;
  display: flex;
}
 


.feature-item {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
 /* gap: 0.75rem; */
  margin-bottom: 0.75rem;
  color: var(--white);
  font-weight: 500;
}

/*
 .feature-item {
  display: flex;
  gap: 1.5rem;
 align-items: flex-start; 
}
*/

.feature-item i {
  font-size: 1.25rem;
  color: #fff;
}

.feature-item-2 {
    display: flex;
    gap: 1.5rem;
    /* align-items: flex-start; */
}

.feature-item-2 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: var(--white);
    font-weight: 500;
}


.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-buttons .btn {
  padding: 0.875rem 2rem;
  font-weight: 600;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  font-size: 0.95rem;
}

.hero-buttons .btn-primary {
  background: var(--white);
  color: var(--primary-color);
  border: 2px solid var(--white);
}

.hero-buttons .btn-primary:hover {
  background: transparent;
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-buttons .btn-outline-light {
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white);
}

.hero-buttons .btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.hero-image {
  position: relative;
}

.product-showcase {
  position: relative;
  max-width: 500px;
  margin: 0 auto;
}

.product-image {
  width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
/*  box-shadow: var(--shadow-lg); */
  transition: var(--transition);
}

.product-image:hover {
  transform: scale(1.05);
}

.floating-elements {
  position: absolute;
  top: -20px;
  right: -20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.floating-badge {
  color: #b8002f;
  background: var(--white);
  border-radius: 50px;
  padding: 0.75rem 1.25rem;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  animation: float 3s ease-in-out infinite;
}

.floating-badge:nth-child(2) {
  animation-delay: 1s;
}

.floating-badge:nth-child(3) {
  animation-delay: 2s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

/* Stats Section */
.stats-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 4rem 0;
}

.stat-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem 1rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.stat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.stat-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--white);
  font-size: 2rem;
  box-shadow: var(--shadow);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.stat-label {
  font-weight: 600;
  color: var(--secondary-color);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.875rem;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--dark-color);
  margin-bottom: 1rem;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 50%;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-color), var(--success-color));
  border-radius: 2px;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.125rem;
  color: var(--secondary-color);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Features Section */
.features-section {
  padding: 5rem 0;
}

.feature-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
/*  box-shadow: var(--shadow);  */
  transition: var(--transition);
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
/*  box-shadow: var(--shadow-lg); */
}

.feature-image {
  text-align: center;
  margin-bottom: 2rem;
}

.feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.feature-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}


.feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  flex-shrink: 0;
  box-shadow: var(--shadow);
}

.feature-text h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.feature-text p {
  color: var(--secondary-color);
  line-height: 1.6;
}

/* Benefits Section */
.benefits-section {
  background: var(--light-color);
  padding: 5rem 0;
}

.benefit-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  border: 1px solid rgba(0,0,0,0.05);
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.benefit-icon {
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--white);
  font-size: 1.75rem;
  box-shadow: var(--shadow);
}

.benefit-card h4 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 1rem;
}

.benefit-card p {
  color: var(--secondary-color);
  line-height: 1.6;
}

/* Ingredients Section */
.ingredients-section {
  padding: 5rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.ingredient-item {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.ingredient-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.ingredient-item img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 1rem;
  box-shadow: var(--shadow);
}

.ingredient-item h5 {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--dark-color);
  margin-bottom: 0.5rem;
}

.ingredient-item p {
  color: var(--secondary-color);
  line-height: 1.5;
  font-size: 0.95rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(136deg, #b8002f 0%, #ffc107 100%);
  padding: 4rem 0;
  color: var(--white);
}

.cta-card {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-lg);
  padding: 3rem 2rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255,255,255,0.2);
}

.cta-card h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 2rem;
  text-align: center;
}

.cta-product-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-product-image img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius-lg);
/*  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2); */
  transition: var(--transition);
}

.cta-product-image img:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.3);
}

.price-display {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.original-price {
  font-size: 1.5rem;
  text-decoration: line-through;
  color: rgba(255,255,255,0.7);
}

.current-price {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--warning-color);
}

.zavings {
  background: var(--danger-color);
  color: var(--white);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.875rem;
}

.countdown-timer {
  text-align: center;
  margin-bottom: 2rem;
}

.countdown-text {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Testimonials Section */
.testimonials-section {
  padding: 5rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.05);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.testimonial-rating {
  display: flex;
  justify-content: center;
  gap: 0.25rem;
  margin-bottom: 1rem;
  color: var(--warning-color);
}

.testimonial-text {
  font-style: italic;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  color: var(--secondary-color);
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  justify-content: center;
  flex-direction: column;
}

.country-flag {
  width: 30px;
  height: 20px;
  border-radius: 3px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.author-info strong {
  display: block;
  color: var(--dark-color);
  font-weight: 700;
}

.author-info span {
  color: var(--secondary-color);
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background: var(--dark-color);
  color: var(--white);
  padding: 4rem 0 2rem;
}

.footer-brand {
  text-align: center;
  margin-bottom: 2rem;
}

.footer-brand h5 {
  font-size: 1.5rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.7);
}

.footer-icon {
/*  width: 40px; */
  height: 26px;
/*  border-radius: 3px; */
  margin-bottom: 5px;
/*  box-shadow: 0 2px 4px rgba(0,0,0,0.3); */
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: var(--transition);
  font-weight: 500;
  font-size: 0.95rem;
}

.footer-links a:hover {
  color: var(--white);
  padding-left: 5px;
}

.footer h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: var(--white);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.contact-info p {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
}

.contact-info i {
  color: var(--primary-color);
  width: 20px;
  text-align: center;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 3rem;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  color: rgba(255,255,255,0.7);
  font-size: 13px;
}

.footer-bottom a {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
}

.footer-bottom a:hover {
  text-decoration: underline;
}

.creator {
  font-size: 0.85rem !important;
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer h5 {
    font-size: 18px;
    margin-bottom: 1rem;
  }

  .footer-brand {
    margin-bottom: 1.5rem;
  }

  .footer-brand h5 {
    font-size: 1.3rem;
  }

  .footer-links li {
    margin-bottom: 0.5rem;
  }

  .contact-info p {
  /*  font-size: 0.9rem; */
    font-size: 14px;
    gap: 0.5rem;
    text-align: left;
  }

  .footer-bottom {
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

}
/* Buttons */
.btn {
  border-radius: 50px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
  color: var(--white);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-dark) 0%, #004085 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-success {
  background: linear-gradient(135deg, var(--success-color) 0%, #1e7e34 100%);
  color: var(--white);
}

.btn-success:hover {
  background: linear-gradient(135deg, #1e7e34 0%, #155724 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline-light {
  border: 2px solid rgba(255,255,255,0.8);
  color: var(--white);
  background: transparent;
}

.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary-color);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .ingredients-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }

  .feature-item {
    width: 33.33%;
    flex-direction: column;
    text-align: center;
    gap: 0;
  }

  .feature-item-2 {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-section {
   /* min-height: auto; */
    padding: 29rem 0;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .hero-buttons .btn {
    width: 100%;
    max-width: 300px;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .section-subtitle {
    font-size: 1rem;
  }

  .stats-section {
    padding: 3rem 0;
  }

  .stat-card {
    padding: 1.5rem 1rem;
  }

  .ingredients-grid,
  .testimonials-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
  }

  .navbar-actions {
    margin-top: 1rem;
  }

  .floating-elements {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 2rem;
    gap: 0.5rem;
  }

  .floating-badge {
    font-size: 0.75rem;
    padding: 0.5rem 1rem;
  }
}

@media (max-width: 576px) {
  .hero-title {
    font-size: 1.75rem;
  }

  .hero-badge .badge {
    font-size: 0.75rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .ingredients-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  .benefit-card,
  .stat-card {
    padding: 1.5rem 1rem;
  }

  .benefit-icon,
  .stat-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }

  .stat-number {
    font-size: 2rem;
  }

  .price-display {
    flex-direction: column;
    gap: 0.5rem;
  }

  .cta-card {
    padding: 2rem 1.5rem;
  }

  .cta-card h3 {
    font-size: 1.5rem;
  }

  .current-price {
    font-size: 2rem;
  }

  .footer {
    padding: 3rem 0 1.5rem;
  }

  .footer-brand h5 {
    font-size: 18px;
  }

.col2-q {
    flex: 0 0 auto;
    width: 45% !important;
}

.col2-c {
    flex: 0 0 auto;
    width: 50% !important;
    padding: 0 0 0 15px !important;
}


.ff {
    flex-wrap: wrap;
    display: flex;
    text-align: center;
    justify-content: space-around;
}

#ffh5 {
    text-align: center;
}

#ff {
    width: 50% !important;

}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Smooth Scrolling */
html {
  scroll-behavior: smooth;
}

/* Focus States */
.btn:focus,
.navbar-toggler:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(0, 123, 255, 0.25);
}

/* Testimonials Carousel */
.carousel {
  position: relative;
}

.carousel-indicators {
  bottom: -50px;
}

.carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--secondary-color);
  border: none;
  margin: 0 5px;
  transition: var(--transition);
}

.carousel-indicators .active {
  background-color: var(--primary-color);
  transform: scale(1.2);
}

.carousel-control-prev,
.carousel-control-next {
  width: 5%;
  opacity: 0.8;
  transition: var(--transition);
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
  opacity: 1;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  width: 20px;
  height: 20px;
  background-color: var(--primary-color);
  border-radius: 50%;
  padding: 8px;
}
}

/* Footer */
footer {
  background: #343a40;
  color: #fff;
  padding: 3rem 0 1rem;
}

footer a {
  color: #adb5bd;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
}

header {
  background: #007bff;
  color: #fff;
  padding: 14px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

nav {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}




.logo {
  font-size: 1.5em;
  font-weight: 900;
  text-decoration: none;
  color: #fff;
}

.za-icon {
  width: 32px;
  height: 20px;
  font-size: 14px;
  vertical-align: middle;
  border: 1px solid #fff;
  border-radius: 4px;
  box-shadow: 0 0 4px rgba(0,0,0,0.2);
}


/* Add pulsing animation */
/* Add pulsing animation *//* Phone Number CTA */

.nav-phone {
  font-weight: bold;
  color: #fff;
  background: #920022;
  padding: 6px 12px;
  border-radius: 6px;
  margin: 20px 20px;
  text-decoration: none;
  transition: background 0.3s;
  white-space: nowrap;
}

.nav-phone:hover {
  color: #b8002f;
  background: #fff;
}

/* Phone Icon Signal Effect */
.nav-phone .icon {
  position: relative;
  display: inline-block;
  font-size: 20px;
}

.nav-phone .icon::before,
.nav-phone .icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  border: 2px solid #fff;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0.5);
  opacity: 0;
  animation: ringSignal 2s infinite;
}

.nav-phone .icon::after {
  animation-delay: 1s; /* second wave */
}

@keyframes ringSignal {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.8;
  }
  100% {
    transform: translate(-50%, -50%) scale(2.2);
    opacity: 0;
  }
}

.col-lg-3.col-md-6.col-12 
           {
    padding: 0 0 0 15px;
           }
/*
#ffh5 {
    text-align: center;
}
*/
#ff {
    width: 50% !important;
    text-align: left;

}

/*


.col2-c {
    padding: 0 0 0 50px;
}

.fmc {
    width: 26%;
    }
*/

.col2-q {
    width: 20%;
    text-align: left;
}

.col2-c {
    width: 26%;
    padding: 0 0 0 50px;
}

.ff {
    flex-wrap: wrap;
    display: flex;
    text-align: center;
    justify-content: space-around;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  padding: 12px;
  border-radius: 6px;
  font-weight: 600;
  margin: 0 12px;
  transition: color 0.3s;
  border-bottom: 1px solid rgb(184 0 47 / 24%);

}

.nav-links a:hover {
  color: #b8002f;
  background: #fff;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}


/* Default desktop styles */
.nav-links {
  display: flex;
/*  gap: 1.5rem; */
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  transition: 0.3s;
}

/* Mobile styles */
@media (max-width: 768px) {
  .nav-links {
    display: none; /* hidden by default */
    position: absolute;
    top: 60px;
    right: 20px;
    flex-direction: column;
    background: #ffffffdb; /* Slightly transparent */
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 4px 8px rgba(0,0,0,0.15);
  }

  .nav-links a {
    color: rgb(184, 0, 47);
  }

  .nav-links.active {
    display: flex; /* show on toggle */
  }

  .hamburger {
    display: flex;
  }

  /* Animate hamburger to X */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }
}

p {
  line-height: 1.4;
}

.hero {
  position: relative;
  background: url('img/bg.png') center/cover no-repeat;
/*  padding: 80px 0; */
  color: #fff;
}

.hero-overlay {
  background: rgba(184, 0, 47, 0.4); /* Light red overlay */
  padding: 60px 20px;
}

.hero-content {
  display: flex;
  max-width: 1100px;
  margin: 0 auto;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.hero-left {
  flex: 1;
}

.hero-left h1 {
  font-size: 2.5em;
  margin-bottom: 0.3em;
  font-weight: 900;
}

.hero-left h2 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
  font-weight: 700;
}

.hero-left p {
  font-size: 1.1em;
  margin-bottom: 1.5em;
  line-height: 1.6;
}

.hero-btn {
  background: #007bff;
  color: #fff;
  font-size: 1.2em;
  border: none;
  padding: 14px 36px;
  border-radius: 30px;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.3s;
}
.hero-btn:hover {
  background: #0056b3;
}



.hero-right {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-img {
  width: 500px;
  
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
  object-fit: cover;
  background: url('img/za-flag.png') center/cover no-repeat;

}

@media (max-width: 900px) {
  .hero-content {
    flex-direction: column;
    text-align: center;
  }
  .hero-left {
    order: 2;
  }
  .hero-right {
    order: 1;
  }

  p{
    font-size: 14px;
    text-align: center;

  }

  .hero-btn {
    font-size: 13px;
    padding: 12px;
  }
  
}

@media (max-width: 600px) {
  .hero-left h1 {
    font-size: 34px;
    margin: -40px 0 -10px 0;
    font-weight: 900;
}
.hero-left h2 {
    font-size: 18px;
    margin-bottom: 0.5em;
    font-weight: 700;
}

.hero-left p {
    font-size: 13px;
    margin-bottom: 1.5em;
    line-height: 1.6;
}

  .hero-img { height: 250px; border-radius: 0px; width: 360px; margin: -60px 0 0 0;}
  .product-img { width: 100%; max-width: 220px; }
}



/* Badges Section */
.badges {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin: 30px 0;
}
.badge {
  background: #fff;
  border: 2px solid #007bff;
  color: #007bff;
  border-radius: 25px;
  padding: 8px 24px;
  font-weight: 700;
}

@media screen and (max-width: 600px) {
 .badges { /*flex-direction: column;*/ gap: 5px; }
  
  .badge {
    background: rgb(255, 255, 255);
    border: 2px solid rgb(184, 0, 47);
    color: rgb(184, 0, 47);
    border-radius: 25px;
    padding: 3px 16px;
    font-weight: 700;
    text-align: center;
    width: 77px;
    font-size: 13px;
}
  
}

.promo {
  background: #e7f3ff;
  color: #007bff;
  text-align: center;
  padding: 18px 0;
  margin: -45px 0 0 0;
  font-weight: bold;
}
.old-price {
  text-decoration: line-through;
}
.new-price {
  font-size: 1.3em;
}


/* Countdown timer - horizontal, centered */
.deal-timer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;   /* allow wrapping but keep row */
  margin: 0 auto;
  padding: 6px 0;
}

/* Time box */
.time-box {
  background: #fff;
  color: #007bff;
  border-radius: 10px;
  padding: 8px 10px;
  width: 70px;              /* fixed width keeps them aligned */
  text-align: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Numbers */
.time-value {
  font-size: 1.2rem;
  font-weight: 700;
  color: #b8002f;
}

/* Labels */
.time-label {
  font-size: 0.75rem;
  color: #555;
  margin-top: 4px;
  text-transform: uppercase;
}

/* Mobile adjustments */
@media (max-width: 520px) {
  .deal-timer {
    gap: 6px;
  }
  .time-box {
    width: 60px;   /* slightly smaller */
    padding: 6px;
  }
  .time-value {
    font-size: 1rem;
  }
  .time-label {
    font-size: 0.7rem;
  }
}

/* Only for ultra-small screens */
@media (max-width: 340px) {
  .deal-timer {
    flex-direction: column;
  }
  .time-box {
    width: 100%;
  }
}

.section {
  max-width: 900px;
  margin: 40px auto;
  padding: 0 18px;
}
.section h2 {
  color: #b8002f;
  text-align: center;
}

.section h3 {
  color: #b8002f;
}
.product-showcase {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-top: 18px;
  margin-bottom: 18px;
}
.product-img {
  width: 320px;
  border-radius: 16px;
  display: block;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

@media (max-width: 900px) {

  .product-showcase { flex-direction: column; gap: 18px; }
  .product-img { width: 100%; max-width: 320px; }

.section h2 {
  text-align: center;
  width: 326px;
  font-size: 20px;
  margin-bottom: 20px;
}

.section h3 {
  text-align: center;
  font-size: 15px;
  margin-bottom: -10px;
}

}



.intro-text {
  text-align: center;
  margin: 0 auto 30px;
  color: #444;
}


/* Ingredients Grid */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
/*  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); */
  gap: 30px;
  margin-top: 20px;
}
.ingredient {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 20px 5px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 2px 10px rgb(139 35 35 / 55%);
}

.ingredient:hover {
  transform: translateY(-5px);
}
.ingredient img {
  width: 60px;
  max-width: 120px;
  margin-bottom: 12px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

#ingredients h2 {
  text-align: center;
  margin: 20px 0 2px 0;
}

.ingredient h3 {
  color: #b8002f;
  margin: 0 0 -4px 0;
}


/* Tablet view (2 per row) */
@media (max-width: 992px) {
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

/* Mobile view (1 per row) */
@media (max-width: 600px) {
  /* .ingredients-grid {
    grid-template-columns: 1fr;
  } */
}




/* Benefits Grid */

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.benefits {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 14px;
  padding: 20px 5px;
  text-align: center;
  transition: transform 0.3s;
  box-shadow: 0 2px 10px rgb(139 35 35 / 55%);
}

.benefits:hover {
  transform: translateY(-5px);
}

.benefits span {
  font-size: 40px;
  margin-bottom: 12px;
}
#benefits h2 {
  text-align: center;
  margin: 20px 0 2px 0;

}

.benefits h3 {
  color: #b8002f;
  margin: 0 0 -4px 0;
}

/* Tablet view (2 per row) */
@media (max-width: 992px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }


}

/* Mobile view (1 per row) */
@media (max-width: 600px) {
  /* .benefits-grid {
    grid-template-columns: 1fr;
  } */
}


/* Call to Action */
.cta {
  text-align: center;
  margin: 30px 0;
}
.cta button {
  background: #dc3545;
  color: #fff;
  font-size: 1.3em;
  border: none;
  padding: 15px 40px;
  border-radius: 32px;
  cursor: pointer;
  font-weight: 700;
  transition: background 0.3s;
}
.cta button:hover {
  background: #b8002f;
}

.contact {
  background: #007bff;
  color: #fff;
  padding: 26px 0 1px 0;
  text-align: center;
}
.contact a {
  color: #fff;
  text-decoration: underline;
}

.creator {
  font-size: 10px !important;
  color: #fff;
  margin-top: 10px;
}

.creator a {
  color: #fff;
  font-weight: bold;
  text-decoration: none;
}

@media (max-width: 900px) {
  .cta button { font-size: 18px; padding: 12px 30px; line-height: 1.4;  }
  .contact {font-size: 15px; line-height: 1.4;}
}
@media (max-width: 600px) {
/*  nav { flex-direction: column; }  */
  .product-img { width: 100%; max-width: 220px; }
}

#how-to-use h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #b8002f;
  font-size: 30px;
}

#how-to-use h3 {
  color: #b8002f;
}

.how-to-use-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-top: 20px;
}

.step {
  text-align: center;
  padding: 5px;
  border-radius : 14px;
  transition: transform 0.3s;
  box-shadow: 0 2px 10px rgb(139 35 35 / 55%);
}

.step:hover {
  transform: translateY(-5px);
}

.step img {
  width: 70px;
  height: 70px;
  margin-bottom: 12px;
}

/*
#uzage-storage {
  text-align: center;
  padding: 50px 20px;
  background: #fff5f5;
  border-radius: 12px;
  margin-top: 40px;
}

#uzage-storage h2 {
  font-size: 2rem;
  margin-bottom: 20px;
}
*/

.storage-guidelines {
  margin: 20px auto;
  max-width: 600px;
  text-align: left;
}

.storage-guidelines ul {
  list-style: none;
  padding: 0;
}

.storage-guidelines li {
  margin: 8px 0;
  padding-left: 20px;
  position: relative;
}

.storage-guidelines li::before {
  content: "✔️";
  position: absolute;
  left: 0;
}

.note {
  margin-top: 20px;
  font-style: italic;
  text-align: center;
}

/* Responsive */
@media (max-width: 992px) {
  .how-to-use-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

@media (max-width: 600px) {
  /* .how-to-use-grid {
    grid-template-columns: 1fr;
  } */
}



/* Testimonials Section */

.testimonial-slider {
  display: flex;
  gap: 20px;
  overflow: hidden;
  scroll-behavior: smooth;
  justify-content: center;
}

.testimonial-card {
  flex: 0 0 50%;
  max-width: 100%;
  margin: 10px 0;
  background: #fff;
  border-radius: 15px;
  padding: 20px;
/*  box-shadow: 0 4px 12px rgba(0,0,0,0.1); */
  transition: transform 0.3s ease;
  text-align: center;
  box-shadow: 0 2px 10px rgb(139 35 35 / 55%);
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 15px;
}

.testimonial-card p {
/*  font-size: 1rem; */
  color: #444;
  line-height: 1.4;
  margin-bottom: 10px;
}

.testimonial-card strong {
  color: #b8002f;
  font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 900px) {
  .testimonial-card { 
         flex: 0 0 50%;  /* Show 2 at once */
         padding: 10px;
          }
  
}

@media (min-width: 1024px) {
 .testimonial-card { flex: 0 0 25%; /*show 3 at once*/
 }
}
/* Mobile Navigation */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #007bff;
    padding: 10px 0;
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex !important;
    flex-direction: column;
    cursor: pointer;
  }

  .hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
  }
}