/* 
   AWPL (Asclepius Wellness Private Limited) 
   Premium Ayurvedic Distributor Portal Stylesheets 
*/

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

:root {
    /* Color Palette */
    --color-primary: #0B3C20;        /* Deep Forest Emerald */
    --color-primary-light: #1A5432;  /* Lighter Forest Green */
    --color-primary-dark: #062312;   /* Very Dark/Night Green */
    --color-secondary: #C5A059;      /* Warm Antique Gold */
    --color-secondary-hover: #B48F49;/* Deep gold hover */
    --color-bg-base: #FDFBF7;        /* Warm Pearl Cream */
    --color-bg-card: #FFFFFF;        /* Pure White */
    --color-text-main: #1D2D24;      /* Deep Sage Charcoal */
    --color-text-muted: #536359;     /* Slate Sage Green */
    --color-border: #E5EBE6;         /* Soft Greenish Grey */
    --color-gold-light: #F7F1E1;     /* Soft Gold Accent Light */
    --color-accent-red: #B23B3B;     /* Organic Red (warning/discount) */
    
    /* Typography */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    
    /* Shadows & Transitions */
    --shadow-sm: 0 2px 8px rgba(11, 60, 32, 0.04);
    --shadow-md: 0 8px 24px rgba(11, 60, 32, 0.08);
    --shadow-lg: 0 16px 48px rgba(11, 60, 32, 0.12);
    --shadow-gold: 0 8px 24px rgba(197, 160, 89, 0.2);
    --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
    
    /* Dimensions */
    --nav-height: 80px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --max-width: 1280px;
}

/* Base Resets */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--color-bg-base);
    color: var(--color-text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.25;
}

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

button {
    font-family: var(--font-body);
    cursor: pointer;
    border: none;
    outline: none;
    background: none;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-base);
}
::-webkit-scrollbar-thumb {
    background: var(--color-primary-light);
    border: 2px solid var(--color-bg-base);
    border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-primary);
}

/* Utilities */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

.section {
    padding: 100px 0;
}

.section-title-wrapper {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-secondary);
    font-weight: 600;
    display: block;
    margin-bottom: 12px;
}

.section-title {
    font-size: 40px;
    color: var(--color-primary);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background-color: var(--color-secondary);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition-smooth);
    gap: 8px;
}

.btn-primary {
    background-color: var(--color-secondary);
    color: #000;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background-color: var(--color-secondary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    border: 2px solid var(--color-primary);
    color: var(--color-primary);
}

.btn-outline:hover {
    background-color: var(--color-primary);
    color: #fff;
    transform: translateY(-2px);
}

.btn-whatsapp {
    background-color: #25D366;
    color: #fff;
}

.btn-whatsapp:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.25);
}

/* Glassmorphism Classes */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Navigation bar */
.navbar {
    height: var(--nav-height);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-bottom: 1px solid rgba(11, 60, 32, 0.05);
}

.navbar.scrolled {
    background: rgba(11, 60, 32, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    height: 70px;
    border-bottom: 1px solid var(--color-primary-light);
}

.navbar.scrolled .nav-logo h1,
.navbar.scrolled .nav-logo span,
.navbar.scrolled .nav-links a {
    color: #FFFFFF;
}

.navbar.scrolled .nav-logo span {
    color: var(--color-secondary);
}

.nav-container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    width: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--color-secondary);
    box-shadow: 0 4px 12px rgba(11, 60, 32, 0.15);
    transition: transform 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.nav-logo:hover .logo-img {
    transform: scale(1.08) rotate(4deg);
    box-shadow: var(--shadow-gold);
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.nav-logo h1 {
    font-size: 22px;
    color: var(--color-primary);
    letter-spacing: 0.05em;
    font-weight: 700;
    line-height: 1.1;
}

.nav-logo span {
    font-size: 10px;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 0.15em;
    color: var(--color-text-muted);
    text-transform: uppercase;
    margin-top: 1px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: var(--color-text-main);
    position: relative;
    padding: 6px 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-secondary);
    transition: var(--transition-smooth);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 24px;
    color: var(--color-primary);
}

/* Hero Section */
.hero {
    min-height: 90vh;
    padding-top: calc(var(--nav-height) + 20px);
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--color-primary-dark);
    color: #fff;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0.45;
    z-index: 1;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 80% 20%, rgba(197, 160, 89, 0.12) 0%, transparent 60%),
                radial-gradient(circle at 20% 80%, rgba(26, 84, 50, 0.4) 0%, transparent 70%);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    animation: fadeInUp 0.8s ease-out;
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(197, 160, 89, 0.15);
    border: 1px solid rgba(197, 160, 89, 0.3);
    color: var(--color-secondary);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-title {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #FFF;
}

.hero-title span {
    color: var(--color-secondary);
    font-style: italic;
}

.hero-desc {
    font-size: 18px;
    color: #BDCFC4;
    margin-bottom: 40px;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-visual {
    display: flex;
    justify-content: center;
    position: relative;
    animation: floatAnimation 6s ease-in-out infinite;
}

.hero-video-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 16px;
    max-width: 320px;
    width: 100%;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.3), var(--shadow-gold);
    position: relative;
    z-index: 5;
    transition: var(--transition-smooth);
}

.hero-video-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-secondary);
    box-shadow: 0 30px 60px rgba(197, 160, 89, 0.25);
}

.hero-video-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-secondary);
    color: #000000;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(197, 160, 89, 0.4);
    z-index: 10;
}

.hero-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 9 / 16; /* Portrait ratio for Shorts */
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: #000;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.hero-video-info {
    margin-top: 14px;
    text-align: center;
}

.hero-video-info h4 {
    font-size: 16px;
    color: #FFFFFF;
    margin-bottom: 6px;
    font-family: var(--font-body);
    font-weight: 700;
}

.hero-video-info p {
    font-size: 12px;
    color: #ABC0B3;
    line-height: 1.5;
}

/* Distributor Bar with Dual Advisor Cards */
.distributor-bar {
    margin-top: -60px;
    position: relative;
    z-index: 10;
    animation: fadeInUp 1s ease-out 0.2s both;
}

.distributor-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.distributor-card {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 24px 30px;
    border: 1px solid var(--color-border);
    border-top: 4px solid var(--color-secondary);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    transition: var(--transition-smooth);
}

.distributor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(11, 60, 32, 0.12);
}

.dist-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
}

.dist-avatar {
    width: 44px;
    height: 44px;
    background-color: var(--color-gold-light);
    color: var(--color-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.dist-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.dist-card-meta h3 {
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 700;
}

.dist-card-meta span {
    font-size: 12px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.dist-contact-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dist-contact-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.dist-contact-row svg {
    color: var(--color-primary);
    width: 16px;
    height: 16px;
}

.dist-contact-row strong {
    color: var(--color-text-main);
}

.dist-card-actions {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
    margin-top: 8px;
}

.dist-card-actions a {
    padding: 10px;
    font-size: 13px;
}

/* Products Section styling */
.products-filter-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
}

.search-box {
    position: relative;
    max-width: 320px;
    width: 100%;
}

.search-box input {
    width: 100%;
    padding: 12px 16px 12px 42px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    background-color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    transition: var(--transition-smooth);
}

.search-box input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(11, 60, 32, 0.08);
}

.search-box svg {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-text-muted);
}

.filter-tabs {
    display: flex;
    flex-wrap: nowrap;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 8px;
    width: 100%;
    scrollbar-width: thin;
}

.filter-tab {
    padding: 10px 20px;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text-muted);
    border-radius: 50px;
    transition: var(--transition-smooth);
    white-space: nowrap;
}

.filter-tab:hover {
    color: var(--color-primary);
    background-color: #ECF5EE;
}

.filter-tab.active {
    background-color: var(--color-primary);
    color: #FFFFFF;
}

/* Category Section Layout */
.category-section {
    margin-bottom: 60px;
}
.category-section-title {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-secondary);
    display: inline-block;
    font-family: var(--font-heading);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background-color: var(--color-bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: var(--transition-smooth);
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(197, 160, 89, 0.4);
}

.product-image-container {
    height: 240px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #F8FAF7;
    border-bottom: 1px solid var(--color-border);
    padding: 24px;
}

.product-image-display {
    max-height: 190px;
    width: auto;
    object-fit: contain;
    z-index: 2;
    transition: var(--transition-smooth);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.12));
}

.product-card:hover .product-image-display {
    transform: scale(1.05) translateY(-4px);
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.18));
}

.product-card-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--color-primary);
    color: #FFF;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 50px;
    z-index: 2;
}

.product-volume-tag {
    position: absolute;
    bottom: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-text-main);
    border-radius: var(--radius-sm);
    z-index: 2;
}

.product-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-meta-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 10px;
}

.star-rating {
    color: var(--color-secondary);
    font-size: 13px;
    display: flex;
    gap: 2px;
}

.review-text {
    font-size: 12px;
    color: var(--color-text-muted);
}

.product-name {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 6px;
    font-weight: 700;
}

.product-tagline {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-secondary);
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.product-description-short {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 44px;
}

.product-pricing {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px dashed var(--color-border);
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 16px;
}

.price-dp-box {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 10px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 2px;
}

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

.price-mrp-box {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.price-mrp {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.product-buttons {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 8px;
}

.product-buttons button, .product-buttons a {
    padding: 10px;
    font-size: 13px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

.btn-details {
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    background-color: var(--color-bg-base);
    text-align: center;
}

.btn-details:hover {
    background-color: var(--color-border);
}

/* About Us Section */
.about {
    background-color: var(--color-primary);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.08) 0%, transparent 70%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.about-content-subtitle {
    color: var(--color-secondary);
    font-size: 14px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 12px;
    display: block;
}

.about-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
}

.about-content p {
    color: #BDCFC4;
    font-size: 16px;
    margin-bottom: 24px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.about-feature-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 24px;
    border-radius: var(--radius-md);
}

.about-feature-card h4 {
    font-size: 18px;
    color: var(--color-secondary);
    margin-bottom: 8px;
}

.about-feature-card p {
    font-size: 13px;
    color: #ABC0B3;
    margin-bottom: 0;
}

.about-badge-display {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    position: relative;
}

.badge-seal {
    width: 200px;
    height: 200px;
    border: 3px dashed var(--color-secondary);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
    text-align: center;
    animation: rotateSlow 20s linear infinite;
}

.badge-seal-content {
    animation: rotateSlowReverse 20s linear infinite;
    color: #fff;
}

.badge-seal h3 {
    font-size: 18px;
    color: var(--color-secondary);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.badge-seal p {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
}

/* Founder Section styling */
.founder-section {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--color-border);
}

.founder-grid {
    display: grid;
    grid-template-columns: 0.7fr 1.3fr;
    gap: 60px;
    align-items: center;
}

.founder-img-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--color-bg-base);
    background-color: #F8FAF7;
}

.founder-img-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid var(--color-secondary);
    border-radius: calc(var(--radius-lg) - 4px);
    pointer-events: none;
}

.founder-img {
    width: 100%;
    transition: var(--transition-smooth);
    display: block;
}

.founder-img:hover {
    transform: scale(1.03);
}

.founder-details h3 {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.founder-name {
    font-size: 38px;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-weight: 700;
}

.founder-role {
    font-size: 16px;
    font-weight: 600;
    color: var(--color-text-muted);
    margin-bottom: 24px;
    display: block;
    letter-spacing: 0.05em;
}

.founder-quote {
    font-family: var(--font-heading);
    font-size: 18px;
    font-style: italic;
    color: var(--color-primary-light);
    line-height: 1.6;
    margin-bottom: 24px;
    padding-left: 20px;
    border-left: 4px solid var(--color-secondary);
}

.founder-bio {
    font-size: 15px;
    color: var(--color-text-muted);
    line-height: 1.8;
}

/* Consultation & Form Section */
.consultation {
    background-color: var(--color-bg-base);
}

.consultation-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 48px;
    align-items: center;
}

.consult-details h2 {
    font-size: 36px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.consult-details p {
    color: var(--color-text-muted);
    font-size: 16px;
    margin-bottom: 32px;
}

.consult-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.consult-list-item {
    display: flex;
    gap: 16px;
}

.consult-list-icon {
    width: 44px;
    height: 44px;
    background-color: var(--color-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

.consult-list-text h4 {
    font-size: 16px;
    color: var(--color-primary);
}

.consult-list-text p {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 0;
}

.consult-form-wrapper {
    background-color: #FFFFFF;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 48px;
    border: 1px solid var(--color-border);
}

.consult-form h3 {
    font-size: 24px;
    color: var(--color-primary);
    margin-bottom: 24px;
}

.form-group-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--color-text-main);
    margin-bottom: 8px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    font-family: var(--font-body);
    font-size: 14px;
    background-color: var(--color-bg-base);
    outline: none;
    transition: var(--transition-smooth);
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    border-color: var(--color-primary);
    background-color: #FFF;
    box-shadow: 0 0 0 3px rgba(11, 60, 32, 0.08);
}

.form-group textarea {
    resize: vertical;
}

.form-submit-btn {
    width: 100%;
    background-color: var(--color-primary);
    color: #fff;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 15px;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-sm);
}

.form-submit-btn:hover {
    background-color: var(--color-primary-light);
    transform: translateY(-2px);
}

/* Footer Section */
.footer {
    background-color: var(--color-primary-dark);
    color: #fff;
    padding: 80px 0 30px 0;
    border-top: 4px solid var(--color-secondary);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1.4fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-brand h2 {
    font-size: 28px;
    color: #fff;
    margin-bottom: 8px;
}

.footer-brand h2 span {
    color: var(--color-secondary);
}

.footer-brand p {
    color: #BDCFC4;
    font-size: 14px;
    margin-bottom: 24px;
    line-height: 1.8;
}

.footer-title {
    font-size: 18px;
    color: var(--color-secondary);
    margin-bottom: 24px;
    position: relative;
    padding-bottom: 8px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background-color: var(--color-secondary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #BDCFC4;
    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 6px;
}

.footer-contact li {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    font-size: 14px;
    color: #BDCFC4;
}

.footer-contact svg {
    color: var(--color-secondary);
    flex-shrink: 0;
    width: 18px;
    height: 18px;
}

.footer-advisors-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-advisor-item {
    background-color: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
}

.footer-advisor-item strong {
    color: #FFF;
    display: block;
    font-size: 13px;
}

.footer-advisor-item span {
    color: var(--color-secondary);
    font-size: 11px;
}

.footer-advisor-item a {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: #BDCFC4;
    margin-top: 4px;
}

.footer-advisor-item a:hover {
    color: var(--color-secondary);
}

.disclaimer-box {
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-sm);
    padding: 20px;
}

.disclaimer-box h4 {
    font-size: 12px;
    text-transform: uppercase;
    color: var(--color-secondary);
    margin-bottom: 8px;
    font-weight: 700;
}

.disclaimer-box p {
    font-size: 11px;
    color: #8CA094;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copy {
    font-size: 13px;
    color: #BDCFC4;
}

.footer-certifications {
    display: flex;
    gap: 16px;
    font-size: 11px;
    font-weight: 600;
    color: var(--color-secondary);
    letter-spacing: 0.05em;
}

/* Modal Dialog Styles */
.modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(6, 35, 18, 0.75);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1010;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 24px;
}

.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background-color: #FFFFFF;
    border-radius: var(--radius-lg);
    border: 1px solid var(--color-border);
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    background: #ECF5EE;
    color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: var(--transition-smooth);
    z-index: 10;
}

.modal-close-btn:hover {
    background: var(--color-primary);
    color: #fff;
}

.modal-header-hero {
    color: #fff;
    padding: 50px 48px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.modal-header-info {
    position: relative;
    z-index: 2;
}

.modal-category {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    background: rgba(255,255,255,0.2);
    padding: 4px 10px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 12px;
    font-weight: 600;
}

.modal-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
}

.modal-tagline {
    font-size: 16px;
    color: var(--color-secondary);
    font-weight: 500;
}

.modal-header-visual {
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: var(--radius-md);
    padding: 12px;
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.modal-product-img {
    max-height: 110px;
    width: auto;
    object-fit: contain;
}

.modal-body {
    padding: 48px;
}

.modal-grid-two-cols {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 48px;
}

.modal-section-title {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 16px;
    border-bottom: 2px solid var(--color-border);
    padding-bottom: 8px;
    font-weight: 700;
}

.modal-description {
    font-size: 15px;
    color: var(--color-text-main);
    margin-bottom: 32px;
    line-height: 1.7;
}

.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 32px;
}

.ingredient-item {
    display: flex;
    gap: 16px;
}

.ingredient-bullet {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: var(--color-gold-light);
    color: var(--color-secondary);
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.ingredient-text strong {
    color: var(--color-primary);
    font-size: 14px;
    display: block;
}

.ingredient-text p {
    font-size: 13px;
    color: var(--color-text-muted);
}

.modal-right-col {
    background-color: var(--color-bg-base);
    border-radius: var(--radius-md);
    padding: 30px;
    border: 1px solid var(--color-border);
    height: fit-content;
}

.modal-info-stat {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px dashed var(--color-border);
}

.modal-info-stat:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.modal-stat-label {
    font-size: 11px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    display: block;
    margin-bottom: 4px;
}

.modal-stat-val {
    font-size: 15px;
    font-weight: 600;
    color: var(--color-text-main);
}

.modal-price-box {
    margin-bottom: 24px;
}

.modal-price-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 8px;
}

.modal-price-item {
    background: #fff;
    padding: 10px 14px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
}

.modal-price-item .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--color-primary);
}

.modal-price-item .price.discounted {
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
}

.notice-box {
    background: #FFF9E6;
    border: 1px solid #FFE58F;
    padding: 12px;
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: #856404;
    margin-top: 16px;
}

.notice-box strong {
    display: block;
    margin-bottom: 2px;
}

.modal-advisor-select-box {
    margin-top: 16px;
}

.modal-advisor-select-box label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--color-text-muted);
    font-weight: 600;
    margin-bottom: 6px;
}

.modal-advisor-select-box select {
    width: 100%;
    padding: 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    font-size: 13px;
    background-color: #fff;
    outline: none;
}

.modal-order-btn {
    width: 100%;
    margin-top: 16px;
}

/* Form Submission Toast Notifications */
.toast-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1100;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.toast {
    background: #FFFFFF;
    border-left: 5px solid var(--color-secondary);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 14px;
    transform: translateY(100px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    max-width: 400px;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

.toast.success {
    border-left-color: #25D366;
}

.toast-icon {
    font-size: 20px;
}

.toast-text h4 {
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 2px;
}

.toast-text p {
    font-size: 12px;
    color: var(--color-text-muted);
}

/* ==========================================================================
   ANIMATIONS & SCROLL REVEAL SYSTEM
   ========================================================================== */

/* --- Base Keyframes --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.85);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes floatAnimation {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-12px); }
    100% { transform: translateY(0px); }
}

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

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

@keyframes pulseGlow {
    0%, 100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
    50% { box-shadow: 0 0 0 12px rgba(197, 160, 89, 0); }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes cartBounce {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(1.25); }
    60% { transform: scale(0.95); }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes subtleBreathe {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.02); }
}

/* --- Scroll Reveal & Micro Animations --- */
.reveal {
    opacity: 1;
    transform: none;
}

.product-card {
    opacity: 1;
    transform: none;
    transition: var(--transition-smooth);
}

/* --- Micro Animations on Existing Elements --- */

/* Navbar smooth appear */
.navbar {
    animation: fadeInDown 0.6s ease-out;
}

/* Hero section entrance */
.hero-content {
    animation: fadeInUp 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.1s both;
}

.hero-visual {
    animation: fadeInRight 0.9s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both,
               floatAnimation 6s ease-in-out 1s infinite;
}

.badge {
    animation: fadeInUp 0.7s ease-out 0.2s both;
}

/* Section title shimmer effect */
.section-subtitle {
    background: linear-gradient(90deg, var(--color-secondary) 0%, #E8D5A1 30%, var(--color-secondary) 60%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 4s linear infinite;
}

/* Pricing notice card subtle pulse */
.pricing-notice-card {
    transition: var(--transition-smooth);
}

.pricing-notice-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* Product card image hover zoom + glow */
.product-card:hover .product-image-container {
    background-color: #F0F6F1;
}

.product-card:hover .product-card-badge {
    background: var(--color-secondary);
    color: #000;
}

/* About feature cards stagger */
.about-feature-card {
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.4s ease,
                background-color 0.4s ease;
}

.about-feature-card:hover {
    transform: translateY(-5px);
    background-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 24px rgba(197, 160, 89, 0.15);
}

/* Distributor card hover glow */
.distributor-card:hover {
    box-shadow: 0 16px 40px rgba(11, 60, 32, 0.15), 0 0 0 2px rgba(197, 160, 89, 0.2);
}

/* Floating cart button pulse */
.floating-cart-btn {
    animation: pulseGlow 2.5s ease-in-out infinite;
}

.floating-cart-btn:active {
    transform: scale(0.92);
}

/* Cart badge bounce on update */
.cart-badge.bounce {
    animation: cartBounce 0.4s ease-out;
}

/* Cart modal slide-in */
#cart-modal-overlay .cart-modal-content {
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
}

#cart-modal-overlay.active .cart-modal-content {
    transform: translateX(0);
}

/* Product detail modal scale-in */
#product-modal-overlay .modal-content {
    transform: scale(0.92);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                opacity 0.35s ease;
}

#product-modal-overlay.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

/* Filter tab active transition */
.filter-tab {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

.filter-tab.active {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(11, 60, 32, 0.2);
}

/* Founder image subtle breathe */
.founder-img-wrapper {
    transition: transform 0.6s ease;
}

.founder-img-wrapper:hover {
    transform: scale(1.02);
}

/* Button ripple-like press effect */
.btn-primary:active,
.btn-whatsapp:active,
.btn-outline:active {
    transform: scale(0.96) !important;
    transition: transform 0.1s ease;
}

/* Smooth category title underline grow */
.category-section-title {
    position: relative;
    overflow: hidden;
}

.category-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-secondary);
    transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.category-section.revealed .category-section-title::after {
    width: 100%;
}

/* Toast notification slide in */
.toast {
    animation: slideInRight 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Badge seal glow on about section */
.badge-seal {
    transition: box-shadow 0.4s ease;
}

.badge-seal:hover {
    box-shadow: 0 0 30px rgba(197, 160, 89, 0.3);
}

/* Smooth scrollbar for cart items */
.cart-items-container::-webkit-scrollbar {
    width: 5px;
}
.cart-items-container::-webkit-scrollbar-track {
    background: transparent;
}
.cart-items-container::-webkit-scrollbar-thumb {
    background: var(--color-border);
    border-radius: 10px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    .reveal {
        opacity: 1;
        transform: none;
    }
    .product-card {
        opacity: 1;
        transform: none;
    }
}

/* Responsiveness adjustments */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 40px;
    }
    
    .distributor-grid {
        grid-template-columns: 1fr;
    }
    
    .founder-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-img-wrapper {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .consultation-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .modal-grid-two-cols {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .safety-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .results-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    :root {
        --nav-height: 60px;
    }
    
    .section {
        padding: 40px 0;
    }
    
    /* Sticky mobile navbar colors when active */
    .navbar.nav-open {
        background: rgba(11, 60, 32, 0.98) !important;
        border-bottom: 1px solid var(--color-primary-light);
    }
    
    .navbar.nav-open .nav-logo h1,
    .navbar.nav-open .nav-logo span,
    .navbar.nav-open .mobile-menu-btn {
        color: #FFFFFF !important;
    }
    
    .nav-links {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: var(--nav-height);
        left: 0;
        right: 0;
        background: rgba(6, 35, 18, 0.98);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 24px;
        gap: 16px;
        border-bottom: 2px solid var(--color-secondary);
        transform: translateY(-10px);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-links a {
        color: #FFFFFF !important;
        font-size: 16px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        width: 100%;
        text-align: left;
    }
    
    .nav-links a:last-child {
        border-bottom: none;
    }
    
    .mobile-menu-btn {
        display: block;
        background: transparent;
        border: none;
        cursor: pointer;
    }
    
    /* Hero section optimized for mobile */
    .hero {
        padding: 90px 0 50px 0;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hero-bg-image {
        width: 100%;
        opacity: 0.12;
    }
    
    .hero-title {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-desc {
        font-size: 14px;
        margin-bottom: 24px;
    }
    
    .hero-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .hero-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    
    .hero-visual {
        display: flex;
        justify-content: center;
        width: 100%;
        margin-top: 32px;
    }
    
    /* Compact Advisor Cards on Mobile */
    .distributor-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .distributor-card {
        padding: 16px;
    }
    
    .dist-avatar {
        width: 40px;
        height: 40px;
    }
    
    .dist-card-meta h3 {
        font-size: 16px;
    }
    
    .dist-card-meta span {
        font-size: 11px;
    }
    
    .dist-contact-info {
        gap: 8px;
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    /* Double Column (2 Cards per Row) Product Catalog on Mobile */
    .products-filter-container {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
        width: 100%;
        overflow: hidden;
    }
    
    .search-box {
        max-width: 100%;
    }
    
    .filter-tabs {
        display: flex;
        flex-wrap: nowrap;
        overflow-x: auto;
        white-space: nowrap;
        padding-bottom: 8px;
        justify-content: flex-start;
        gap: 8px;
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
    
    .filter-tab {
        padding: 8px 16px;
        font-size: 12px;
        flex-shrink: 0;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    
    .product-card {
        border-radius: var(--radius-md);
        padding: 8px;
        display: flex;
        flex-direction: column;
    }
    
    .product-image-container {
        height: 130px;
        border-radius: calc(var(--radius-md) - 4px);
    }
    
    .product-card-badge {
        font-size: 8px;
        padding: 2px 6px;
        top: 6px;
        left: 6px;
    }
    
    .product-volume-tag {
        font-size: 9px;
        padding: 2px 6px;
        bottom: 6px;
        right: 6px;
    }
    
    .product-details {
        padding: 8px 2px 2px 2px;
        display: flex;
        flex-direction: column;
        flex-grow: 1;
    }
    
    .product-name {
        font-size: 13px;
        line-height: 1.3;
        margin-bottom: 2px;
        height: 34px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .product-tagline {
        font-size: 9px;
        margin-bottom: 8px;
        height: 12px;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    
    .product-description-short {
        display: none; /* Hide on mobile cards for grid balance */
    }
    
    .product-pricing {
        flex-direction: column;
        align-items: flex-start;
        gap: 2px;
        margin-bottom: 8px;
        margin-top: auto;
    }
    
    .price-dp-box, .price-mrp-box {
        align-items: flex-start;
        width: 100%;
    }
    
    .price-label {
        font-size: 8px;
        margin-bottom: 0;
    }
    
    .price-dp {
        font-size: 15px;
    }
    
    .price-mrp {
        font-size: 11px;
    }
    
    .product-buttons {
        grid-template-columns: 1fr;
        gap: 6px;
        width: 100%;
    }
    
    .product-buttons button, .product-buttons a {
        font-size: 11px;
        padding: 8px 4px;
        text-align: center;
        justify-content: center;
    }
    
    /* Footer layout on Mobile */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 16px;
    }
    
    /* Premium Mobile Bottom-Sheet Modal Dialog */
    .modal-overlay {
        align-items: flex-end;
        padding: 0;
    }
    
    .modal-content {
        max-height: 90vh;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        transform: translateY(100%);
        box-shadow: 0 -10px 40px rgba(6, 35, 18, 0.2);
    }
    
    .modal-overlay.active .modal-content {
        transform: translateY(0);
    }
    
    .modal-close-btn {
        top: 16px;
        right: 16px;
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    
    .modal-header-hero {
        padding: 24px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .modal-header-visual {
        display: none;
    }
    
    .modal-title {
        font-size: 26px;
    }
    
    .modal-tagline {
        font-size: 14px;
    }
    
    .modal-body {
        padding: 20px;
    }
    
    .modal-grid-two-cols {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .modal-right-col {
        padding: 16px;
    }
    
    .form-group-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .cert-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .cert-card {
        padding: 12px;
    }
}

/* Safety & Certifications Section styling */
.safety-section {
    background-color: var(--color-bg-base);
    border-bottom: 1px solid var(--color-border);
}

.safety-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.safety-content .section-title {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

.safety-desc {
    color: var(--color-text-muted);
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

.cert-card {
    display: flex;
    gap: 14px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    padding: 16px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.cert-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
}

.cert-icon-wrapper {
    width: 40px;
    height: 40px;
    background-color: var(--color-gold-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    flex-shrink: 0;
}

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

.cert-info h4 {
    font-size: 14px;
    color: var(--color-primary);
    margin-bottom: 4px;
    font-weight: 700;
}

.cert-info p {
    font-size: 12px;
    color: var(--color-text-muted);
    line-height: 1.5;
    margin-bottom: 0;
}

.safety-video-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(11, 60, 32, 0.15);
    border: 4px solid #FFFFFF;
}

.video-wrapper::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid var(--color-secondary);
    border-radius: calc(var(--radius-lg) - 4px);
    pointer-events: none;
    z-index: 5;
}

.video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-caption {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: #FFFFFF;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-border);
    font-size: 13px;
    color: var(--color-text-main);
    font-weight: 600;
}

/* Pricing Notice Banner and Info Cards */
.pricing-notice-card {
    background-color: var(--color-gold-light);
    border-left: 4px solid var(--color-secondary);
    border-radius: var(--radius-sm);
    padding: 20px 24px;
    margin-top: 10px;
    margin-bottom: 30px;
    display: flex;
    gap: 18px;
    align-items: flex-start;
    box-shadow: var(--shadow-sm);
    animation: fadeInUp 0.8s ease-out;
}

.pricing-notice-icon {
    color: var(--color-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 3px;
}

.pricing-notice-content {
    flex-grow: 1;
}

.pricing-notice-content h4 {
    color: var(--color-primary);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    font-family: var(--font-body);
}

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

.pricing-notice-content ul {
    margin-top: 10px;
    padding-left: 20px;
    font-size: 13.5px;
    color: var(--color-text-main);
    list-style-type: disc;
}

.pricing-notice-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.modal-price-info-notice {
    margin-top: 16px;
    background-color: var(--color-gold-light);
    border-left: 3px solid var(--color-secondary);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.modal-price-info-notice p {
    font-size: 12px;
    color: var(--color-text-main);
    line-height: 1.5;
    margin: 0;
}

.modal-price-info-notice svg {
    flex-shrink: 0;
    margin-top: 2px;
}

/* Premium Product Video Layout inside Modal */
.modal-video-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
    background-color: #000000;
}

.modal-video-container.portrait {
    padding-bottom: 177.77%; /* 9:16 Aspect Ratio */
    max-width: 320px;
    margin: 0 auto;
}

.modal-video-container iframe,
.modal-video-container video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: var(--radius-md);
}

/* Results Section styling */
.results-section {
    background-color: #FFFFFF;
    border-bottom: 1px solid var(--color-border);
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.result-video-card {
    background-color: var(--color-bg-base);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}

.result-video-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--color-secondary);
}

.result-video-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-bottom: 1px solid var(--color-border);
    background-color: #000;
}

.result-video-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.result-video-info {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-video-info h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.result-video-info p {
    font-size: 14px;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* Coming Soon Placeholder Card */
.result-video-card.placeholder-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    border: 2px dashed var(--color-secondary);
    background: linear-gradient(135deg, var(--color-bg-base) 0%, rgba(197, 160, 89, 0.05) 100%);
    min-height: 300px;
}

.placeholder-icon-wrapper {
    width: 64px;
    height: 64px;
    background-color: var(--color-gold-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-secondary);
    margin-bottom: 20px;
    animation: floatAnimation 4s ease-in-out infinite;
}

.placeholder-icon-wrapper svg {
    width: 32px;
    height: 32px;
}

.placeholder-content h4 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.placeholder-content p {
    font-size: 14px;
    color: var(--color-text-muted);
    max-width: 320px;
    margin: 0 auto;
}

/* Responsiveness for Results Section */
@media (max-width: 768px) {
    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .result-video-card.placeholder-card {
        padding: 30px 16px;
        min-height: 250px;
    }
    
    .placeholder-icon-wrapper {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
    
    .placeholder-icon-wrapper svg {
        width: 26px;
        height: 26px;
    }
    
    .placeholder-content h4 {
        font-size: 18px;
    }
}

/* Clickable Video Thumbnail Card styles */
.clickable-video-card {
    display: block;
    cursor: pointer;
    text-decoration: none;
}

.thumbnail-player {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.video-thumbnail-img {
    width: 100%;
    height: 122%;
    object-fit: cover;
    object-position: center top;
    transition: var(--transition-smooth);
}

.hero-video-card:hover .video-thumbnail-img {
    transform: scale(1.05);
}

.play-button-overlay {
    position: absolute;
    inset: 0;
    background: rgba(6, 35, 18, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    z-index: 2;
}

.hero-video-card:hover .play-button-overlay {
    background: rgba(6, 35, 18, 0.2);
}

.play-button-glove {
    width: 64px;
    height: 64px;
    background-color: var(--color-secondary);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(197, 160, 89, 0.5);
    transition: var(--transition-smooth);
}

.hero-video-card:hover .play-button-glove {
    transform: scale(1.1);
    background-color: #FFFFFF;
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.8);
}

/* ==========================================================================
   CART SYSTEM STYLES
   ========================================================================== */

.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition-smooth);
    border: 2px solid var(--color-secondary);
}

.floating-cart-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(11, 60, 32, 0.25);
    background-color: var(--color-primary-light);
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: var(--color-accent-red);
    color: white;
    font-size: 12px;
    font-weight: 700;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}
#cart-modal-overlay {
    justify-content: flex-end;
    padding: 0;
}

.cart-modal-content {
    background: white;
    width: 100%;
    max-width: 460px;
    height: 100vh;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: relative;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.cart-modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--color-bg-base);
}

.cart-modal-header h2 {
    font-size: 20px;
    color: var(--color-primary);
    margin: 0;
}

.cart-modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: var(--transition-smooth);
    background: white;
}

.cart-modal-close:hover {
    background: var(--color-accent-red);
    color: white;
    transform: rotate(90deg);
}

.cart-items-container {
    flex: 1;
    overflow-y: auto;
    padding: 20px 24px;
}

.cart-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--color-border);
}

.cart-item-img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
    border: 1px solid var(--color-border);
}

.cart-item-details {
    flex: 1;
}

.cart-item-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-text-main);
    margin-bottom: 4px;
}

.cart-item-price {
    font-size: 13px;
    color: var(--color-primary);
    font-weight: 600;
}

.cart-item-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background: var(--color-bg-base);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.qty-btn:hover {
    background: var(--color-primary);
    color: white;
}

.remove-btn {
    color: var(--color-accent-red);
    cursor: pointer;
    padding: 4px;
}

.cart-summary-section {
    padding: 20px 24px;
    background: var(--color-bg-base);
    border-top: 1px solid var(--color-border);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    margin-bottom: 8px;
    color: var(--color-text-muted);
}

.cart-total-row {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-primary);
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed var(--color-border);
}

.cart-savings-row {
    color: var(--color-secondary);
    font-weight: 600;
}

.cart-customer-details {
    padding: 0 24px 20px;
    background: var(--color-bg-base);
}

.cart-modal-footer {
    padding: 20px 24px;
    border-top: 1px solid var(--color-border);
}

@media (max-width: 768px) {
    .floating-cart-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
    }
    
    .cart-modal-content {
        height: 100vh;
        max-width: 100%;
        border-radius: 0;
    }
}
