/* Beautiful Onam-Themed Professional Variables */
:root {
  --primary: #ff6b35;
  --primary-dark: #e55a2b;
  --primary-light: #ff8c66;
  --secondary: #2d5016;
  --secondary-light: #4a7c59;
  --accent: #ffd700;
  --accent-light: #fff3cd;
  --dark: #1a3409;
  --dark-medium: #2d5016;
  --light: #fefdf8;
  --white: #ffffff;
  --border: #e8e5d3;
  --border-light: #f0ede0;
  --text-primary: #1a3409;
  --text-secondary: #4a7c59;
  --text-muted: #6b8e23;
  --success: #228b22;
  --warning: #ff8c00;
  --danger: #dc3545;
  --onam-gold: #ffd700;
  --onam-green: #228b22;
  --onam-cream: #fff8dc;
  --shadow-light: 0 2px 8px rgba(42, 80, 22, 0.08);
  --shadow-medium: 0 4px 16px rgba(42, 80, 22, 0.12);
  --shadow-heavy: 0 8px 24px rgba(42, 80, 22, 0.16);
  --border-radius: 12px;
  --border-radius-large: 16px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --max-width: 1200px;
}

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

/* Prevent horizontal overflow */
html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
  background: linear-gradient(135deg, var(--light) 0%, var(--onam-cream) 100%);
  line-height: 1.6;
  font-size: 15px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Container */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header Styles */
.header {
  background: var(--secondary);
  box-shadow: var(--shadow-medium);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.navbar {
  padding: 1rem 0;
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h1 {
  color: var(--white);
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}

.nav-logo span {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 400;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-link {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
  padding: 0.5rem 1rem;
  border-radius: 8px;
}

.nav-link:hover {
  color: var(--accent);
  background: rgba(255, 255, 255, 0.1);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-icon {
  position: relative;
  display: flex !important;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  background: var(--primary);
  color: white !important;
  border-radius: 20px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
  font-size: 18px;
  min-width: 50px;
  min-height: 40px;
}

.cart-icon:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.4);
  color: white !important;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #ff6b35 !important;
  color: white !important;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  box-shadow: 0 2px 6px rgba(255, 107, 53, 0.4);
  transition: transform 0.2s ease;
  z-index: 10;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 80vh;
}

/* Video Background */
.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  overflow: hidden;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 80, 22, 0.4);
  z-index: 2;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,215,0,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,215,0,0.05)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,215,0,0.05)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,215,0,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--white), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
  font-weight: 600;
}

.hero-description {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  opacity: 0.9;
}

.hero-features {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  max-width: 100%;
  overflow: hidden;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  padding: 0.75rem 1.5rem;
  border-radius: 25px;
  backdrop-filter: blur(10px);
}

.feature-icon {
  font-size: 1.2rem;
}

.feature-text {
  font-weight: 500;
}

.hero-cta {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.cta-button {
  padding: 1rem 2rem;
  border: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.cta-button.primary {
  background: var(--primary);
  color: var(--white);
}

.cta-button.primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-medium);
}

.cta-button.secondary {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}

.cta-button.secondary:hover {
  background: var(--white);
  color: var(--secondary);
}

.hero-trust {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  max-width: 100%;
  overflow: hidden;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  opacity: 0.8;
}

.trust-icon {
  font-size: 1.1rem;
}

/* Message Banner */
.message-banner {
  padding: 1rem 0;
  text-align: center;
  font-weight: 500;
}

.message-banner.success {
  background: var(--success);
  color: var(--white);
}

.message-banner.error {
  background: var(--danger);
  color: var(--white);
}

/* Section Styles */
.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 800px;
  margin: 0 auto;
}

/* Products Section */
.products-section {
  padding: 4rem 0;
  background: var(--white);
  position: relative;
}

.products-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(245, 138, 66, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(245, 199, 66, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.products-section .container {
  position: relative;
  z-index: 1;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 20px;
  padding: 20px 0;
  width: 100%;
}

.product-card {
  background: linear-gradient(145deg, var(--white) 0%, #fef9f3 100%);
  border-radius: 20px;
  border: 2px solid #d4af37;
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  position: relative;
  cursor: pointer;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, var(--primary), #2d5016);
  z-index: 1;
}

.product-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.product-card:hover {
  border-color: var(--primary);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
  transform: translateY(-8px) scale(1.02);
}

/* Media Carousel Styles */
.product-card .media-carousel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff5e6, #f0f8ff);
  min-height: 200px;
  border-radius: 20px 20px 0 0;
  width: 100%;
}

.product-card .carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease;
}

.product-card .carousel-slide {
  min-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  position: relative;
  box-sizing: border-box;
}

.product-card .carousel-slide img,
.product-card .carousel-slide video {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 15px;
}

.product-card:hover .carousel-slide img,
.product-card:hover .carousel-slide video {
  transform: scale(1.02);
}

.product-card .carousel-slide video {
  cursor: pointer;
}

/* Carousel Navigation */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

.product-card:hover .carousel-nav {
  opacity: 1;
  visibility: visible;
}

.carousel-nav:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: var(--primary);
  transform: scale(1.2);
}

/* Offer Badge */
.offer-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
  animation: pulse 2s infinite;
}

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

  50% {
    transform: scale(1.05);
  }
}

/* Play Overlay */
.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 5;
}

.carousel-slide video:not([autoplay]):not(:playing)+.play-overlay {
  opacity: 1;
  visibility: visible;
}



.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, var(--white) 0%, #fef9f3 100%);
  text-align: center;
}

.product-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}

.product-info h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: linear-gradient(90deg, #d4af37, var(--primary));
  border-radius: 1px;
}

.product-info p.description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
  text-align: center;
  min-height: auto;
}

.product-info .product-content {
  flex: 1;
}

/* Pricing Styles */
.price-container {
  margin-bottom: 20px;
  text-align: center;
}

.price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  text-align: center;
  margin-bottom: 16px;
}

.price-offer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 8px;
}

.current-price {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
}

.original-price {
  font-size: 18px;
  color: #999;
  text-decoration: line-through;
  font-weight: 500;
}

.discount-percent {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 8px rgba(40, 167, 69, 0.3);
}



.product-info button {
  background: linear-gradient(135deg, var(--primary) 0%, #1a3d0a 100%);
  color: var(--white);
  border: none;
  border-radius: 20px;
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  width: 100%;
  margin-top: auto;
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.3);
  position: relative;
  overflow: hidden;
}

.product-info button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.product-info button:hover::before {
  left: 100%;
}

.product-info button:hover {
  background: linear-gradient(135deg, #2d5016 0%, #28a745 100%);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(45, 80, 22, 0.4);
}

.product-info button:active {
  transform: translateY(0);
  box-shadow: 0 8px 24px rgba(45, 80, 22, 0.3);
}



/* Cart Popup Animation */
.cart-popup {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.5) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 99999 !important;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.cart-popup.show {
  opacity: 1 !important;
  visibility: visible !important;
}

.cart-popup-content {
  background: white;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  max-width: 400px;
  width: 90%;
  transform: scale(0.8) translateY(20px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.cart-popup.show .cart-popup-content {
  transform: scale(1) translateY(0);
}

.cart-popup-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #d4af37, var(--primary), #ff6b35);
}

.cart-popup-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  animation: bounce 0.6s ease;
}

.cart-popup-icon i {
  font-size: 36px;
  color: white;
}

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

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

.cart-popup h3 {
  font-size: 24px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
  line-height: 1.3;
}

.cart-popup p {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 25px;
}

.cart-popup-actions {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-continue,
.btn-view-cart {
  padding: 12px 24px;
  border-radius: 25px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn-continue {
  background: #f8f9fa;
  color: var(--dark);
  border: 2px solid #e9ecef;
}

.btn-continue:hover {
  background: #e9ecef;
  transform: translateY(-1px);
}

.btn-view-cart {
  background: linear-gradient(135deg, var(--primary), #1a3d0a);
  color: white;
  box-shadow: 0 4px 12px rgba(45, 80, 22, 0.3);
}

.btn-view-cart:hover {
  background: linear-gradient(135deg, #1a3d0a, var(--primary));
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(45, 80, 22, 0.4);
}

/* Error Popup */
.cart-popup.error .cart-popup-icon {
  background: linear-gradient(135deg, #dc3545, #c82333);
}

.cart-popup.error .cart-popup-content::before {
  background: linear-gradient(90deg, #dc3545, #c82333, #dc3545);
}

/* Price Disclaimer Section */
.price-disclaimer {
  background: linear-gradient(135deg, #fff9f0 0%, #f8f9fa 100%);
  border-top: 2px solid #e9ecef;
  border-bottom: 2px solid #e9ecef;
  padding: 20px 0;
  margin: 40px 0 0 0;
}

.disclaimer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.disclaimer-icon {
  background: linear-gradient(135deg, #ffc107, #ff8c00);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(255, 193, 7, 0.3);
}

.disclaimer-text {
  flex: 1;
}

.disclaimer-text p {
  margin: 0;
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.5;
}

.disclaimer-text strong {
  color: var(--dark);
  font-weight: 600;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .disclaimer-content {
    flex-direction: column;
    gap: 10px;
  }

  .disclaimer-text p {
    font-size: 13px;
  }

  .disclaimer-icon {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
}

.error-message,
.no-products {
  text-align: center;
  padding: 3rem;
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* About Section */
.about-section {
  padding: 4rem 0;
  background: var(--light);
}

/* About Content */
.about-content {
  margin-bottom: 3rem;
}

.about-text {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.about-text h3 {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.about-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 1.5rem;
}

/* Video Player Styles */
.about-video-section {
  margin: 3rem 0;
}

.video-container {
  position: relative;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.video-thumbnail {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}

.thumbnail-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.video-thumbnail:hover .thumbnail-image {
  transform: scale(1.05);
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--primary);
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.play-button:hover {
  background: var(--primary);
  color: white;
  transform: translate(-50%, -50%) scale(1.1);
}

.video-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  padding: 2rem;
  text-align: center;
}

.video-overlay h4 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.video-overlay p {
  font-size: 1rem;
  opacity: 0.9;
  margin: 0;
}

#aboutVideo {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

/* Chips Video Section */
.chips-video-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, var(--white) 0%, var(--light) 100%);
}

.chips-video-content {
  max-width: 1200px;
  margin: 0 auto;
}

/* Desktop Layout */
.chips-video-desktop {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.chips-video-mobile {
  display: none;
}

.chips-video-text h2 {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-weight: 600;
}

.chips-video-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.chips-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chips-feature {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.1rem;
  color: var(--text-primary);
}

.chips-feature .feature-icon {
  font-size: 1.5rem;
  width: 40px;
  text-align: center;
}

.chips-video-player {
  position: relative;
}

.chips-video-player .video-container {
  max-width: 500px;
  margin: 0 auto;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.chips-video-player .video-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.chips-video-player .thumbnail-image,
.chips-video-player video {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* Unmute Button for Autoplay */
.unmute-button {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 10px 15px;
  border-radius: 25px;
  font-size: 14px;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.unmute-button:hover {
  background: rgba(0, 0, 0, 0.9);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.unmute-button i {
  font-size: 16px;
}

/* Autoplay indicator */
.video-container.autoplaying::before {
  content: '🔄 Auto-playing';
  position: absolute;
  top: 15px;
  left: 15px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 12px;
  border-radius: 20px;
  font-size: 12px;
  z-index: 10;
  animation: fadeInSlide 0.5s ease-out;
  backdrop-filter: blur(5px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Fade in animation for autoplay indicator */
@keyframes fadeInSlide {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Pulse animation for unmute button */
.unmute-button {
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4);
  }

  70% {
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

/* Safari-specific video styling */
video {
  -webkit-appearance: none;
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
}

/* Enhanced play button for Safari mobile */
.play-button.safari-enhanced {
  background: rgba(255, 255, 255, 0.95) !important;
  transform: translate(-50%, -50%) scale(1.1) !important;
  animation: pulse 2s infinite !important;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4) !important;
}

/* Safari mobile specific adjustments */
@media screen and (-webkit-min-device-pixel-ratio: 2) {
  .video-container {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }

  .play-button {
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    user-select: none;
  }
}

.stats-clean-section {
  margin-top: 2rem;
}

.stats-clean-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.stat-clean-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
  transition: var(--transition);
}

.stat-clean-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
}

.stat-clean-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.stat-clean-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.stat-clean-label {
  color: var(--text-secondary);
  font-weight: 500;
}

/* Contact Section - Apple Style */
.contact-section {
  padding: 8rem 0;
  background: #f5f5f7;
  position: relative;
}

.contact-section .section-header {
  text-align: center;
  margin-bottom: 6rem;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.contact-section .section-header h2 {
  font-size: 3.5rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 1.5rem;
  letter-spacing: -0.022em;
  line-height: 1.07;
}

.contact-section .section-header p {
  font-size: 1.375rem;
  color: #86868b;
  font-weight: 400;
  line-height: 1.381;
  max-width: 700px;
  margin: 0 auto;
}

.header-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.decoration-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.decoration-icon {
  color: var(--primary);
  font-size: 1.2rem;
}

.contact-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 22px;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-item {
  background: #ffffff;
  border-radius: 18px;
  padding: 2rem;
  text-align: center;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border: 1px solid #d2d2d7;
  position: relative;
}

.contact-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: #007aff;
}

.contact-icon {
  width: 56px;
  height: 56px;
  background: #007aff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: white;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}

.contact-details h3 {
  font-size: 1.375rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
  letter-spacing: -0.022em;
  line-height: 1.27;
}

.contact-details p {
  font-size: 1.0625rem;
  color: #86868b;
  line-height: 1.47;
  margin: 0.25rem 0;
  font-weight: 400;
}

.contact-primary {
  font-weight: 600 !important;
  color: #1d1d1f !important;
}

.contact-details a {
  color: #007aff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-details a:hover {
  color: #0051d5;
}

.contact-hours {
  color: var(--secondary) !important;
  font-weight: 500;
  font-size: 0.9rem !important;
}

.contact-note {
  font-size: 0.85rem !important;
  color: #6c757d !important;
  margin-top: 0.5rem;
  font-style: italic;
}

.map-section {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #d2d2d7;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.map-section:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-color: #007aff;
}

.map-header {
  text-align: center;
  padding: 2rem 2rem 1.5rem;
}

.map-header h3 {
  font-size: 1.75rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
  letter-spacing: -0.022em;
  line-height: 1.14;
}

.map-header p {
  font-size: 1.0625rem;
  color: #86868b;
  font-weight: 400;
  line-height: 1.47;
  margin: 0;
}

.map-container {
  height: 400px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.map-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: #f5f5f7;
  border-top: 1px solid #d2d2d7;
}

.store-hours h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1d1d1f;
  margin-bottom: 0.5rem;
  letter-spacing: -0.022em;
}

.store-hours p {
  font-size: 0.9375rem;
  color: #86868b;
  margin: 0.25rem 0;
  line-height: 1.33;
}

.btn-directions {
  background: #007aff;
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  letter-spacing: -0.022em;
}

.btn-directions:hover {
  background: #0051d5;
  transform: translateY(-1px);
}

.btn-directions i {
  font-size: 1.1rem;
}



/* SEO Content */
.seo-content {
  padding: 3rem 0;
  background: var(--light);
}

.seo-text {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

.seo-text h2 {
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: 1.5rem;
}

.keywords-section {
  margin-top: 2rem;
  padding: 2rem;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-light);
}

.keywords-section h4 {
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.keywords-section p {
  line-height: 1.8;
  color: var(--text-secondary);
}

/* Footer */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 3rem 0 1rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

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

.footer-section ul li a {
  color: var(--white);
  text-decoration: none;
  transition: var(--transition);
}

.footer-section ul li a:hover {
  color: var(--accent);
}

.footer-section p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 2rem;
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.footer-bottom p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
}

.footer-credit a {
  color: var(--accent);
  text-decoration: none;
}

.footer-credit a:hover {
  text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    flex-direction: column;
    gap: 1rem;
  }

  .nav-menu {
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-subtitle {
    font-size: 1.2rem;
  }

  .hero-features {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
  }

  .feature-item {
    padding: 0.4rem 0.8rem;
    font-size: 0.8rem;
    flex: 1 1 auto;
    min-width: 0;
    justify-content: center;
  }

  .feature-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .feature-text {
    font-size: 0.8rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .hero-cta {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    margin-bottom: 2rem;
  }

  .cta-button {
    width: 100%;
    max-width: 280px;
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .hero-trust {
    gap: 0.8rem;
    margin-bottom: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .trust-item {
    font-size: 0.75rem;
    gap: 0.3rem;
    flex: 0 1 auto;
    min-width: 0;
    white-space: nowrap;
  }

  .trust-icon {
    font-size: 0.9rem;
    flex-shrink: 0;
  }

  .trust-text {
    font-size: 0.75rem;
  }

  .section-header h2 {
    font-size: 2rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stats-clean-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .stat-clean-item {
    padding: 1.5rem 1rem;
  }

  .stat-clean-number {
    font-size: 1.5rem;
  }

  .contact-section {
    padding: 4rem 0;
  }

  .contact-section .section-header h2 {
    font-size: 2.2rem;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-item {
    padding: 2rem;
  }

  .contact-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    border-radius: 12px;
  }

  .contact-details h3 {
    font-size: 1.1rem;
  }

  .header-decoration {
    margin-top: 1rem;
  }

  .decoration-line {
    width: 40px;
  }

  .map-section {
    padding: 1.5rem;
  }

  .map-container iframe {
    height: 300px;
  }

  .map-info {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }

  .btn-directions {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

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

  .hero-section {
    padding: 2rem 0;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-features {
    flex-direction: column;
    align-items: center;
  }

  .product-actions {
    flex-direction: column;
  }

  .action-buttons {
    flex-direction: column;
  }

  .btn-add-to-cart,
  .btn-view-video {
    min-width: auto;
    width: 100%;
  }

  .quick-info {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }

  .price-container {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .product-details {
    gap: 0.25rem;
  }

  .stats-clean-grid {
    grid-template-columns: 1fr;
  }
}

/* Utility Classes */
.fade-in-up {
  opacity: 1;
  transform: translateY(0);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.mb-1 {
  margin-bottom: 0.5rem;
}

.mb-2 {
  margin-bottom: 1rem;
}

.mb-3 {
  margin-bottom: 1.5rem;
}

.mb-4 {
  margin-bottom: 2rem;
}

.mt-1 {
  margin-top: 0.5rem;
}

.mt-2 {
  margin-top: 1rem;
}

.mt-3 {
  margin-top: 1.5rem;
}

.mt-4 {
  margin-top: 2rem;
}

.p-1 {
  padding: 0.5rem;
}

.p-2 {
  padding: 1rem;
}

.p-3 {
  padding: 1.5rem;
}

.p-4 {
  padding: 2rem;
}

/* Form Styles */
.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-weight: 600;
  color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 2px rgba(255, 107, 53, 0.1);
}



/* Professional Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.3;
  color: var(--text-primary);
  margin-bottom: 0.5rem;
}

h1 {
  font-size: 28px;
}

h2 {
  font-size: 24px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--primary-dark);
  text-decoration: underline;
}

/* Beautiful Onam Navigation Bar */
.navbar {
  position: sticky;
  top: 0;
  width: 100%;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark-medium) 100%);
  z-index: 1000;
  box-shadow: var(--shadow-heavy);
  border-bottom: 3px solid var(--onam-gold);
}

.nav-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  position: relative;
  gap: 20px;
}

/* Navigation right side - mobile toggle and cart */
.nav-content>.mobile-menu-toggle,
.nav-content>.cart-icon {
  flex-shrink: 0;
}

.brand h1 {
  font-size: 28px;
  font-weight: 700;
  color: var(--onam-gold);
  margin: 0;
  letter-spacing: 1px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
  font-family: 'Poppins', sans-serif;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-links a {
  color: var(--white);
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  padding: 8px 12px;
  border-radius: var(--border-radius);
  transition: var(--transition);
  position: relative;
}

.nav-links a:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: var(--white);
  text-decoration: none;
}

/* Mobile menu toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--border-radius);
  transition: var(--transition);
}

/* Ensure cart icon is always visible */
.cart-icon {
  display: flex !important;
}

.mobile-menu-toggle:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background-color: var(--white);
  margin: 2px 0;
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
}

.cart-icon {
  position: relative;
  cursor: pointer;
  color: var(--white);
  font-size: 24px;
  padding: 12px;
  border-radius: var(--border-radius-large);
  transition: all 0.3s ease;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  min-width: 48px;
  min-height: 48px;
  z-index: 1001;
  visibility: visible !important;
  opacity: 1 !important;
}

.cart-icon:hover {
  background: rgba(255, 215, 0, 0.2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  border-color: var(--onam-gold);
}

.cart-icon i {
  transition: all 0.3s ease;
  display: block;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

/* Fallback if FontAwesome doesn't load */
.cart-icon i:before {
  content: "🛒";
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 20px;
}

/* Override when FontAwesome loads properly */
.cart-icon i.fas:before,
.cart-icon i.fa-solid:before {
  content: "";
  font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
}

.cart-icon:hover i {
  transform: scale(1.1);
  color: var(--onam-gold);
}

.cart-count {
  position: absolute;
  top: -8px;
  right: -8px;
  background: linear-gradient(135deg, var(--onam-gold) 0%, var(--primary) 100%);
  color: var(--white);
  border-radius: 50%;
  min-width: 24px;
  min-height: 24px;
  display: none;
  /* Hidden by default, shown when count > 0 */
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  border: 2px solid var(--white);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  transform: scale(1);
  z-index: 10;
}

.cart-count.animate {
  animation: cartBadgePulse 0.6s ease-in-out;
}

@keyframes cartBadgePulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
  }

  100% {
    transform: scale(1);
  }
}

/* Beautiful Onam Hero Section with Video Background */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 80px 20px;
  overflow: hidden;
}

.hero-video-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  filter: brightness(0.7) contrast(1.1);
}

.hero-fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.4;
  filter: brightness(0.7) contrast(1.1);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg,
      rgba(26, 52, 9, 0.5) 0%,
      rgba(42, 80, 22, 0.4) 25%,
      rgba(45, 80, 22, 0.3) 50%,
      rgba(34, 139, 34, 0.35) 75%,
      rgba(26, 52, 9, 0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 1000px;
  margin: 0 auto;
  padding: 60px 30px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 60vh;
}

.hero h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 32px;
  line-height: 1.3;
  letter-spacing: 0.5px;
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.7);
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.hero p {
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 40px;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.cta-button {
  background: linear-gradient(135deg, var(--onam-gold) 0%, var(--primary) 100%);
  color: var(--dark);
  border: none;
  border-radius: var(--border-radius-large);
  padding: 18px 36px;
  font-size: 18px;
  font-weight: 700;
}

/* Enhanced Hero Content Styling */
.hero-badge {
  margin-bottom: 20px;
}

.heritage-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--onam-gold), var(--primary));
  color: var(--dark);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-subtitle {
  font-size: 20px;
  font-weight: 500;
  color: var(--onam-gold);
  margin-bottom: 24px;
  letter-spacing: 1px;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-promise {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.9);
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
  font-weight: 400;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin: 32px 0;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  padding: 16px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 215, 0, 0.3);
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.trust-item:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--onam-gold);
  transform: translateY(-3px);
}

.trust-icon {
  font-size: 20px;
  margin-bottom: 4px;
}

.trust-text {
  font-size: 12px;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}


/* Professional Statistics Section */
.stats-clean-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  padding: 80px 0;
  margin: 0;
  border-top: 1px solid #e9ecef;
  border-bottom: 1px solid #e9ecef;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  position: relative;
}

.stats-clean-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.stat-clean-item {
  text-align: center;
  padding: 40px 30px;
  background: transparent;
  border-right: 1px solid #e9ecef;
  transition: all 0.3s ease;
  position: relative;
}

.stat-clean-item:last-child {
  border-right: none;
}

.stat-clean-item:hover {
  background: rgba(255, 215, 0, 0.02);
  transform: translateY(-2px);
}

.stat-clean-icon {
  font-size: 32px;
  margin-bottom: 20px;
  color: #6c757d;
  opacity: 0.8;
}

.stat-clean-number {
  font-size: 42px;
  font-weight: 700;
  color: #212529;
  margin-bottom: 8px;
  transition: all 0.3s ease;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: -0.5px;
  line-height: 1;
}

.stat-clean-number.animated {
  color: var(--onam-gold);
  transform: scale(1.02);
}

.stat-clean-label {
  font-size: 14px;
  font-weight: 500;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.4;
}

/* Counter Animation Effects */
@keyframes counterPulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.stat-item:hover .stat-number,
.stat-item-inline:hover .stat-number-inline,
.stat-item-expanded:hover .stat-number-expanded,
.stat-clean-item:hover .stat-clean-number {
  animation: counterPulse 0.6s ease-in-out;
}

.stat-number:not(.animated),
.stat-number-inline:not(.animated),
.stat-number-expanded:not(.animated),
.stat-number-badge:not(.animated),
.stat-number-inline-text:not(.animated),
.stat-clean-number:not(.animated) {
  opacity: 0.9;
}

.stat-number.animated,
.stat-number-inline.animated,
.stat-number-expanded.animated,
.stat-number-badge.animated,
.stat-number-inline-text.animated,
.stat-clean-number.animated {
  opacity: 1;
  animation: counterPulse 0.6s ease-in-out;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover {
  background: linear-gradient(135deg, var(--primary) 0%, var(--onam-gold) 100%);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(255, 107, 53, 0.4);
}

.cta-button:active {
  transform: translateY(-1px);
  box-shadow: var(--shadow-heavy);
}

/* Professional Sections */
section {
  padding: 40px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-header h2 {
  font-size: 28px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
}

.section-header p {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.5;
  max-width: 600px;
  margin: 0 auto;
}



/* Professional Product Grid */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  padding: 20px 0;
  width: 100%;
}

.product-card {
  background: linear-gradient(145deg, var(--white) 0%, var(--onam-cream) 100%);
  border-radius: var(--border-radius-large);
  border: 2px solid var(--onam-gold);
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: auto;
  position: relative;
  cursor: pointer;
  box-shadow: var(--shadow-medium);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--onam-gold), var(--primary), var(--onam-green));
  z-index: 1;
}

.product-card.visible {
  transform: translateY(0);
  opacity: 1;
}

.product-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-heavy);
  transform: translateY(-8px) scale(1.02);
}

.product-card .media-carousel {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #fff5e6, #f0f8ff);
  min-height: 200px;
  border-radius: 20px 20px 0 0;
  width: 100%;
}

.product-card .carousel-container {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  transition: transform 0.5s ease;
}

.product-card .carousel-slide {
  min-width: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  position: relative;
  box-sizing: border-box;
}

.product-card .carousel-slide img,
.product-card .carousel-slide video {
  width: 100%;
  height: auto;
  min-height: 200px;
  max-height: 280px;
  object-fit: cover;
  transition: transform 0.4s ease;
  border-radius: 15px;
}

.product-card:hover .carousel-slide img,
.product-card:hover .carousel-slide video {
  transform: scale(1.02);
}

.product-card .carousel-slide video {
  cursor: pointer;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 14px;
  color: var(--dark);
  transition: all 0.3s ease;
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.product-card:hover .carousel-nav {
  opacity: 1;
  visibility: visible;
}

.carousel-nav:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
  left: 10px;
}

.carousel-nav.next {
  right: 10px;
}

.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.carousel-indicator {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.carousel-indicator.active {
  background: var(--primary);
  transform: scale(1.2);
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 15;
}

.carousel-slide:hover .play-overlay {
  opacity: 1;
  visibility: visible;
}

.play-overlay:hover {
  background: rgba(245, 138, 66, 0.9);
  transform: translate(-50%, -50%) scale(1.1);
}

/* Show overlay when video is paused */
/* Beautiful Onam Offer Badge */
.offer-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, var(--primary), var(--onam-gold));
  color: var(--dark);
  padding: 10px 16px;
  border-radius: var(--border-radius-large);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  z-index: 20;
  box-shadow: var(--shadow-heavy);
  animation: onamPulse 3s ease-in-out infinite;
  border: 2px solid var(--white);
}

@keyframes onamPulse {
  0% {
    transform: scale(1);
    box-shadow: var(--shadow-heavy), 0 0 0 0 rgba(255, 107, 53, 0.7);
  }

  50% {
    transform: scale(1.05);
    box-shadow: var(--shadow-heavy), 0 0 0 10px rgba(255, 107, 53, 0);
  }

  100% {
    transform: scale(1);
    box-shadow: var(--shadow-heavy), 0 0 0 0 rgba(255, 107, 53, 0);
  }
}

/* Beautiful Onam Pricing Styles */
.price-container {
  margin-bottom: 16px;
  text-align: center;
}

.price-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.current-price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.original-price {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
  font-weight: 500;
}

.discount-percent {
  background: linear-gradient(135deg, var(--onam-green), var(--success));
  color: var(--white);
  padding: 4px 10px;
  border-radius: var(--border-radius);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-light);
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  text-align: center;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.1);
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.carousel-slide video:not([autoplay]):not(:playing)+.play-overlay {
  opacity: 1;
  visibility: visible;
}

.product-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: linear-gradient(180deg, var(--white) 0%, var(--onam-cream) 100%);
  text-align: center;
}

.product-info h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--dark);
  line-height: 1.3;
  text-align: center;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
}

.product-info h3::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--onam-gold), var(--primary));
  border-radius: 1px;
}

.product-info p.description {
  font-size: 14px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.5;
  text-align: center;
  min-height: auto;
  overflow: visible;
}



.product-info .product-content {
  flex: 1;
}

.product-info button {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--white);
  border: none;
  border-radius: var(--border-radius-large);
  padding: 14px 20px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  margin-top: 16px;
  text-align: center;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: var(--shadow-medium);
  position: relative;
  overflow: hidden;
}

.product-info button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s ease;
}

.product-info button:hover::before {
  left: 100%;
}

.product-info button:hover {
  background: linear-gradient(135deg, var(--onam-green) 0%, var(--success) 100%);
  transform: translateY(-2px);
  box-shadow: var(--shadow-heavy);
}

.product-info button:active {
  transform: translateY(0);
  box-shadow: var(--shadow-medium);
}

/* About & Contact */
.about-content, .contact-content {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
}

/* Cart Modal */
.cart-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  overflow-y: auto;
  z-index: 200;
}

.cart-modal-content {
  background-color: #fff;
  border-radius: 10px;
  padding: 2rem;
  max-width: 600px;
  width: 100%;
  box-shadow: 0 10px 25px var(--shadow-color);
  position: relative;
}

.close-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 1.5rem;
  color: #999;
  cursor: pointer;
  transition: color 0.3s;
}

.close-btn:hover {
  color: var(--primary);
}

.cart-items {
  max-height: 250px;
  overflow-y: auto;
  margin-bottom: 1rem;
}

.cart-item-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 0.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid #eee;
}

.cart-item-row span {
  flex: 1;
  font-size: 0.9rem;
}

.cart-item-actions {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cart-item-actions button {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  padding: 0.2rem;
  transition: color 0.3s;
}

.cart-item-actions button:hover {
  color: var(--primary);
}

.cart-summary {
  font-weight: 600;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.checkout-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.checkout-form .form-row {
  display: flex;
  flex-direction: column;
}

.checkout-form label {
  font-weight: 500;
  margin-bottom: 0.2rem;
}

.checkout-form input,
.checkout-form textarea {
  padding: 0.6rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 0.9rem;
}

.checkout-form textarea {
  resize: vertical;
  min-height: 60px;
}

.checkout-buttons {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.checkout-button {
  background: linear-gradient(135deg, var(--onam-gold), var(--primary));
  color: var(--dark);
  border: none;
  padding: 15px 30px;
  border-radius: var(--border-radius);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  flex: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.checkout-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255, 215, 0, 0.4);
}

.checkout-button i {
  font-size: 18px;
}

.btn.btn-secondary {
  background: var(--border-light);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  flex: 1;
  padding: 15px 20px;
  border-radius: var(--border-radius);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn.btn-secondary:hover {
  background: var(--light);
  color: var(--dark);
  transform: translateY(-2px);
}

/* Footer */
.footer {
  background-color: var(--dark);
  color: #fff;
  padding: 1rem 0;
  text-align: center;
  font-size: 0.9rem;
}

/* Fade-in Up Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in-up {
  opacity: 0;
  animation: fadeInUp 1s forwards;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Large screens (1200px and up) */
@media (min-width: 1200px) {
  .container {
    max-width: 1400px;
  }

  .hero h2 {
    font-size: 3.2rem;
  }

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

  .product-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
  }

  .section-header h2 {
    font-size: 2.5rem;
  }
}

/* Medium screens (768px to 1199px) - Tablets */
@media (min-width: 768px) and (max-width: 1199px) {
  .container {
    width: 95%;
  }

  .hero h2 {
    font-size: 2.5rem;
  }

  .hero p {
    font-size: 1.05rem;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    width: 100%;
  }

  .cart-modal-content {
    max-width: 500px;
    padding: 1.5rem;
  }

  .checkout-form {
    gap: 1rem;
  }
}

/* Small screens (481px to 767px) - Large mobile */
@media (min-width: 481px) and (max-width: 767px) {
  .container {
    width: 95%;
  }

  .brand h1 {
    font-size: 1.3rem;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 2px 10px var(--shadow-color);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    display: block;
    text-align: center;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .hero {
    height: 70vh;
    padding: 0 1.5rem;
  }

  .hero h2 {
    font-size: 2rem;
    margin-bottom: 0.8rem;
  }

  .hero p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    padding: 0.7rem 1.8rem;
    font-size: 0.95rem;
  }

  .offer-badge {
    font-size: 0.7rem;
    padding: 6px 10px;
    top: 10px;
    left: 10px;
  }

  .current-price {
    font-size: 1.2rem;
  }

  .original-price {
    font-size: 0.9rem;
  }

  .discount-percent {
    font-size: 0.7rem;
    padding: 3px 6px;
  }

  .product-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    width: 100%;
  }

  .product-card {
    border-radius: 15px;
  }

  .product-card .media-carousel {
    min-height: 160px;
  }

  .product-card .carousel-slide {
    padding: 0.3rem;
  }

  .product-card .carousel-slide img,
  .product-card .carousel-slide video {
    min-height: 160px;
    max-height: 220px;
    object-fit: cover;
  }

  .carousel-nav {
    width: 30px;
    height: 30px;
    font-size: 12px;
  }

  .play-overlay {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .product-info {
    padding: 1.2rem;
  }

  .product-info h3 {
    font-size: 1.1rem;
    margin-bottom: 0.6rem;
  }

  .product-info p.description {
    font-size: 0.85rem;
    min-height: auto;
    line-height: 1.4;
  }

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

  .product-info button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  .cart-modal-content {
    max-width: 90%;
    padding: 1.5rem;
    margin: 1rem;
  }

  .cart-item-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }

  .cart-item-actions {
    align-self: flex-end;
  }
}

/* Extra small screens (up to 480px) - Small mobile */
@media (max-width: 480px) {
  .container {
    width: 95%;
    padding: 0 0.5rem;
  }

  .brand h1 {
    font-size: 1.1rem;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 2px 10px var(--shadow-color);
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .nav-links.active {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .nav-links a {
    margin: 0.5rem 0;
    padding: 0.5rem 1rem;
    display: block;
    text-align: center;
    font-size: 0.9rem;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  .cart-icon {
    font-size: 20px;
    padding: 10px;
    min-width: 44px;
    min-height: 44px;
  }

  .cart-count {
    font-size: 10px;
    min-width: 20px;
    min-height: 20px;
    top: -6px;
    right: -6px;
    border-width: 1px;
  }

  .hero {
    height: 60vh;
    padding: 0 1rem;
  }

  .hero h2 {
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
    line-height: 1.3;
  }

  .hero p {
    font-size: 0.85rem;
    margin-bottom: 1.2rem;
    line-height: 1.5;
  }

  .cta-button {
    padding: 0.6rem 1.5rem;
    font-size: 0.9rem;
  }

  section {
    padding: 2.5rem 0;
  }

  .section-header h2 {
    font-size: 1.5rem;
    margin-bottom: 0.3rem;
  }

  .section-header p {
    font-size: 0.9rem;
  }

  .product-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0.5rem;
  }

  .product-card {
    border-radius: 15px;
    max-width: 350px;
    margin: 0 auto;
  }

  .offer-badge {
    font-size: 0.65rem;
    padding: 5px 8px;
    top: 8px;
    left: 8px;
  }

  .current-price {
    font-size: 1.3rem;
  }

  .original-price {
    font-size: 0.95rem;
  }

  .discount-percent {
    font-size: 0.65rem;
    padding: 3px 6px;
  }

  .product-card .media-carousel {
    min-height: 200px;
  }

  .product-card .carousel-slide {
    padding: 0.2rem;
  }

  .product-card .carousel-slide img,
  .product-card .carousel-slide video {
    min-height: 200px;
    max-height: 280px;
    object-fit: cover;
  }

  .carousel-nav {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .carousel-nav.prev {
    left: 8px;
  }

  .carousel-nav.next {
    right: 8px;
  }

  .play-overlay {
    width: 55px;
    height: 55px;
    font-size: 18px;
  }

  .carousel-indicators {
    bottom: 8px;
  }

  .carousel-indicator {
    width: 10px;
    height: 10px;
  }

  .product-info {
    padding: 1.2rem;
  }

  .product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
  }

  .product-info p.description {
    font-size: 0.85rem;
    min-height: auto;
    margin-bottom: 0.8rem;
    line-height: 1.4;
  }

  .product-info .price {
    font-size: 1.3rem;
    margin-bottom: 1rem;
  }

  .product-info button {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
    border-radius: 20px;
  }

  .about-content, .contact-content {
    font-size: 0.9rem;
    padding: 0 0.5rem;
  }

  .cart-modal {
    padding: 0.5rem;
  }

  .cart-modal-content {
    max-width: 95%;
    padding: 1rem;
    margin: 0.5rem;
  }

  .cart-modal-content h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .cart-item-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.3rem;
    padding-bottom: 0.6rem;
    margin-bottom: 0.6rem;
  }

  .cart-item-row span {
    font-size: 0.85rem;
  }

  .cart-item-actions {
    align-self: flex-end;
    gap: 0.3rem;
  }

  .cart-item-actions button {
    font-size: 0.9rem;
    padding: 0.1rem 0.3rem;
  }

  .cart-summary {
    font-size: 1rem;
    margin-bottom: 0.8rem;
  }

  .checkout-form {
    gap: 0.6rem;
  }

  /* SEO Content Section - Hidden from users but accessible to search engines */
  .seo-content {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    left: -10000px !important;
    top: -10000px !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
  }

  .seo-text {
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.8;
  }

  .seo-text h2 {
    color: var(--dark);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
  }

  .seo-text h3 {
    color: var(--primary);
    font-size: 1.4rem;
    margin: 2rem 0 1rem 0;
    font-weight: 600;
  }

  .seo-text h4 {
    color: var(--dark);
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem 0;
    font-weight: 600;
  }

  .seo-text p {
    color: #555;
    font-size: 1rem;
    margin-bottom: 1rem;
    text-align: justify;
  }

  .keywords-section {
    background: linear-gradient(135deg, #fff5e6, #f0f8ff);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid var(--primary);
  }

  .keywords-section p {
    margin: 0;
    font-size: 0.95rem;
  }

  .keywords-section strong {
    color: var(--primary);
    font-weight: 600;
  }

  /* Responsive SEO Content - Remains hidden */
  @media (max-width: 768px) {
    .seo-content {
      display: none !important;
      visibility: hidden !important;
      opacity: 0 !important;
    }

    .seo-text {
      padding: 0 1rem;
    }

    .seo-text h2 {
      font-size: 1.6rem;
    }

    .seo-text h3 {
      font-size: 1.2rem;
    }

    .seo-text p {
      font-size: 0.9rem;
      text-align: left;
    }

    .keywords-section {
      padding: 1rem;
    }
  }

  .checkout-form label {
    font-size: 0.9rem;
  }

  /* Contact Section */
  .contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 4rem 0;
  }

  /* Elegant About Section - Left-Right Layout */
  .about-section {
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 50%, var(--onam-cream) 100%);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
  }

  .about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="%23ffd700" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.4;
    z-index: 1;
  }

  .about-content {
    position: relative;
    z-index: 2;
  }

  .about-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 120px;
    min-height: 400px;
  }

  .about-row:last-child {
    margin-bottom: 0;
  }

  .about-row.reverse {
    direction: rtl;
  }

  .about-row.reverse>* {
    direction: ltr;
  }

  .about-text {
    padding: 40px;
  }

  .about-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--onam-gold), var(--primary));
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 24px;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.3);
  }

  .stat-number-badge {
    font-family: 'Arial', monospace;
    font-weight: 700;
    transition: all 0.3s ease;
  }

  .stat-number-badge.animated {
    transform: scale(1.05);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
  }

  .stat-number-inline-text {
    font-family: 'Arial', monospace;
    font-weight: 700;
    color: var(--onam-green);
    transition: all 0.3s ease;
    display: inline;
  }

  .stat-number-inline-text.animated {
    color: var(--onam-gold);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
  }

  .about-text h3 {
    font-size: 36px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 24px;
    line-height: 1.2;
  }

  .about-text p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 32px;
  }

  .about-highlights {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
  }

  .highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.1);
    padding: 12px 20px;
    border-radius: 25px;
    border: 1px solid rgba(255, 215, 0, 0.3);
  }

  .highlight-icon {
    font-size: 16px;
  }

  .highlight-item span:last-child {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
  }

  .about-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
  }

  .visual-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--border-radius-large);
    text-align: center;
    box-shadow: var(--shadow-heavy);
    border: 1px solid var(--border-light);
    transition: var(--transition);
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .visual-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--onam-gold), var(--primary));
  }

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

  .card-icon {
    font-size: 48px;
    margin-bottom: 24px;
    opacity: 0.8;
  }

  .visual-card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
  }

  .visual-card p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
  }

  .heritage-card {
    background: linear-gradient(135deg, var(--onam-cream) 0%, var(--white) 100%);
  }

  .mission-card {
    background: linear-gradient(135deg, var(--white) 0%, #f0f8ff 100%);
  }

  .trust-card {
    background: linear-gradient(135deg, #fff8dc 0%, var(--white) 100%);
  }

  /* Why Choose Homeday Section */
  .why-choose-section {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
    padding: 80px 0;
    color: var(--white);
  }

  .why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    margin-top: 40px;
  }

  .why-choose-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 32px;
    border-radius: var(--border-radius-large);
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(255, 215, 0, 0.3);
  }

  .why-choose-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-8px);
    border-color: var(--onam-gold);
  }

  .why-icon {
    font-size: 48px;
    margin-bottom: 16px;
    display: block;
  }

  .why-choose-item h3 {
    color: var(--onam-gold);
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.3;
  }

  .why-choose-item p {
    font-size: 15px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
  }

  /* Contact Info Section */
  .contact-info-section {
    background: var(--white);
    padding: 60px 0;
  }



  .map-info {
    background: var(--white);
    padding: 40px 0;
    border-top: 3px solid var(--onam-gold);
  }

  .map-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 32px;
  }

  .map-detail-item {
    text-align: center;
    padding: 24px;
    background: linear-gradient(135deg, var(--onam-cream) 0%, var(--white) 100%);
    border-radius: var(--border-radius-large);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
  }

  .map-detail-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
  }

  .map-detail-item h4 {
    color: var(--dark);
    font-size: 16px;
    margin-bottom: 12px;
    font-weight: 600;
  }

  .map-detail-item p {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.5;
    margin: 0;
  }

  .contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
  }

  .contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }

  .contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }

  .contact-icon {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
  }

  .contact-details h3 {
    color: var(--dark);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
  }

  .contact-details p {
    color: #666;
    margin: 0;
    line-height: 1.6;
  }

  .contact-details a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
  }

  .contact-details a:hover {
    color: var(--dark);
    text-decoration: underline;
  }

  .map-container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    height: fit-content;
  }

  .map-container iframe {
    border-radius: 15px;
    filter: grayscale(20%);
    transition: filter 0.3s ease;
  }

  .map-container:hover iframe {
    filter: grayscale(0%);
  }

  /* Footer Updates */
  .footer {
    background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
    color: white;
    padding: 2rem 0;
    text-align: center;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .footer-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
  }

  .footer-links {
    margin: 20px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .footer-links a {
    color: var(--white);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    display: inline-block;
    margin: 0 10px;
  }

  .footer-links a:hover {
    background: rgba(255, 215, 0, 0.2);
    color: var(--onam-gold);
    transform: translateY(-2px);
  }

  .footer-credit {
    margin-top: 1rem !important;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.85rem !important;
  }

  .footer-credit a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
  }

  .footer-credit a:hover {
    color: var(--secondary);
    text-decoration: underline;
  }

  /* Responsive Contact Section */
  @media (max-width: 768px) {
    .contact-content {
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .contact-item {
      padding: 1rem;
    }

    .contact-icon {
      width: 40px;
      height: 40px;
      font-size: 1rem;
    }

    .contact-details h3 {
      font-size: 1.1rem;
    }

    .map-container iframe {
      height: 300px;
    }

    .footer-content {
      text-align: center;
    }

    .footer-content p {
      font-size: 0.8rem;
    }
  }

  .checkout-form input,
  .checkout-form textarea {
    padding: 0.5rem;
    font-size: 0.85rem;
  }

  .checkout-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .checkout-button,
  .btn.btn-secondary {
    flex: none;
    width: 100%;
    padding: 12px 20px;
    font-size: 14px;
  }

  .footer {
    font-size: 0.8rem;
    padding: 0.8rem 0;
  }
}

/* Responsive Styles for New Sections */
@media (max-width: 768px) {
  .about-section {
    padding: 60px 0;
  }

  .about-story, .about-mission, .about-craftsmanship, .about-commitment {
    padding: 24px;
  }

  .about-values {
    padding: 32px 20px;
  }

  .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 16px;
  }

  .value-item {
    padding: 16px;
  }

  .value-icon {
    font-size: 24px;
  }

  .why-choose-section {
    padding: 60px 0;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .why-choose-item {
    padding: 24px;
  }

  .why-icon {
    font-size: 36px;
  }

  .contact-info-section {
    padding: 40px 0;
  }



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

  .map-detail-item {
    padding: 20px;
  }

  .map-info {
    padding: 30px 0;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 0;
  }

  .about-story, .about-mission, .about-craftsmanship, .about-commitment {
    padding: 20px;
  }

  .about-content h3 {
    font-size: 18px;
  }

  .contact-section {
    padding: 3rem 0;
  }

  .contact-section .section-header h2 {
    font-size: 1.8rem;
  }

  .contact-section .section-header p {
    font-size: 1rem;
  }

  .contact-item {
    padding: 1.5rem;
    gap: 1rem;
  }

  .contact-icon {
    width: 44px;
    height: 44px;
    font-size: 1.1rem;
  }

  .contact-details h3 {
    font-size: 1rem;
  }

  .contact-primary {
    font-size: 1rem !important;
  }

  .about-values {
    padding: 24px 16px;
  }

  .values-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-section {
    padding: 40px 0;
  }

  .why-choose-item {
    padding: 20px;
  }

  .why-choose-item h3 {
    font-size: 16px;
  }

  .why-icon {
    font-size: 32px;
  }



  .map-detail-item {
    padding: 16px;
  }

  .map-detail-item h4 {
    font-size: 14px;
  }

  .map-detail-item p {
    font-size: 13px;
  }
}
}
}

/* ===== RESPONSIVE UTILITIES ===== */

/* Improve touch targets for mobile */
@media (max-width: 767px) {
  button, .cart-icon, .mobile-menu-toggle, .nav-links a {
    min-height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links a {
    min-width: auto;
    width: 100%;
  }

  /* Prevent horizontal scroll */
  body {
    overflow-x: hidden;
  }

  /* Improve form usability on mobile */
  input, textarea, select {
    font-size: 16px;
    /* Prevents zoom on iOS */
  }

  /* Better spacing for touch */
  .product-info button {
    margin-top: 0.5rem;
  }

  /* Improve cart modal on mobile */
  .cart-modal {
    align-items: flex-start;
    padding-top: 2rem;
  }

  .cart-modal-content {
    max-height: 90vh;
    overflow-y: auto;
  }
}

/* Video Hero Responsive Styles */
@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding: 60px 15px;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero p {
    font-size: 16px;
    line-height: 1.6;
  }

  .hero-content {
    max-width: 100%;
    padding: 0 15px;
  }
}

/* Enhanced Hero Responsive Styles */
@media (max-width: 768px) {
  .hero-content {
    padding: 30px 15px;
    min-height: 50vh;
    max-width: 100%;
  }

  .heritage-badge {
    font-size: 12px;
    padding: 6px 16px;
  }

  .hero h1 {
    font-size: 32px;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero-promise {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 24px;
  }

  .trust-indicators {
    gap: 16px;
    margin: 24px 0;
  }

  .trust-item {
    padding: 12px 16px;
    min-width: 80px;
  }

  .trust-icon {
    font-size: 16px;
  }

  .trust-text {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .hero-content {
    padding: 20px 10px;
    min-height: 45vh;
    max-width: 100%;
  }

  .heritage-badge {
    font-size: 11px;
    padding: 5px 12px;
  }

  .hero h1 {
    font-size: 26px;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 14px;
    margin-bottom: 16px;
  }

  .hero-promise {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 20px;
  }

  .trust-indicators {
    gap: 12px;
    margin: 20px 0;
  }

  /* Hero Features Section for Small Mobile */
  .hero-features {
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-direction: column;
    align-items: center;
  }

  .feature-item {
    padding: 0.3rem 0.6rem;
    font-size: 0.7rem;
    min-width: 0;
    max-width: 90%;
  }

  .feature-icon {
    font-size: 0.8rem;
  }

  .feature-text {
    font-size: 0.7rem;
  }

  /* Hero Trust Section for Small Mobile */
  .hero-trust {
    gap: 0.5rem;
    margin-bottom: 1rem;
    padding: 0 1rem;
  }

  .trust-item {
    font-size: 0.65rem;
    gap: 0.25rem;
    padding: 0;
    min-width: 0;
    flex: 1 1 auto;
    max-width: calc(50% - 0.25rem);
  }

  .trust-icon {
    font-size: 0.8rem;
  }

  .trust-text {
    font-size: 0.65rem;
    line-height: 1.2;
  }

  .hero-cta {
    gap: 0.6rem;
    margin-bottom: 1.5rem;
  }

  .cta-button {
    padding: 0.7rem 1.2rem;
    font-size: 0.8rem;
    min-width: 180px;
    max-width: 250px;
  }
}

/* Extra Small Mobile Devices (320px and below) */
@media (max-width: 320px) {
  .hero-content {
    padding: 15px 8px;
    min-height: 40vh;
    max-width: 100%;
  }

  .hero-features {
    gap: 0.3rem;
    margin-bottom: 0.8rem;
  }

  .feature-item {
    padding: 0.25rem 0.5rem;
    font-size: 0.65rem;
    max-width: 95%;
  }

  .feature-icon {
    font-size: 0.7rem;
  }

  .feature-text {
    font-size: 0.65rem;
  }

  .hero-trust {
    gap: 0.3rem;
    margin-bottom: 0.8rem;
    padding: 0 0.5rem;
  }

  .trust-item {
    font-size: 0.6rem;
    gap: 0.2rem;
    max-width: calc(50% - 0.15rem);
  }

  .trust-icon {
    font-size: 0.7rem;
  }

  .trust-text {
    font-size: 0.6rem;
    line-height: 1.1;
  }

  .hero-title {
    font-size: 1.3rem !important;
    line-height: 1.2;
  }

  .hero-subtitle {
    font-size: 0.9rem !important;
  }

  .hero-description {
    font-size: 0.8rem !important;
    line-height: 1.4;
  }

  .hero-cta {
    gap: 0.4rem;
    margin-bottom: 1rem;
  }

  .cta-button {
    padding: 0.6rem 1rem;
    font-size: 0.75rem;
    min-width: 150px;
    max-width: 200px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 70vh;
    padding: 40px 10px;
  }

  .hero h1 {
    font-size: 28px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
    line-height: 1.5;
  }

  .cta-button {
    padding: 14px 24px;
    font-size: 14px;
    min-width: 180px;
  }
}

/* Video Performance Optimization */
@media (prefers-reduced-motion: reduce) {
  .hero-video {
    animation: none;
  }
}

/* Ensure video loads properly on different devices */
@media (max-width: 768px) {

  /* Elegant About Section Responsive Styles */
  .about-section {
    padding: 60px 0;
  }

  /* Video Player Mobile Styles */
  .about-text h3 {
    font-size: 1.5rem;
  }

  .about-text p {
    font-size: 1rem;
    margin-bottom: 1rem;
  }

  .video-container {
    max-width: 100%;
    margin: 0 1rem;
  }

  .thumbnail-image,
  #aboutVideo {
    height: 250px;
  }

  .play-button {
    width: 60px;
    height: 60px;
    font-size: 18px;
  }

  .video-overlay {
    padding: 1.5rem;
  }

  .video-overlay h4 {
    font-size: 1.2rem;
  }

  .video-overlay p {
    font-size: 0.9rem;
  }

  /* Chips Video Mobile Styles */
  .chips-video-desktop {
    display: none;
  }

  .chips-video-mobile {
    display: block;
  }

  .chips-video-text-mobile h2 {
    font-size: 1.8rem;
    text-align: center;
    margin-bottom: 1rem;
  }

  .chips-video-text-mobile p {
    font-size: 1rem;
    text-align: center;
    margin-bottom: 2rem;
    color: var(--text-secondary);
  }

  .chips-video-player-mobile .video-container {
    max-width: 100%;
    margin: 0 1rem;
  }

  .chips-video-player-mobile .thumbnail-image,
  .chips-video-player-mobile video {
    height: 250px;
  }

  /* Mobile Unmute Button */
  .unmute-button {
    bottom: 15px;
    right: 15px;
    padding: 8px 12px;
    font-size: 12px;
  }

  .about-row {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 80px;
    min-height: auto;
  }

  .about-row.reverse {
    direction: ltr;
  }

  .about-text {
    padding: 20px;
    text-align: center;
  }

  .about-text h3 {
    font-size: 28px;
  }

  .about-text p {
    font-size: 16px;
  }

  .about-highlights {
    justify-content: center;
    gap: 16px;
  }

  .highlight-item {
    padding: 10px 16px;
  }

  .about-visual {
    padding: 20px;
  }

  .visual-card {
    padding: 40px 30px;
    min-height: 250px;
  }

  .card-icon {
    font-size: 36px;
  }

  .visual-card h4 {
    font-size: 20px;
  }

  .visual-card p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .about-section {
    padding: 40px 0;
  }

  .about-row {
    gap: 30px;
    margin-bottom: 60px;
  }

  .about-text {
    padding: 15px;
  }

  /* Video Player Small Mobile Styles */
  .about-text h3 {
    font-size: 1.3rem;
  }

  .video-container {
    margin: 0 0.5rem;
  }

  .thumbnail-image,
  #aboutVideo {
    height: 200px;
  }

  .play-button {
    width: 50px;
    height: 50px;
    font-size: 16px;
  }

  .video-overlay {
    padding: 1rem;
  }

  .video-overlay h4 {
    font-size: 1rem;
  }

  .video-overlay p {
    font-size: 0.8rem;
  }

  /* Chips Video Small Mobile Styles */
  .chips-video-text-mobile h2 {
    font-size: 1.5rem;
  }

  .chips-video-text-mobile p {
    font-size: 0.9rem;
  }

  .chips-video-player-mobile .video-container {
    margin: 0 0.5rem;
  }

  .chips-video-player-mobile .thumbnail-image,
  .chips-video-player-mobile video {
    height: 200px;
  }

  /* Small Mobile Unmute Button */
  .unmute-button {
    bottom: 10px;
    right: 10px;
    padding: 6px 10px;
    font-size: 11px;
  }

  .unmute-button i {
    font-size: 14px;
  }

  .about-badge {
    font-size: 10px;
    padding: 6px 16px;
  }

  .about-text h3 {
    font-size: 24px;
  }

  .about-text p {
    font-size: 15px;
    line-height: 1.6;
  }

  .about-highlights {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .highlight-item {
    padding: 8px 12px;
    width: 100%;
    justify-content: center;
  }

  .visual-card {
    padding: 30px 20px;
    min-height: 200px;
  }

  .card-icon {
    font-size: 32px;
    margin-bottom: 16px;
  }

  .visual-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
  }

  .visual-card p {
    font-size: 13px;
  }
}

.hero-video {
  object-position: center center;
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero-video {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* High DPI displays */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .hero {
    background-image: linear-gradient(rgba(8, 76, 43, 0.6), rgba(8, 76, 43, 0.6)), url('assets/hero.jpg');
  }
}

/* Professional Statistics Responsive Styles */
@media (max-width: 992px) {
  .stats-clean-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
  }

  .stat-clean-item {
    border-right: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
  }

  .stat-clean-item:nth-child(2n) {
    border-right: none;
  }

  .stat-clean-item:nth-child(n+3) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .stats-clean-section {
    padding: 60px 0;
  }

  .stats-clean-grid {
    padding: 0 15px;
  }

  .stat-clean-item {
    padding: 35px 20px;
  }

  .stat-clean-icon {
    font-size: 28px;
    margin-bottom: 16px;
  }

  .stat-clean-number {
    font-size: 36px;
    margin-bottom: 6px;
  }

  .stat-clean-label {
    font-size: 13px;
    letter-spacing: 0.6px;
  }
}

@media (max-width: 480px) {
  .stats-clean-section {
    padding: 50px 0;
  }

  .stats-clean-grid {
    grid-template-columns: 1fr;
    padding: 0 10px;
  }

  .stat-clean-item {
    padding: 30px 15px;
    border-right: none;
    border-bottom: 1px solid #e9ecef;
  }

  .stat-clean-item:last-child {
    border-bottom: none;
  }

  .stat-clean-icon {
    font-size: 24px;
    margin-bottom: 12px;
  }

  .stat-clean-number {
    font-size: 32px;
    margin-bottom: 4px;
  }

  .stat-clean-label {
    font-size: 12px;
    letter-spacing: 0.5px;
  }
}

/* Landscape orientation on mobile */
@media (max-width: 767px) and (orientation: landscape) {
  .hero {
    height: 100vh;
  }

  .hero h2 {
    font-size: 1.8rem;
  }

  .hero p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .nav-content {
    padding: 0.5rem 0;
  }
}

/* Print styles */
@media print {
  .navbar, .cart-icon, .mobile-menu-toggle, .cart-modal, .cta-button {
    display: none !important;
  }

  .hero {
    height: auto;
    background: none;
    color: var(--text-color);
    padding: 2rem 0;
  }

  .product-card {
    break-inside: avoid;
    margin-bottom: 1rem;
  }

  body {
    font-size: 12pt;
    line-height: 1.4;
  }
}

/* Privacy Policy Page Styles */
.privacy-policy-section {
  padding: 100px 0 60px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  min-height: 100vh;
}

.privacy-content {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  padding: 60px;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-light);
}

.privacy-content h1 {
  font-size: 42px;
  color: var(--dark);
  margin-bottom: 16px;
  font-weight: 700;
  text-align: center;
  border-bottom: 3px solid var(--onam-gold);
  padding-bottom: 20px;
}

.last-updated {
  text-align: center;
  color: var(--text-secondary);
  font-style: italic;
  margin-bottom: 40px;
  font-size: 14px;
}

.policy-content h2 {
  font-size: 24px;
  color: var(--onam-green);
  margin: 40px 0 20px 0;
  font-weight: 600;
  border-left: 4px solid var(--onam-gold);
  padding-left: 16px;
}

.policy-content p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 20px;
  text-align: justify;
}

.policy-content ul {
  margin: 20px 0;
  padding-left: 30px;
}

.policy-content li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.contact-details {
  background: var(--light);
  padding: 30px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--onam-green);
  margin: 30px 0;
}

.contact-details p {
  margin-bottom: 15px;
}

.contact-details a {
  color: var(--onam-green);
  text-decoration: none;
  font-weight: 600;
}

.contact-details a:hover {
  color: var(--onam-gold);
  text-decoration: underline;
}

.policy-highlight {
  background: linear-gradient(135deg, var(--onam-cream) 0%, #fff5e6 100%);
  padding: 25px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--onam-gold);
  margin: 25px 0;
  box-shadow: 0 2px 8px rgba(255, 215, 0, 0.1);
}

.policy-highlight p {
  margin: 0;
  font-weight: 500;
}

.important-note {
  background: linear-gradient(135deg, #fff0f0 0%, #ffe6e6 100%);
  padding: 30px;
  border-radius: var(--border-radius-large);
  border: 2px solid #ff6b6b;
  margin: 40px 0;
  box-shadow: 0 4px 15px rgba(255, 107, 107, 0.1);
}

.important-note h3 {
  color: #d63031;
  font-size: 20px;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.important-note ul {
  margin: 0;
  padding-left: 25px;
}

.important-note li {
  color: #2d3436;
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.6;
}

.important-note strong {
  color: #d63031;
}

/* Shipping Process Visualization */
.shipping-process {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
  padding: 30px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: var(--border-radius-large);
  border: 1px solid var(--border-light);
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  background: var(--white);
  border-radius: var(--border-radius);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.process-step:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
  background: linear-gradient(135deg, var(--onam-green) 0%, var(--secondary) 100%);
  color: var(--white);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(34, 139, 34, 0.3);
}

.step-content h4 {
  color: var(--onam-green);
  font-size: 18px;
  font-weight: 600;
  margin: 0 0 8px 0;
}

.step-content p {
  color: var(--text-secondary);
  font-size: 14px;
  margin: 0;
  line-height: 1.5;
}

/* Shipping Tips Section */
.shipping-tips {
  background: linear-gradient(135deg, #e8f5e8 0%, #f0f8f0 100%);
  padding: 30px;
  border-radius: var(--border-radius-large);
  border-left: 4px solid var(--onam-green);
  margin: 40px 0;
  box-shadow: 0 4px 15px rgba(34, 139, 34, 0.1);
}

.shipping-tips h3 {
  color: var(--onam-green);
  font-size: 20px;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.shipping-tips ul {
  margin: 0;
  padding-left: 25px;
}

.shipping-tips li {
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Responsive Shipping Process */
@media (max-width: 768px) {
  .shipping-process {
    padding: 20px;
  }

  .process-step {
    padding: 15px;
    gap: 15px;
  }

  .step-number {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }

  .step-content h4 {
    font-size: 16px;
  }

  .step-content p {
    font-size: 13px;
  }

  .shipping-tips {
    padding: 20px;
  }
}

/* Terms Summary Section */
.terms-summary {
  background: linear-gradient(135deg, #e3f2fd 0%, #f3e5f5 100%);
  padding: 30px;
  border-radius: var(--border-radius-large);
  border-left: 4px solid #1976d2;
  margin: 40px 0;
  box-shadow: 0 4px 15px rgba(25, 118, 210, 0.1);
}

.terms-summary h3 {
  color: #1976d2;
  font-size: 20px;
  margin: 0 0 20px 0;
  font-weight: 700;
}

.terms-summary ul {
  margin: 0;
  padding-left: 25px;
}

.terms-summary li {
  color: var(--text-primary);
  font-weight: 500;
  margin-bottom: 12px;
  line-height: 1.6;
}

/* Responsive Terms Summary */
@media (max-width: 768px) {
  .terms-summary {
    padding: 20px;
  }

  .terms-summary h3 {
    font-size: 18px;
  }

  .terms-summary li {
    font-size: 14px;
  }
}

/* Responsive Privacy Policy */
@media (max-width: 768px) {
  .privacy-policy-section {
    padding: 80px 0 40px 0;
  }

  .privacy-content {
    padding: 40px 30px;
    margin: 0 20px;
  }

  .privacy-content h1 {
    font-size: 32px;
  }

  .policy-content h2 {
    font-size: 20px;
    margin: 30px 0 15px 0;
  }

  .policy-content p,
  .policy-content li {
    font-size: 15px;
  }

  .contact-details {
    padding: 20px;
  }
}

/* Contact Section Mobile Responsive */
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .contact-item {
    padding: 1.5rem;
  }

  .contact-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }

  .contact-details h3 {
    font-size: 1.2rem;
  }
}

/* Force hide SEO content - High specificity override */
section.seo-content,
.seo-content,
section.seo-content *,
.seo-content * {
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  position: absolute !important;
  left: -10000px !important;
  top: -10000px !important;
  width: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  pointer-events: none !important;
}