/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #000000;
  overflow-x: hidden;
}

/* Typography */
.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #198754;
}

.section-subtitle {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 2rem;
}

.section-description {
  font-size: 1.1rem;
  color: #000000;
  line-height: 1.8;
}

/* Header Styles */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.navbar-brand {
  font-size: 1.8rem;
  font-weight: 700;
  color: #198754 !important;
}

.navbar-brand img {
  height: 80px;
  width: auto;
  margin-right: 10px;
}

.logo-img {
  height: 50px;
  width: auto;
  margin-right: 10px;
}

.footer-logo {
  height: 150px;
  width: auto;
  margin-right: 10px;
  margin-bottom: 5px;
}

.navbar-nav .nav-link {
  font-weight: 500;
  color: #000000 !important;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
  color: #198754 !important;
}

/* Hero Banner */
.hero-banner {
  background: linear-gradient(135deg, #198754 0%, #000000 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #198754;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.hero-subtitle {
  font-size: 2.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.hero-description {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-buttons {
  margin-top: 2rem;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Product Cards */
.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.product-image {
  height: 450px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

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

.product-info {
  padding: 1.5rem;
}

.product-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #198754;
  margin-bottom: 1rem;
}

.product-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #198754;
  margin-bottom: 0.5rem;
}

.price-note {
  font-size: 0.9rem;
  font-weight: 400;
  color: #000000;
}

.product-expiry {
  font-size: 0.9rem;
  color: #000000;
  margin-bottom: 1rem;
}

/* Statistics Section */
.stat-item {
  text-align: center;
  padding: 2rem 1rem;
}

.stat-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.stat-label {
  font-size: 1.2rem;
  font-weight: 500;
  color: #000000;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Features Section */
.feature-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 500;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  padding: 2rem;
}

.feature-badge {
  background: linear-gradient(135deg, #198754 0%, #000000 100%);
  color: white;
  padding: 2rem 1rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.feature-badge-icon {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-badge-text {
  font-size: 1.1rem;
  font-weight: 500;
}

/* Process Steps */
.process-step {
  text-align: center;
  padding: 1.5rem 1rem;
}

.process-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #198754 0%, #000000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 2rem;
}

.process-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #198754;
  margin-bottom: 0;
}

/* Benefits Section */
.benefit-card {
  background: white;
  padding: 2rem 1.5rem;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  height: 100%;
}

.benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #198754 0%, #000000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 2rem;
}

.benefit-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #198754;
  margin-bottom: 1rem;
}

.benefit-description {
  color: #000000;
  line-height: 1.6;
}

/* Myths and Facts */
.myth-fact-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
}

.myth-fact-card.myth {
  border-left: 5px solid #000000;
}

.myth-fact-card.fact {
  border-left: 5px solid #198754;
}

.myth-fact-title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.myth-fact-card.myth .myth-fact-title {
  color: #000000;
}

.myth-fact-card.fact .myth-fact-title {
  color: #198754;
}

.myth-fact-list {
  list-style: none;
  padding: 0;
}

.myth-fact-list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid #000000;
  position: relative;
  padding-left: 2rem;
}

.myth-fact-list li:last-child {
  border-bottom: none;
}

.myth-fact-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #198754;
  font-weight: bold;
}

.myth-fact-card.myth .myth-fact-list li::before {
  content: '✗';
  color: #000000;
}

/* Reviews Section */
.rating-summary {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 3rem;
  display: inline-block;
}

.rating-stars {
  color: #198754;
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.rating-score {
  font-size: 2.5rem;
  font-weight: 700;
  color: #198754;
  margin-bottom: 0.5rem;
}

.rating-text {
  font-size: 1.1rem;
  color: #000000;
  margin-bottom: 0.5rem;
}

.rating-source {
  font-size: 0.9rem;
  color: #ffffff;
}

.review-card {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.review-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 1rem;
}

.reviewer-name {
  font-weight: 600;
  color: #198754;
  margin-bottom: 0.25rem;
}

.review-rating {
  color: #198754;
  font-size: 0.9rem;
}

.review-date {
  font-size: 0.9rem;
  color: #000000;
}

.review-text {
  color: #000000;
  line-height: 1.6;
  font-style: italic;
}

/* Footer */
.footer {
  background: #000000 !important;
}

.footer-title {
  font-size: 1.8rem;
  font-weight: 700;
  color: #198754;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
}

.footer-description {
  color: #ffffff;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.footer-heading {
  font-size: 1.2rem;
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
}

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

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

.footer-links a {
  color: #ffffff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #198754;
}

.contact-info {
  color: #ffffff;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
}

.contact-item i {
  color: #198754;
  width: 20px;
}

.outlet-info {
  color: #ffffff;
}

.outlet-item {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
}

.footer-divider {
  border-color: #ffffff;
  margin: 2rem 0 1rem;
}

.footer-copyright {
  color: #ffffff;
  margin: 0;
}

.footer-credit {
  color: #ffffff;
  margin: 0;
  font-size: 0.9rem;
}

/* Social Links */
.social-links {
  margin-bottom: 1rem;
}

.social-item {
  margin-bottom: 0.75rem;
}

.social-link {
  color: #ffffff;
  text-decoration: none;
  display: flex;
  align-items: center;
  padding: 0.5rem 0;
  transition: all 0.3s ease;
  font-size: 0.95rem;
}

.social-link:hover {
  color: #FFC107;
  text-decoration: none;
  transform: translateX(5px);
}

.social-link i {
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

/* Contact Section */
.contact-section {
  border-top: 1px solid #ffffff;
  padding-top: 1rem;
}

.contact-section .footer-heading {
  color: #FFC107;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

.contact-section .footer-description {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #198754;
  color: white;
  padding: 15px 20px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  z-index: 1000;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  white-space: nowrap;
}

.whatsapp-float:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: white;
  text-decoration: none;
}

.whatsapp-float i {
  font-size: 1.2rem;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: #198754;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.back-to-top:hover {
  background: #000000;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.back-to-top.show {
  display: flex;
}

/* Utility Classes */
.min-vh-75 {
  min-height: 75vh;
}

.text-primary {
  color: #FFC107 !important;
}

.bg-primary {
  background-color: #FFC107 !important;
}

/* Bootstrap Primary Color Overrides */
.btn-primary {
  background-color: #FFC107 !important;
  border-color: #FFC107 !important;
  color: #000000 !important;
}

.btn-primary:hover {
  background-color: #e0a800 !important;
  border-color: #d39e00 !important;
  color: #000000 !important;
}

.btn-primary:focus {
  background-color: #e0a800 !important;
  border-color: #d39e00 !important;
  color: #000000 !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5) !important;
}

.btn-outline-primary {
  color: #FFC107 !important;
  border-color: #FFC107 !important;
}

.btn-outline-primary:hover {
  background-color: #FFC107 !important;
  border-color: #FFC107 !important;
  color: #000000 !important;
}

.btn-outline-primary:focus {
  background-color: #FFC107 !important;
  border-color: #FFC107 !important;
  color: #000000 !important;
  box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5) !important;
}

/* Additional Bootstrap Color Overrides */
:root {
  --bs-primary: #FFC107 !important;
  --bs-primary-rgb: 255, 193, 7 !important;
}

.bg-primary {
  background-color: #FFC107 !important;
}

.text-primary {
  color: #FFC107 !important;
}

.border-primary {
  border-color: #FFC107 !important;
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Animation classes */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Loading animation */
.loading {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

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

::-webkit-scrollbar-track {
  background: #ffffff;
}

::-webkit-scrollbar-thumb {
  background: #198754;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #000000;
}

/* Gallery Section */
.gallery-item {
  transition: transform 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-5px);
}

.gallery-item img {
  transition: transform 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.05);
}

/* Video Spotlight Section */
.video-gallery-container {
  position: relative;
  overflow: hidden;
}

.video-gallery {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  padding: 1rem 0;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.video-gallery::-webkit-scrollbar {
  display: none;
}

.video-item {
  flex: 0 0 280px;
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-thumbnail {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.video-thumbnail img,
.video-element {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-item:hover .video-thumbnail img,
.video-item:hover .video-element {
  transform: scale(1.05);
}

.video-element {
  display: block;
  background: #000000;
}

.fallback-image {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  display: none;
}

.video-element:not([src]) + .fallback-image {
  display: block;
}

.video-element[poster] {
  background-image: attr(poster);
  background-size: cover;
  background-position: center;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
  transition: opacity 0.3s ease;
  z-index: 2;
}

.video-item:hover .video-overlay {
  opacity: 0.8;
}

.video-item.playing .video-overlay {
  opacity: 0;
}

.play-button {
  width: 60px;
  height: 60px;
  background: #FFC107;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.play-button:hover {
  background: #e0a800;
  transform: scale(1.1);
}

.video-duration {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 500;
}

.video-title {
  padding: 1rem;
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #000000;
  text-align: center;
}

.video-scroll-indicator {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
}

.scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #000000;
  opacity: 0.3;
  transition: all 0.3s ease;
  cursor: pointer;
}

.scroll-dot.active {
  opacity: 1;
  background: #FFC107;
}

.scroll-dot:hover {
  opacity: 0.7;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .hero-subtitle {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 2.2rem;
  }
  
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (max-width: 992px) {
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-subtitle {
    font-size: 1.8rem;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .hero-description {
    font-size: 1.1rem;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .process-step {
    margin-bottom: 2rem;
  }
  
  .stat-number {
    font-size: 3rem;
  }
  
  .feature-badge {
    padding: 1.5rem 1rem;
  }
  
  .feature-badge-icon {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .hero-banner {
    min-height: 80vh;
    text-align: center;
    padding: 2rem 0;
  }
  
  .hero-title {
    font-size: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  
  .hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  
  .hero-description {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    margin-top: 1.5rem;
  }
  
  .hero-buttons .btn {
    display: block;
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.75rem 1.5rem;
  }
  
  .hero-buttons .btn:last-child {
    margin-bottom: 0;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .section-description {
    font-size: 1rem;
  }
  
  .product-card {
    margin-bottom: 2rem;
  }
  
  .product-title {
    font-size: 1.1rem;
  }
  
  .product-price {
    font-size: 1.5rem;
  }
  
  .stat-item {
    padding: 1.5rem 1rem;
    margin-bottom: 1rem;
  }
  
  .stat-number {
    font-size: 2.5rem;
  }
  
  .stat-label {
    font-size: 1rem;
  }
  
  .feature-item {
    font-size: 1rem;
    padding: 0.5rem 0;
  }
  
  .process-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .process-title {
    font-size: 1rem;
  }
  
  .benefit-card {
    padding: 1.5rem 1rem;
    margin-bottom: 1.5rem;
  }
  
  .benefit-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
  
  .benefit-title {
    font-size: 1.1rem;
  }
  
  .myth-fact-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .myth-fact-title {
    font-size: 1.3rem;
  }
  
  .rating-summary {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .rating-score {
    font-size: 2rem;
  }
  
  .review-card {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .review-header {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .review-date {
    margin-top: 0.5rem;
  }
  
  .footer {
    text-align: center;
  }
  
  .footer .col-lg-2,
  .footer .col-lg-3,
  .footer .col-lg-4 {
    margin-bottom: 2rem;
  }
  
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    padding: 12px 16px;
    font-size: 0.8rem;
  }
  
  .back-to-top {
    bottom: 80px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  /* Gallery responsive */
  .gallery-item {
    margin-bottom: 1rem;
  }
  
  /* Video section responsive */
  .video-item {
    flex: 0 0 250px;
  }
  
  .video-thumbnail {
    height: 180px;
  }
  
  .play-button {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
}

@media (max-width: 576px) {
  .navbar-brand {
    font-size: 1.5rem;
  }
  
  .logo-img {
    height: 40px;
  }
  
  .footer-logo {
    height: 30px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1.3rem;
  }
  
  .hero-description {
    font-size: 0.95rem;
  }
  
  .section-title {
    font-size: 1.6rem;
  }
  
  .product-info {
    padding: 1rem;
  }
  
  .product-title {
    font-size: 1rem;
  }
  
  .product-price {
    font-size: 1.3rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .stat-label {
    font-size: 0.9rem;
  }
  
  .feature-badge {
    padding: 1rem;
  }
  
  .feature-badge-icon {
    font-size: 1.8rem;
  }
  
  .feature-badge-text {
    font-size: 1rem;
  }
  
  .process-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .process-title {
    font-size: 0.9rem;
  }
  
  .benefit-card {
    padding: 1rem;
  }
  
  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .benefit-title {
    font-size: 1rem;
  }
  
  .myth-fact-card {
    padding: 1rem;
  }
  
  .myth-fact-title {
    font-size: 1.2rem;
  }
  
  .rating-summary {
    padding: 1rem;
  }
  
  .rating-score {
    font-size: 1.8rem;
  }
  
  .review-card {
    padding: 1rem;
  }
  
  .whatsapp-float {
    padding: 10px 14px;
    font-size: 0.75rem;
  }
  
  .back-to-top {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .logo-img {
    height: 35px;
  }
  
  .footer-logo {
    height: 25px;
  }
  
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }
  
  .hero-subtitle {
    font-size: 1.2rem;
  }
  
  .section-title {
    font-size: 1.4rem;
  }
  
  .product-image {
    height: 500px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .feature-badge-icon {
    font-size: 1.6rem;
  }
  
  .process-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .benefit-icon {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .rating-score {
    font-size: 1.6rem;
  }
  
  .whatsapp-float {
    bottom: 15px;
    right: 15px;
    padding: 10px 14px;
    font-size: 0.75rem;
  }
  
  .whatsapp-float i {
    font-size: 1rem;
  }
  
  .back-to-top {
    bottom: 70px;
    right: 15px;
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
  }
  
  /* Ensure buttons are full width on mobile */
  .btn {
    width: 100% !important;
    margin-bottom: 0.5rem;
  }
  
  .btn:last-child {
    margin-bottom: 0;
  }
  
  /* Video section mobile responsive */
  .video-item {
    flex: 0 0 220px;
  }
  
  .video-thumbnail {
    height: 160px;
  }
  
  .play-button {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  
  .video-title {
    padding: 0.75rem;
    font-size: 0.9rem;
  }
}

/* Product Detail Page Styles */
.product-detail-image img {
  max-width: 100%;
  height: auto;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-detail-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #198754;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.product-detail-subtitle {
  font-size: 1.2rem;
  color: #000000;
  margin-bottom: 2rem;
}

.product-price-section {
  background: #ffffff;
  padding: 2rem;
  border-radius: 15px;
  margin-bottom: 2rem;
  border-left: 5px solid #198754;
}

.product-price-main {
  font-size: 3rem;
  font-weight: 700;
  color: #198754;
  margin-bottom: 0.5rem;
}

.product-price-note {
  font-size: 1rem;
  color: #000000;
  margin-bottom: 1rem;
}

.product-expiry {
  font-size: 1rem;
  color: #000000;
  font-weight: 500;
}

.product-features {
  margin-bottom: 2rem;
}

.product-features h5 {
  color: #198754;
  font-weight: 600;
  margin-bottom: 1rem;
}

.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 0.5rem 0;
  font-size: 1.1rem;
  color: #000000;
}

.quantity-selection {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.quantity-selection h5 {
  color: #198754;
  font-weight: 600;
  margin-bottom: 1rem;
}

.quantity-controls {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.quantity-input {
  width: 80px;
  text-align: center;
  font-size: 1.2rem;
  font-weight: 600;
  border: 2px solid #198754;
  border-radius: 8px;
}

.total-price {
  font-size: 1.5rem;
  color: #198754;
  padding: 1rem;
  background: linear-gradient(135deg, #198754 0%, #000000 100%);
  color: white;
  border-radius: 10px;
  text-align: center;
}

.order-section {
  background: white;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-item {
  padding: 2rem 1rem;
  background: white;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  height: 100%;
  transition: all 0.3s ease;
}

.benefit-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.benefit-item .benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #198754 0%, #000000 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: white;
  font-size: 1.5rem;
}

.benefit-item h5 {
  color: #198754;
  font-weight: 600;
  margin-bottom: 1rem;
}

.benefit-item p {
  color: #000000;
  line-height: 1.6;
}

/* Responsive adjustments for product detail pages */
@media (max-width: 768px) {
  .product-detail-title {
    font-size: 2rem;
  }
  
  .product-detail-image {
    margin-bottom: 2rem;
  }
  
  .product-detail-image img {
    width: 100%;
    height: auto;
  }
  
  .product-price-main {
    font-size: 2.5rem;
  }
  
  .quantity-controls {
    justify-content: center;
  }
  
  .total-price {
    font-size: 1.3rem;
  }
  
  .product-price-section {
    padding: 1.5rem;
  }
  
  .quantity-selection {
    padding: 1.5rem;
  }
  
  .order-section {
    padding: 1.5rem;
  }
}

@media (max-width: 576px) {
  .product-detail-title {
    font-size: 1.6rem;
  }
  
  .product-price-main {
    font-size: 2rem;
  }
  
  .product-price-section {
    padding: 1rem;
  }
  
  .quantity-selection {
    padding: 1rem;
  }
  
  .order-section {
    padding: 1rem;
  }
}
