@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;500;600;700&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', -apple-system, sans-serif;
}

:root {
  --nav-text: #333333;
  --nav-hover: #EBC03F; /* Matching the gold from your product cards */
}

/* Section Navigation */
.section-nav {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.section-nav-container {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.section-nav-link {
  display: inline-block;
  padding: 16px 20px;
  font-size: 14px;
  font-weight: 500;
  color: #333333;
  text-decoration: none;
  border-bottom: 3px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  flex-shrink: 0;
}

.section-nav-link:active,
.section-nav-link.active {
  border-bottom-color: #000000;
  color: #000000;
}

.section-nav-link:hover {
  color: #000000;
}

/* Hero Section */
.hero {
  width: 100%;
  display: block;
  overflow: hidden;
  position: relative;
  height: 400px; /* Standard Desktop Height */
}

@media (min-width: 1024px) {
  .hero {
    height: 500px; /* Taller on Desktop */
  }
}

.slider-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* This makes it fit and fill the div properly */
  object-position: center;
  display: block;
}

/* Using a clean sans-serif stack to match the image */
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
  background-color: #f5f5f5;
  padding: 0;
  margin: 0;
}

.products-section {
  padding: 20px;
}

/*.product-card {
  background: white;
  padding: 16px;
  max-width: 350px;
  border-radius: 4px;
}*/

.product-info {
  display: flex;
  flex-direction: column;
}

.product-title {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin: 0 0 12px 0;
}

.product-specs {
   font-size: 18px;
  font-weight: 500;
  color: #333;
  margin: 0 0 4px 0;
}

.product-meta {
  font-size: 13px;
  color: #888;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.separator {
  color: #ddd;
}

.rating-container {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  line-height: 1;
}

.stars {
  color: #f4d03f; /* Standard gold color for stars */
  font-size: 18px;
  letter-spacing: 2px;
  margin: 0;
  line-height: 1;
}

.review-count {
  font-size: 13px;
  color: #888;
  margin: 0;
  line-height: 1;
}

.price-container {
  font-size: 24px;
  font-weight: 800;
  color: #000;
  gap: 8px;
}

.currency {
  font-size: 18px;
}

.amount {
  letter-spacing: -0.5px;
}
.ml{
  font-size: 14px;
  color: #555;
  margin-left: 6px;
}

.premium-header {
  width: 100%;
  background: #ffffff;
  padding: 0;
  border-bottom: 1px solid #f0f0f0;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 30px;
  display: grid;
  grid-template-columns: 1fr auto 1fr; /* Ensures perfect centering of logo */
  align-items: center;
}

/* Navigation Styling */
.nav-left {
  display: flex;
  align-items: center;
  gap: 30px;
}

.desktop-nav {
  display: none; /* Hidden on desktop as per request */
  gap: 25px;
}

.desktop-nav a {
  text-decoration: none;
  color: var(--nav-text);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  transition: color 0.3s ease;
}

.desktop-nav a:hover {
  color: var(--nav-hover);
}

/* Logo Styling */
.logo-wrapper {
  display: flex;
  justify-content: center;
  justify-self: center;
  grid-column: 2;
 
}

.brand-logo {
  height: 300px;
  width: auto;
  max-width: 320px;
  transform: scale(1.8);
  transform-origin: center;
  display: block;
}

/* Cart & Icon Styling */
.nav-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.menu-icon {
  display: none; /* Hidden on desktop, show on mobile */
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.menu-icon span {
  width: 24px;
  height: 2px;
  background: #000;
  transition: all 0.3s ease;
  
}

.menu-icon.menu-active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

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

.menu-icon.menu-active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.cart-icon {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  padding: 0 10px;
}

.cart-count {
  position: relative;
  top: auto;
  right: auto;
  background: #000;
  color: #fff;
  font-size: 12px;
  width: auto;
  height: auto;
  min-width: 18px;
  padding: 4px 6px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-right: 10px;
}

/* Mobile Responsiveness */
@media (max-width: 992px) {
  .desktop-nav {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    z-index: 999;
  }

  .desktop-nav.mobile-menu-active {
    display: flex;
  }

  .desktop-nav a {
    padding: 15px 30px;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
  }

  .desktop-nav a:hover {
    background: #f5f5f5;
  }

  .menu-icon {
    display: flex;
  }
  .header-container {
    grid-template-columns: 40px 1fr 40px;
    padding: 0 16px;
  }
  
  .cart-icon {
    gap: 0;
    padding: 0 5px;
  }
  
  .cart-count {
    font-size: 11px;
    padding: 2px 4px;
  }
  .logo-wrapper {
    grid-column: 2;
    justify-self: center;
  }
  .brand-logo {
    height: 80px;
    max-width: 250px;
  }
}

:root {
  --gold-primary: #EBC03F;     /* Precise Gold from your image */
  --gold-bg: #FFFEF2;          /* Soft Cream for selected card */
  --text-main: #1A1A1A;        /* Premium Deep Black */
  --text-muted: #8E8E93;       /* iOS-style Muted Grey */
  --premium-green: #2D8A56;    /* Deep Emerald for discounts */
  --border-light: #E5E5E5;     /* Soft Hairline Borders */
}

body {
  font-family: 'Inter', -apple-system, sans-serif;
  color: var(--text-main);
  background-color: #ffffff;
}

.product-selection-container {
  max-width: 720px;
  margin: 40px auto;
  padding: 0 20px;
}

/* Features Header */
.features-bar {
  display: flex;
  background: #F9F9FB;
  border-radius: 16px;
  padding: 24px 10px;
  margin-bottom: 40px;
  justify-content: space-around;
  text-align: center;
}

.feature-item p {
  font-size: 11px;
  font-weight: 500;
  color: #555;
  margin-top: 10px;
  line-height: 1.4;
  letter-spacing: 0.2px;
}

/* Card Grid */
.section-title {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 20px;
}

.size-options {
  display: flex;
  gap: 12px;
  margin-bottom: 30px;
  justify-content: space-between;
  align-items: stretch;
}

.size-card {
  flex: 1 1 0;
  min-width: 160px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 20px 10px;
  text-align: center;
  background: white;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.size-card.selected {
  border: 2px solid var(--gold-primary);
  background-color: var(--gold-bg);
  box-shadow: 0 4px 12px rgba(235, 192, 63, 0.1);
}

/* Icons */
.drop-icon-container {
  background: linear-gradient(135deg, #FFB800 0%, #FF8A00 100%);
  width: 42px;
  height: 42px;
  border-radius: 10px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
}

/* Text Elements */
.size-label { font-weight: 600; font-size: 14px; margin-bottom: 4px; }
.volume { font-size: 12px; color: var(--text-muted); margin-bottom: 12px; }
.price { font-weight: 800; font-size: 16px; margin-bottom: 4px; }
.mrp { font-size: 11px; color: var(--text-muted); margin-bottom: 4px; }
.strike { text-decoration: line-through; }
.discount { font-size: 12px; font-weight: 700; color: var(--premium-green); }

/* Ensure box-sizing for all elements */
* {
  box-sizing: border-box;
}

/* Premium Button */
.prime-add-button {
  width: 100%;
  background: #000;
  color: #fff;
  border: none;
  padding: 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: transform 0.1s;
}

.prime-add-button:active { transform: scale(0.98); }

.shipping-tag {
  text-align: center;
  font-size: 12px;
  color: #666;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

section.container {
  max-width: 420px;
  margin: auto;
  padding: 20px;
}

.title {
  text-align: center;
  font-size: 22px;
  margin-bottom: 10px;
}

.subtitle {
  text-align: center;
  font-size: 14px;
  color: #555;
  margin-bottom: 20px;
}


.paragraph {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.card {
  display: flex;
  gap: 12px;
  padding: 14px;
  margin: 14px 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.premium-icon {
  font-size: 20px;
  color: #90EE90;
  background: rgba(144, 238, 144, 0.15);
  padding: 14px;
  border-radius: 12px;
  height: 48px;
  width: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.card h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.card p {
  font-size: 13px;
  color: #555;
}

.highlight-box {
  background: #ffeef8;
  padding: 16px;
  border-radius: 14px;
  margin: 20px 0;
}

.highlight-box h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.highlight-box p,
.highlight-box li {
  font-size: 13px;
  line-height: 1.6;
}

.sub-title {
  text-align: center;
  margin: 20px 0 10px;
}

.feature {
  text-align: center;
  padding: 14px;
  margin: 10px 0;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.feature small {
  display: block;
  font-weight: normal;
  margin-top: 4px;
}

.feature.green { background: #e8f5e9; color: #00c853; }
.feature.blue { background: #e3f2fd; color: #2962ff; }
.feature.pink { background: #f3e5f5; color: #d500f9; }
/* ============== MOBILE RESPONSIVE STYLES ============== */
@media (max-width: 768px) {
  .product-selection-container {
    margin: 30px auto;
    padding: 0 15px;
  }

  .features-bar {
    padding: 16px 8px;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 15px;
  }

  .feature-item {
    flex: 1 1 calc(50% - 8px);
    min-width: 150px;
  }

  .size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
  }

  .size-card {
    flex: 1 1 calc(50% - 10px);
    min-width: 140px;
    padding: 15px 8px;
  }

  .prime-add-button {
    padding: 16px;
    font-size: 13px;
  }

  section.container {
    max-width: 100%;
    padding: 15px;
  }

  .title {
    font-size: 18px;
    margin-bottom: 8px;
  }

  .subtitle {
    font-size: 13px;
    margin-bottom: 15px;
  }

  .image-box {
    height: 140px;
    margin: 12px 0;
  }

  .card {
    padding: 12px;
    margin: 10px 0;
    gap: 10px;
  }

  .premium-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    padding: 10px;
  }

  .card h4 {
    font-size: 14px;
  }

  .card p {
    font-size: 12px;
  }

  .highlight-box {
    padding: 12px;
    margin: 15px 0;
  }

  .feature {
    padding: 10px;
    margin: 8px 0;
    font-size: 14px;
  }

  .feature small {
    font-size: 11px;
    margin-top: 3px;
  }
}

@media (max-width: 480px) {
  .header-container {
    padding: 0 12px;
    gap: 10px;
  }

  .nav-left {
    gap: 12px;
  }

  .brand-logo {
    height: 60px;
    max-width: 220px;
  }

  .cart-icon svg {
    width: 20px;
    height: 20px;
  }

  .desktop-nav a {
    font-size: 12px;
  }

  .product-selection-container {
    margin: 20px auto;
    padding: 0 10px;
  }

  .features-bar {
    flex-direction: column;
    padding: 12px;
    gap: 12px;
  }

  .feature-item {
    flex: 1 1 100%;
  }

 .size-options {
  display: flex; /* Cards inline undataniki */
  flex-direction: row; 
  flex-wrap: nowrap; /* Next line ki vellakunda okke line lo unchadaniki */
  gap: 8px; /* Mobile lo gap koncham thaggisthe space kalisosthundi */
  margin-bottom: 30px;
  justify-content: space-between; /* Screen antha neat-ga spread avvadaniki */
  align-items: stretch;
  width: 100%; /* Container full width undali */
}

.size-card {
  flex: 1; /* Anni cards equal width tho screen ki adjust avthayi */
  /* min-width ni remove chesam, scroll avvakunda undataniki */
  border: 1px solid var(--border-light);
  border-radius: 12px;
  padding: 15px 5px; /* Mobile lo padding koncham thaggincha */
  text-align: center;
  background: white;
  transition: all 0.3s ease;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.size-card.selected {
  border: 2px solid var(--gold-primary);
  background-color: var(--gold-bg);
  box-shadow: 0 4px 12px rgba(235, 192, 63, 0.1);
}

/* Mobile optimizations */
@media (max-width: 480px) {
  .size-options {
    gap: 6px; /* Inka koncham thakkuva gap */
  }
  
  .size-card {
    padding: 10px 4px; /* Text space kosam padding thaggincha */
  }

  /* Card loni text sizes thagginchali lekapothe text break avthundi */
  .size-card .size-name {
    font-size: 11px;
    font-weight: 600;
  }
  
  .size-card .price {
    font-size: 10px;
  }
}
  .size-label {
    font-size: 13px;
  }

  .volume,
  .price {
    font-size: 11px;
  }

  .section-title {
    font-size: 14px;
    margin-bottom: 15px;
  }

  .prime-add-button {
    padding: 14px 12px;
    font-size: 12px;
    letter-spacing: 0.5px;
  }

  .shipping-tag {
    font-size: 11px;
    gap: 4px;
  }

  section.container {
    padding: 12px;
    margin: 0;
  }

  .title {
    font-size: 16px;
  }

  .subtitle {
    font-size: 12px;
  }

  .image-box {
    height: 120px;
  }

  .card {
    flex-direction: column;
    text-align: center;
    padding: 10px;
    gap: 8px;
  }

  .premium-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin: 0 auto;
  }

  .card h4 {
    font-size: 13px;
  }

  .card p {
    font-size: 11px;
  }

  .highlight-box {
    padding: 10px;
  }

  .highlight-box h3 {
    font-size: 14px;
  }

  .highlight-box p {
    font-size: 12px;
  }
}

/* Certification Banner Styles */
.cert-banner {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 24px;
  padding: 40px;
  margin: 60px 0 40px;
  text-align: center;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.05);
}

.cert-banner h2 {
  font-size: 24px;
  font-weight: 700;
  color: #1a202c;
  margin-bottom: 12px;
}

.cert-banner p {
  color: #64748b;
  max-width: 600px;
  margin: 0 auto 30px;
  font-size: 15px;
  line-height: 1.6;
}

.cert-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.c-badge {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid transparent;
  cursor: default;
}

.c-badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Badge Color Variations with Soft Glassy Effects */
.bg-green {
  background: rgba(34, 197, 94, 0.1);
  color: #15803d;
  border-color: rgba(34, 197, 94, 0.2);
}

.bg-blue {
  background: rgba(59, 130, 246, 0.1);
  color: #1d4ed8;
  border-color: rgba(59, 130, 246, 0.2);
}

.bg-purple {
  background: rgba(168, 85, 247, 0.1);
  color: #7e22ce;
  border-color: rgba(168, 85, 247, 0.2);
}

.bg-orange {
  background: rgba(249, 115, 22, 0.1);
  color: #c2410c;
  border-color: rgba(249, 115, 22, 0.2);
}

@media (max-width: 768px) {
  .cert-banner {
    padding: 30px 20px;
    margin: 40px 0 20px;
    border-radius: 20px;
  }
  
  .cert-banner h2 {
    font-size: 20px;
  }
  
  .c-badge {
    padding: 6px 16px;
    font-size: 12px;
  }
}

/* Marquee section below header */
.floating-marquee-section {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow: hidden; /* Side gaps raakunda chestundi */
}

.premium-marquee-container {
    position: relative;
    /* Gap fix ikkade undi: width 100% chesi, max-width teeyali */
    width: 100%; 
    max-width: none; 
    
    background: linear-gradient(90deg, #fff5f5 0%, #ffebeb 50%, #fff5f5 100%);
    border-top: 1px solid rgba(211, 47, 47, 0.1);
    border-bottom: 1px solid rgba(211, 47, 47, 0.1);
    padding: 12px 0; /* Left/Right padding teesi animation smooth chesam */
    overflow: hidden;
    display: flex;
    align-items: center;
    z-index: 50;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
    margin-top: 0;
}

.marquee-content {
    display: flex;
    white-space: nowrap;
    /* Animation speed control */
    animation: premium-scroll 20s linear infinite;
}

.marquee-promo {
    display: flex;
    align-items: center;
    padding: 0 50px; /* Items madhya distance */
    font-family: 'Inter', sans-serif;
}

.label {
    background: #d32f2f;
    color: white;
    font-size: 10px;
    font-weight: 800;
    padding: 4px 10px;
    border-radius: 4px;
    margin-right: 12px;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.2);
}

.main-text {
    font-size: 16px;
    font-weight: 700;
    color: #2d3436;
    letter-spacing: -0.5px;
}

.amount { color: #d32f2f; font-weight: 800; }

@keyframes premium-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Hover chesthe aagipothundi */
.premium-marquee-container:hover .marquee-content {
    animation-play-state: paused;
    cursor: pointer;
}

/* Mobile Fix */
@media (max-width: 768px) {
    .premium-marquee-container { 
        width: 100%; 
        padding: 8px 0; 
    }
    .main-text { font-size: 13px; }
    .label { font-size: 8px; padding: 3px 8px; }
    .marquee-promo { padding: 0 30px; }
}

/* ============================================================
   TABLET RESPONSIVE STYLES (768px - 1024px)
   ============================================================ */
@media (min-width: 768px) {
  /* Layout Containers */
  .products-section,
  .product-selection-container,
  section.container,
  .content-container,
  .nutrition-card,
  .cert-banner {
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Hero Section Enhancement */
  .hero {
    height: 500px !important;
  }

  /* Header adjustments */
  .header-container {
    padding: 0 40px !important;
    grid-template-columns: 1fr auto 1fr auto !important;
  }
  
  .nav-right {
    grid-column: 4;
    justify-self: end;
  }
  
  .cart-icon {
    gap: 6px;
    padding: 0 10px;
  }
  
  .cart-count {
    font-size: 11px;
    padding: 3px 6px;
    background: #ffa000;
    color: #000;
  }

  .brand-logo {
    height: 100px !important;
    max-width: 300px !important;
    transform: scale(1) !important; /* Resetting mobile scale */
  }

  /* Grid Layouts for Info Cards */
  .footer-container {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
  }

  .benefit-inline-item {
    gap: 15px !important;
  }

  .top-text { font-size: 15px !important; }
  .bottom-text { font-size: 13px !important; }

  /* Typography Scaling */
  .product-title, .title {
    font-size: 24px !important;
  }

  .product-specs {
    font-size: 22px !important;
  }

  /* Override Inlined Styles from HTML */
  .inline-benefits-container {
    max-width: 800px !important;
    margin: 30px auto !important;
    padding: 30px 20px !important;
    border-radius: 20px !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05) !important;
  }

  .benefit-inline-item {
    flex: 1 !important;
    justify-content: center !important;
  }

  .size-options {
    gap: 20px !important;
    padding: 20px !important;
    flex-wrap: nowrap !important;
  }

  .size-card {
    min-width: 180px !important;
    padding: 25px 15px !important;
  }

  /* Ingredients & Benefits Page Overrides */
  .ingredients-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 25px !important;
  }

  .dont-list {
    grid-template-columns: repeat(2, 1fr) !important;
  }

  .step-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 20px !important;
  }

  .hero-box, .image-box, .hero-img-container {
    height: 400px !important;
    max-width: 900px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* ============================================================
   DESKTOP RESPONSIVE STYLES (1025px and above)
   ============================================================ */
@media (min-width: 1025px) {
  /* Layout Containers */
  .products-section {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 40px 20px !important;
  }

  .product-selection-container {
    max-width: 1100px !important;
    margin: 40px auto !important;
    padding: 0 40px !important;
  }

  section.container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 40px 30px !important;
  }

  .content-container,
  .nutrition-card,
  .cert-banner {
    max-width: 1100px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  /* Hero Section Enhancement */
  .hero {
    height: 900px !important;
    max-width: 100% !important;
  }

  /* Desktop Hero Images */
  .hero-img-1 {
    content: url('https://uploads.onecompiler.io/42u9xvqj6/44acxbdg3/ChatGPT%20Image%20Jan%2013,%202026,%2001_29_57%20PM.png') !important;
  }

  .hero-img-2 {
    content: url('https://uploads.onecompiler.io/42u9xvqj6/44acxbdg3/ChatGPT%20Image%20Jan%2013,%202026,%2001_24_32%20PM.png') !important;
  }

  .hero-img-3 {
    content: url('https://uploads.onecompiler.io/42u9xvqj6/44acxbdg3/ChatGPT%20Image%20Jan%2013,%202026,%2001_25_49%20PM.png') !important;
  }

  /* Header styling */
  .header-container {
    padding: 0 50px !important;
    grid-template-columns: auto 1fr auto !important;
  }
  
  .logo-wrapper {
    grid-column: 1;
    justify-self: start;
    order: -1;
  }

  .nav-left {
    grid-column: 2;
    order: 0;
  }
  
  .nav-right {
    grid-column: 3;
    justify-self: end;
  }
  
  .cart-icon {
    gap: 8px;
    padding: 0 15px;
  }
  
  .cart-count {
    font-size: 13px;
    padding: 4px 8px;
    background: #ffa000;
    color: #000;
    border-radius: 4px;
  }

  .brand-logo {
    height: 140px !important;
    max-width: 380px !important;
  }

  /* Grid Layouts for Info Cards */
  .footer-container {
    grid-template-columns: repeat(4, 1fr) !important;
    max-width: 1300px !important;
    margin: 0 auto !important;
    gap: 50px !important;
  }

  .ingredients-grid {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 30px !important;
    margin-bottom: 40px !important;
  }

  .ingredients-grid .card {
    flex: 0 1 calc(33.333% - 20px) !important;
    min-width: 300px !important;
  }

  .dont-list {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
  }

  .step-list {
    grid-template-columns: repeat(4, 1fr) !important;
  }

  .section-nav-container {
    justify-content: center !important;
  }

  /* Inline Benefits Container */
  .inline-benefits-container {
    max-width: 1100px !important;
    margin: 40px auto !important;
    padding: 40px 40px !important;
    justify-content: space-around !important;
    gap: 30px !important;
  }

  .benefit-inline-item {
    gap: 20px !important;
  }

  /* Product Section Layout */
  .product-info {
    text-align: center !important;
    max-width: 900px !important;
    margin: 0 auto 30px !important;
  }

  .product-title {
    font-size: 36px !important;
    margin-bottom: 15px !important;
  }

  .product-specs {
    font-size: 28px !important;
    margin-bottom: 15px !important;
  }

  .product-meta {
    justify-content: center !important;
    margin-bottom: 15px !important;
  }

  .rating-container {
    justify-content: center !important;
    margin-bottom: 15px !important;
  }

  .price-container {
    justify-content: center !important;
    margin-bottom: 30px !important;
  }

  /* Size Options Desktop */
  .size-options {
    max-width: 1000px !important;
    margin: 30px auto 40px !important;
    display: flex !important;
    justify-content: center !important;
    gap: 30px !important;
    flex-wrap: nowrap !important;
  }

  .size-card {
    padding: 35px 25px !important;
    flex: 0 1 280px !important;
    min-width: 280px !important;
  }

  .size-label {
    font-size: 16px !important;
    margin-bottom: 8px !important;
  }

  .volume {
    font-size: 13px !important;
    margin-bottom: 15px !important;
  }

  .price {
    font-size: 20px !important;
    margin-bottom: 8px !important;
  }

  .mrp {
    font-size: 12px !important;
    margin-bottom: 8px !important;
  }

  .discount {
    font-size: 14px !important;
  }

  /* Button Styling */
  .prime-add-button {
    width: 60% !important;
    max-width: 600px !important;
    margin: 20px auto !important;
    padding: 20px !important;
    font-size: 16px !important;
  }

  .quantity-wrapper {
    max-width: 600px !important;
    margin: 0 auto 20px !important;
  }

  .shipping-tag {
    justify-content: center !important;
    margin-top: 20px !important;
  }

  /* Section Title Desktop */
  .section-title {
    font-size: 22px !important;
    text-align: center !important;
    margin-bottom: 30px !important;
  }

  /* Ingredients Page Specific */
  .ingredients-header {
    text-align: center !important;
    margin-bottom: 50px !important;
  }

  .ingredients-header h1 {
    font-size: 42px !important;
    margin-bottom: 20px !important;
  }

  .ingredients-header p {
    font-size: 16px !important;
    max-width: 800px !important;
    margin: 0 auto 30px !important;
  }

  .hero-img-container {
    height: 500px !important;
    max-width: 1000px !important;
    margin: 0 auto 40px !important;
    border-radius: 24px !important;
  }

  .section-header {
    font-size: 24px !important;
    margin: 40px 0 25px !important;
  }

  .section-header i {
    font-size: 26px !important;
  }

  .card {
    padding: 30px !important;
    border-radius: 16px !important;
  }

  .card h3 {
    font-size: 18px !important;
    margin-bottom: 15px !important;
  }

  .card p {
    font-size: 14px !important;
    line-height: 1.7 !important;
  }

  .tags {
    gap: 12px !important;
  }

  .tag {
    padding: 8px 16px !important;
    font-size: 12px !important;
  }

  /* Don't Use Box */
  .dont-use-box {
    max-width: 1100px !important;
    margin: 50px auto !important;
    padding: 40px !important;
    border-radius: 16px !important;
  }

  .dont-use-header {
    font-size: 18px !important;
    margin-bottom: 20px !important;
  }

  .dont-use-box > p {
    font-size: 15px !important;
    margin-bottom: 25px !important;
  }

  .dont-list li {
    font-size: 14px !important;
    padding: 10px 0 !important;
  }

  /* Nutrition Card */
  .nutrition-card {
    max-width: 1100px !important;
    margin: 30px auto !important;
    padding: 40px !important;
    border-radius: 16px !important;
  }

  .serving-text {
    font-size: 14px !important;
    margin-bottom: 30px !important;
  }

  .stats-row {
    gap: 40px !important;
    margin-bottom: 30px !important;
    justify-content: flex-start !important;
  }

  .stat-item {
    padding-left: 20px !important;
  }

  .stat-item h4 {
    font-size: 36px !important;
    margin-bottom: 8px !important;
  }

  .stat-item span {
    font-size: 14px !important;
  }

  .extra-info {
    font-size: 14px !important;
  }

  .extra-info ul {
    margin-left: 25px !important;
    margin-top: 15px !important;
  }

  .extra-info li {
    margin-bottom: 8px !important;
  }

  /* Certification Banner */
  .cert-banner {
    max-width: 1100px !important;
    margin: 60px auto !important;
    padding: 50px !important;
    border-radius: 28px !important;
  }

  .cert-banner h2 {
    font-size: 28px !important;
    margin-bottom: 15px !important;
  }

  .cert-banner p {
    font-size: 16px !important;
    max-width: 700px !important;
    margin: 0 auto 35px !important;
  }

  .cert-badges {
    gap: 15px !important;
    justify-content: center !important;
  }

  .c-badge {
    padding: 12px 24px !important;
    font-size: 14px !important;
  }

  /* Reviews Section */
  .reviews-section {
    padding: 100px 40px !important;
  }

  .review-card {
    width: 350px !important;
    padding: 30px !important;
    margin: 0 15px !important;
  }

  .review-card p {
    font-size: 14px !important;
    line-height: 1.8 !important;
  }

  .review-card h4 {
    font-size: 15px !important;
    margin-top: 20px !important;
  }
}
