/* ========================
   OPTIMIZED STYLE.CSS FILE
   All functionality preserved, design unchanged
   ======================== */

/* CSS Variables - Optimized */
:root {
    /* Color Palette - Consolidated */
    --primary: #2E7D32;
    --primary-dark: #1B5E20;
    --primary-light: #4CAF50;
    --secondary: #FF9800;
    --secondary-dark: #e68900;
    --accent: #4CAF50;
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --text-lighter: #888888;
    --bg-light: #F9F9F9;
    --bg-white: #FFFFFF;
    --border: #E0E0E0;
    --light: #f8f9fa;
    --dark: #303030;
    --gray: #828282;
    --light-gray: #f2f2f2;
    --white: #ffffff;
    --success: #27ae60;
    --warning: #f2994a;
    --danger: #eb5757;
    
    /* Shadows - Consolidated */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.18);
    --shadow-xl: 0 15px 50px rgba(0,0,0,0.2);
    
    /* Transitions - Consolidated */
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-fast: all 0.2s ease;
    --transition-slow: all 0.5s ease;
    
    /* Border Radius - Consolidated */
    --radius-sm: 8px;
    --radius: 12px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-round: 50%;
    
    /* Spacing - Consolidated */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 5rem;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--bg-white);
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,.02) 2px, rgba(0,0,0,.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(0,0,0,.02) 2px, rgba(0,0,0,.02) 4px);
    position: relative;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(46, 125, 50, 0.03) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(76, 175, 80, 0.03) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 500;
    line-height: 1.2;
    margin-bottom: var(--spacing-md);
    color: var(--dark);
}

h1 {
    font-size: 4.5rem;
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: var(--spacing-sm);
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 70px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

h2.text-center::after {
    left: 50%;
    transform: translateX(-50%);
}

h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: var(--spacing-md);
    color: var(--gray);
    font-size: 1.05rem;
    line-height: 1.7;
}

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

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

ul, ol { margin: 0 0 var(--spacing-md) var(--spacing-lg); }
img { max-width: 100%; height: auto; display: block; }

/* Container */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
    position: relative;
    z-index: 1;
}

.container-fluid {
    width: 100%;
    padding: 0 var(--spacing-md);
}

/* Utility Classes */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-primary { color: var(--primary); }
.text-secondary { color: var(--secondary); }
.text-white { color: var(--white); }
.text-gray { color: var(--gray); }

.bg-light { background-color: var(--light); }
.bg-dark { background-color: var(--dark); }
.bg-primary { background-color: var(--primary); }
.bg-secondary { background-color: var(--secondary); }

.mt-1 { margin-top: var(--spacing-sm); }
.mt-2 { margin-top: var(--spacing-md); }
.mt-3 { margin-top: var(--spacing-lg); }
.mt-4 { margin-top: var(--spacing-xl); }

.mb-1 { margin-bottom: var(--spacing-sm); }
.mb-2 { margin-bottom: var(--spacing-md); }
.mb-3 { margin-bottom: var(--spacing-lg); }
.mb-4 { margin-bottom: var(--spacing-xl); }

.py-1 { padding-block: var(--spacing-sm); }
.py-2 { padding-block: var(--spacing-md); }
.py-3 { padding-block: var(--spacing-lg); }
.py-4 { padding-block: var(--spacing-xl); }

.px-1 { padding-inline: var(--spacing-sm); }
.px-2 { padding-inline: var(--spacing-md); }
.px-3 { padding-inline: var(--spacing-lg); }
.px-4 { padding-inline: var(--spacing-xl); }

.align-center { align-items: center; }
.justify-center { justify-content: center; }

.gap-1 { gap: var(--spacing-sm); }
.gap-2 { gap: var(--spacing-md); }
.gap-3 { gap: var(--spacing-lg); }
.gap-4 { gap: var(--spacing-xl); }

/* Section Spacing */
section {
    padding: var(--spacing-xxl) 0;
    position: relative;
}

.section-sm { padding: var(--spacing-xl) 0; }
.section-lg { padding: var(--spacing-xxl) 0; }

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

.section-header h2 {
    font-family: 'Playfair', sans-serif;
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: 550;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-light);
    max-width: 750px;
    margin: 0 auto;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.2);
    transition: var(--transition);
    z-index: -1;
}

.btn:hover::before { width: 100%; }

.btn-primary {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-secondary {
    background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
    color: var(--white);
    box-shadow: var(--shadow-md);
}

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

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.btn-small { padding: 10px 20px; font-size: 0.9rem; }
.btn-large { padding: 20px 40px; font-size: 1.1rem; }
.btn-block { width: 100%; }

.btn-group {
    display: flex;
    gap: var(--spacing-sm);
    flex-wrap: wrap;
}

/* HEADER & NAVIGATION */
.top-bar {
    background-color: var(--primary-dark);
    color: var(--white);
    padding: 10px 0;
    font-size: 0.9rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: var(--spacing-lg);
}

.top-bar-contact a {
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.top-bar-contact a:hover { color: var(--secondary); }

.social-icons {
    display: flex;
    gap: var(--spacing-sm);
}

.social-icons a {
    color: var(--white);
    font-size: 1rem;
    transition: var(--transition);
}

.social-icons a:hover {
    color: var(--secondary);
    transform: translateY(-2px);
}

/* Header Base */
.header {
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition-slow);
}

.header:not(.scrolled) {
    background: rgba(0, 0, 0, 0.4) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.header:not(.scrolled) .main-nav a,
.header:not(.scrolled) .contact-info,
.header:not(.scrolled) .mobile-menu-btn {
    color: #ffffff !important;
}

.header:not(.scrolled) .logo-text h1 {
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(46, 125, 50, 0.1);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}

.header.scrolled .main-nav a,
.header.scrolled .contact-info,
.header.scrolled .mobile-menu-btn {
    color: var(--text-dark);
}

.header.scrolled .logo-text h1 {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.header-container,
.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    text-decoration: none;
    transition: var(--transition);
}

.logo:hover { transform: translateY(-2px); }

.logo-img,
.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
    transition: var(--transition);
}

.logo img:hover { transform: scale(1.05); }

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

.logo-text h1 {
    font-size: 1.8rem;
    margin: 0;
    line-height: 1;
}

.logo-text span {
    font-size: 0.9rem;
    color: var(--gray);
}

/* Navigation */
nav ul,
.main-nav {
    display: flex;
    list-style: none;
    gap: var(--spacing-lg);
}

nav ul li a,
.main-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 550;
    font-size: 15px;
    position: relative;
    padding: 8px 16px;
    transition: var(--transition);
    border-radius: 8px;
}

.main-nav a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: translateX(-50%);
    transition: var(--transition);
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary);
    transition: var(--transition);
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary);
}

nav ul li a:hover::after,
nav ul li a.active::after,
.main-nav a:hover::before,
.main-nav a.active::before {
    width: 80%;
}

.main-nav a:hover {
    color: var(--primary);
    background: rgba(46, 125, 50, 0.05);
}

.main-nav a.active {
    color: var(--primary);
    background: rgba(46, 125, 50, 0.08);
}

/* Contact Info */
.contact-info {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--primary);
    font-weight: 550;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(46, 125, 50, 0.08), rgba(76, 175, 80, 0.08));
    border-radius: var(--radius);
    border: 1px solid rgba(46, 125, 50, 0.2);
}

.contact-info i {
    font-size: 18px;
    animation: pulse 2s infinite;
}

/*.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
    transition: var(--transition);
}

.mobile-menu-btn:hover { color: var(--primary); }*/

/* HERO SECTION */
.full-hero {
    background-image: linear-gradient(135deg, rgba(0,0,0, 0.4), rgba(0,0,0, 0.3)), url('images/fruits.jpg');
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.hero-content h1 {
    background: none;
    color: #FFFFFF;
    -webkit-text-fill-color: #FFFFFF;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    font-size: 3.8rem;
    line-height: 1;
}

.hero-subtitle {
    font-size: 2rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    font-weight: 550;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    opacity: 0.95;
}

.hero-description {
    font-size: 1.3rem;
    margin-bottom: 50px;
    color: #FFFFFF;
    opacity: 0.9;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
    font-weight: 400;
}

/* Store Finder */
.store-finder {
    background: #FFFFFF;
    backdrop-filter: blur(10px);
    padding: 40px;
    border-radius: 16px;
    margin-top: 40px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.3);
    max-width: 800px;
    margin-inline: auto;
    text-align: center;
}

.store-finder h2 {
    color: #2E7D32;
    margin-bottom: 25px;
    font-size: 1.8rem;
    font-weight: 550;
    font-family: 'Poppins', sans-serif;
}

.search-container {
    display: flex;
    align-items: center;
    background: #FFFFFF;
    border: 2px solid #E0E0E0;
    border-radius: 10px;
    padding: 6px 10px 6px 20px;
    margin-bottom: 20px;
    transition: var(--transition);
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.search-container:focus-within {
    border-color: #2E7D32;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.15);
}

.search-container i {
    color: #2E7D32;
    font-size: 20px;
    margin-right: 15px;
}

.search-container input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 14px 0;
    background: transparent;
    font-weight: 500;
    color: #333333;
}

.search-container input::placeholder {
    color: #888888;
    font-weight: 400;
}

.find-btn {
    background: #2E7D32;
    color: white;
    border: none;
    padding: 14px 35px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 550;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.3);
}

.find-btn:hover {
    background: #1B5E20;
    box-shadow: 0 6px 12px rgba(46, 125, 50, 0.4);
    transform: translateY(-2px);
}

.find-btn:active { transform: translateY(0); }

.popular-locations p {
    color: #333333;
    font-weight: 550;
    margin-bottom: 15px;
    font-size: 15px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 15px;
    justify-content: center;
}

.location-tag {
    background: #F5F5F5;
    color: #333333;
    padding: 10px 22px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: var(--transition);
    border: 1.5px solid #E0E0E0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.03);
    font-family: 'Inter', sans-serif;
}

.location-tag:hover {
    background: #2E7D32;
    color: white;
    border-color: #2E7D32;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(46, 125, 50, 0.2);
}

.explore-more {
    color: #2E7D32;
    text-decoration: none;
    font-weight: 550;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(46, 125, 50, 0.05);
    font-size: 14px;
    font-family: 'Inter', sans-serif;
}

.explore-more:hover {
    color: #1B5E20;
    gap: 12px;
    background: rgba(46, 125, 50, 0.1);
}

/* Grid Systems */
.grid { display: grid; gap: var(--spacing-lg); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* Card Styles */
.card {
    background-color: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    height: 100%;
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.card-img {
    height: 180px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
}

.card-body { padding: var(--spacing-lg); }
.card-title { margin-bottom: var(--spacing-sm); }

.card-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Badges */
.badge {
    display: inline-block;
    padding: 6px 12px;
    font-size: 0.75rem;
    font-weight: 550;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 20px;
    margin-bottom: var(--spacing-sm);
}

.badge-primary {
    background-color: var(--primary-light);
    color: var(--primary-dark);
}

.badge-secondary {
    background-color: rgba(242, 153, 74, 0.2);
    color: var(--secondary-dark);
}

.badge-success {
    background-color: rgba(39, 174, 96, 0.2);
    color: var(--success);
}

/* Why Us Section */
.why-us {
    background: linear-gradient(135deg, #f8fff8 0%, #f0f9f5 100%);
    position: relative;
}

.why-us::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(46,125,50,.02) 35px, rgba(46,125,50,.02) 70px);
    pointer-events: none;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
}

.feature {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 125, 50, 0.08);
}

.feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature:hover::before { transform: scaleX(1); }

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    box-shadow: 0 8px 20px rgba(46, 125, 50, 0.3);
    transition: var(--transition);
}

.feature:hover .feature-icon {
    transform: rotate(10deg) scale(1.1);
}

.feature h3 {
    font-size: 1.4rem;
    margin-bottom: 18px;
    color: var(--text-dark);
    font-weight: 600;
}

.feature p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
}

/* Featured Products */
.featured-products-section {
    padding: 60px 0 40px;
}

.featured-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 35px;
    margin-top: 60px;
}

.featured-product-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-product-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(46,125,50,0.03) 100%);
    opacity: 0;
    transition: var(--transition);
}

.featured-product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-lg);
}

.featured-product-card:hover::before { opacity: 1; }

.product-image {
    height: 240px;
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

.product-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(46,125,50,0.85), rgba(76,175,80,0.85));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.featured-product-card:hover .product-overlay { opacity: 1; }

.overlay-icon {
    color: white;
    font-size: 50px;
    transform: scale(0.5) rotate(-180deg);
    transition: var(--transition);
}

.featured-product-card:hover .overlay-icon {
    transform: scale(1) rotate(0deg);
}

.product-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 240px);
    min-height: 260px;
}

.product-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 550;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.product-badge.fresh-produce {
    background: linear-gradient(135deg, #DFF5E6, #C8E6C9);
    color: #2E7D32;
}

.product-badge.kitchen-staples {
    background: linear-gradient(135deg, #FFF1DD, #FFE0B2);
    color: #F57C00;
}

.product-badge.snacks {
    background: linear-gradient(135deg, #E9F7EF, #C8E6C9);
    color: #2E7D32;
}

.product-badge.beverages {
    background: linear-gradient(135deg, #E3F2FD, #BBDEFB);
    color: #1976D2;
}

.product-title {
    font-size: 1.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-dark);
    letter-spacing: -0.5px;
}

.product-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    flex-grow: 1;
}

.view-products-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 16px 0;
    border-radius: 12px;
    border: 2px solid var(--primary);
    text-align: center;
    font-weight: 550;
    text-decoration: none;
    color: var(--primary);
    transition: var(--transition);
    background: var(--bg-white);
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
    min-height: 52px;
}

.view-products-btn:hover {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.3);
    transform: translateY(-2px);
}

/* About Section */
.about-store {
    padding: 40px 0 60px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fff8 100%);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-text h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 550;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.about-text p {
    color: var(--text-light);
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 30px;
}

.about-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.about-image img:hover {
    transform: scale(1.03);
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline:before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 50px;
    position: relative;
}

.timeline-item:nth-child(odd) { flex-direction: row; }
.timeline-item:nth-child(even) { flex-direction: row-reverse; }

.timeline-date {
    flex: 1;
    padding: 10px;
    text-align: center;
    font-weight: 550;
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-content { flex: 2; padding: 20px; }

.timeline-dot {
    position: absolute;
    left: 50%;
    top: 30px;
    width: 18px;
    height: 18px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

/* Counter Section */
.counter-section {
    background: linear-gradient(135deg, #f0f9f5, #e8f5e9);
    padding: 50px 0;
    position: relative;
}

.counter-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(90deg, transparent, transparent 50px, rgba(46,125,50,.02) 50px, rgba(46,125,50,.02) 100px);
    pointer-events: none;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    text-align: center;
}

.counter-box {
    background: var(--bg-white);
    padding: 20px 15px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(46, 125, 50, 0.1);
}

.counter-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.counter-box:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-lg);
}

.counter-box:hover::before { transform: scaleX(1); }

.counter-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(46,125,50,0.1), rgba(76,175,80,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid rgba(46,125,50,0.2);
    transition: var(--transition);
}

.counter-icon i {
    font-size: 40px;
    color: var(--primary);
}

.counter-box:hover .counter-icon {
    transform: rotate(360deg) scale(1.1);
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
}

.counter-box:hover .counter-icon i { color: white; }

.counter-box h2 {
    font-size: 32px;
    font-weight: 550;
    color: var(--primary);
    margin-bottom: 5px;
    letter-spacing: -2px;
}

.counter-box p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
}

/* Store Features */
.store-features {
    background: linear-gradient(135deg, #ffffff, #f8fff8);
    position: relative;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: 800px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: var(--bg-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(46, 125, 50, 0.08);
}

.feature-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow);
    border-color: var(--primary);
}

.feature-item i {
    color: var(--primary);
    font-size: 24px;
    min-width: 24px;
}

.feature-item span {
    color: var(--text-dark);
    font-size: 1.05rem;
    font-weight: 550;
}

/* Special Categories */
.special-categories {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fff8, #f0f9f5);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 35px;
    margin-bottom: 60px;
}

.category-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(46, 125, 50, 0.08);
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(46,125,50,0.05), transparent);
    transform: rotate(45deg);
    transition: var(--transition);
}

.category-card:hover::before {
    animation: shimmer 1.5s;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.category-card .category-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    box-shadow: 0 8px 24px rgba(46,125,50,0.3);
    transition: var(--transition);
}

.category-card:hover .category-icon {
    transform: scale(1.15) rotate(10deg);
}

.category-card h3 {
    font-size: 1.4rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 550;
}

.category-card p {
    color: var(--text-light);
    line-height: 1.7;
}

.category-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 35px;
    margin-top: 50px;
}

.category-feature {
    text-align: center;
    padding: 35px 25px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid rgba(46, 125, 50, 0.08);
}

.category-feature:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.category-feature i {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
    transition: var(--transition);
}

.category-feature:hover i {
    transform: scale(1.2) rotate(10deg);
}

.category-feature h4 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 550;
}

.category-feature p {
    color: var(--text-light);
    font-size: 14px;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #f0f9f5, #e8f5e9);
    position: relative;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.testimonial,
.testimonial-card {
    background: var(--bg-white);
    padding: 40px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    position: relative;
    transition: var(--transition);
    border: 1px solid rgba(46, 125, 50, 0.08);
}

.testimonial::before {
    content: '"';
    position: absolute;
    top: 30px;
    left: 30px;
    font-size: 80px;
    color: var(--primary);
    opacity: 0.1;
    font-family: Georgia, serif;
    line-height: 1;
    font-weight: 550;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 4rem;
    color: var(--light-gray);
    font-family: serif;
    line-height: 1;
}

.testimonial:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.testimonial-text {
    color: var(--text-dark);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
    font-style: italic;
}

.customer {
    display: flex;
    align-items: center;
    gap: 18px;
}

.customer-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 550;
    box-shadow: 0 4px 12px rgba(46,125,50,0.3);
}

.customer-info h4 {
    color: var(--primary-dark);
    margin-bottom: 5px;
    font-size: 1.15rem;
    font-weight: 550;
}

.customer-info p {
    color: var(--text-light);
    font-size: 14px;
}

.testimonial-rating {
    color: var(--secondary);
    margin: var(--spacing-sm) 0;
}

.customer-name {
    font-weight: 550;
    color: var(--dark);
}

.customer-location {
    font-size: 0.9rem;
    color: var(--gray);
}

.customer-verified {
    font-size: 0.8rem;
    color: var(--gray);
    margin-top: 5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating-input {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
}

.rating-star {
    font-size: 1.5rem;
    color: #ddd;
    cursor: pointer;
    transition: var(--transition);
}

.rating-star:hover,
.rating-star.active {
    color: var(--secondary);
}
/* =====================================
   BRANDS CONTINUOUS AUTO SLIDER
   ===================================== */

/* Main Section */
.brands-slider-continuous {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(to bottom, #fbfdfb, #ffffff, #fbfdfb);
    width: 100%;
}

/* Section Header */
.brands-slider-continuous .section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.brands-slider-continuous .section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 15px;
}

/* Slider Container – Edge to Edge */
.brands-slider-container {
    position: relative;
    width: 100vw;
    overflow: hidden;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Slider Track */
.brands-slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: brandSlideInfinite 50s linear infinite;
}

.brands-slider-track:hover {
    animation-play-state: paused;
}

/* Brand Card */
.brand-slide {
    flex: 0 0 200px;
    width: 200px;
    height: 120px;
    background: #ffffff;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.4s ease;
}

.brand-slide:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(46,125,50,0.15);
}

/* Brand Image */
.brand-slide img {
    max-width: 100%;
    max-height: 80px;
    object-fit: contain;
    filter: grayscale(100%);
    transition: transform 0.4s ease, filter 0.4s ease;
}

.brand-slide:hover img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Infinite Animation */
@keyframes brandSlideInfinite {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Gradient Fade Edges */
.brands-slider-container::before,
.brands-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    pointer-events: none;
    z-index: 10;
}

.brands-slider-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(251,253,251,0.9), transparent);
}

.brands-slider-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255,255,255,0.9), transparent);
}

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

@media (max-width: 1024px) {
    .brand-slide {
        width: 160px;
        height: 100px;
    }
    .brands-slider-track {
        animation-duration: 40s;
    }
}

@media (max-width: 768px) {
    .brand-slide {
        width: 140px;
        height: 90px;
        padding: 15px;
    }
    .brands-slider-track {
        gap: 20px;
        animation-duration: 35s;
    }
}

@media (max-width: 576px) {
    .brand-slide {
        width: 120px;
        height: 80px;
    }
    .brands-slider-track {
        animation-duration: 30s;
    }
}

/* ===== PRODUCT GALLERY INFINITE AUTO SLIDER - TRUE EDGE TO EDGE ===== */
.product-gallery-slider {
    position: relative;
    overflow: hidden;
    padding: 80px 0;
    background: linear-gradient(to bottom, #f8f9fa, #ffffff);
    width: 100%;
}

/* Section Header - Centered with max-width */
.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #2e7d32;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Slider Container - TRUE Edge to Edge */
.gallery-slider-container {
    position: relative;
    width: 100vw;
    overflow: hidden;
    margin: 0;
    padding: 0;
    /* Break out of any container */
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

/* Slider Track - Infinite Loop */
.gallery-slider-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: slideInfinite 50s linear infinite;
    padding: 0;
}

.gallery-slider-track:hover {
    animation-play-state: paused;
}

/* Gallery Slide */
.gallery-slide {
    flex: 0 0 420px;
    width: 420px;
}

/* Gallery Item Card */
.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 380px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.gallery-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(46, 125, 50, 0.25);
}

/* Gallery Item Image */
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    user-select: none;
    pointer-events: none;
}

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

/* Gallery Overlay */
.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.95), rgba(0,0,0,0.75), transparent);
    padding: 40px 30px 30px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
    opacity: 1;
}

.gallery-overlay h3 {
    color: white;
    font-size: 1.8rem;
    margin-bottom: 12px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.gallery-overlay p {
    color: rgba(255,255,255,0.95);
    font-size: 15px;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Gallery Button */
.gallery-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2e7d32, #43a047);
    color: white;
    text-decoration: none;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    box-shadow: 0 6px 20px rgba(46, 125, 50, 0.4);
}

.gallery-btn:hover {
    background: linear-gradient(135deg, #1b5e20, #2e7d32);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(46, 125, 50, 0.5);
}

/* Infinite Animation */
@keyframes slideInfinite {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
/* ===================================================================
   Responsive (Mobile-First)
   - Mobile defaults are light tweaks; larger breakpoints expand layout
   =================================================================== */

/* Mobile (default tweaks for small screens) */
html {
    -webkit-text-size-adjust: 100%;
}

.mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
}

/* Make grid helpers stack by default on very small screens where needed */
.grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr !important;
}

.featured-products-grid {
    grid-template-columns: 1fr !important;
    gap: var(--spacing-md);
}

/* Smaller typography/buttons on narrow screens */
h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }
p { font-size: 0.95rem; }
.btn { padding: 10px 18px; font-size: 0.95rem; }
.btn-large { padding: 14px 28px; }
.btn-group { gap: 0.5rem; }

section { padding: var(--spacing-lg) 0; }
.section-header { margin-bottom: 32px; }
.section-header h2 { font-size: 1.5rem; }

/* Hero adjustments */
.full-hero, .hero {
    padding: 48px 0;
}
.hero-content h1 { font-size: 3.8rem; }
.hero-subtitle, .hero-description { font-size: 0.95rem; }

/* Featured product cards: make images fluid and content stack */
.featured-product-card { display: grid; grid-template-columns: 1fr; gap: var(--spacing-sm); }
.product-image { width: 100%; }

/* Gallery overlays and buttons fit small screens */
.gallery-overlay { padding: 20px; }
.gallery-overlay h3 { font-size: 1.2rem; }
.gallery-btn { padding: 10px 22px; font-size: 13px; }

/* Hide desktop nav and show mobile button on small screens */
.main-nav { display: none !important; }

/* Tablet (medium) */
@media (min-width: 768px) {
    html { font-size: 16px; }
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.3rem; }
    .container { max-width: 960px; }

    /* two-column layouts for medium screens */
    .grid-2 { grid-template-columns: repeat(2, 1fr) !important; }
    .grid-3 { grid-template-columns: repeat(2, 1fr) !important; }
    .grid-4 { grid-template-columns: repeat(2, 1fr) !important; }
    .featured-products-grid { grid-template-columns: repeat(2, 1fr) !important; }

    /* navigation: show main nav, hide mobile button */
    .main-nav { display: flex !important; gap: var(--spacing-lg); align-items: center; }
    .mobile-menu-btn { display: none; }

    .full-hero, .hero { padding: 72px 0; }
}

/* Desktop / large screens */
@media (min-width: 1025px) {
    html { font-size: 16px; }
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    .container { max-width: 1280px; }
    .grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
    .grid-4 { grid-template-columns: repeat(4, 1fr) !important; }
    .featured-products-grid { grid-template-columns: repeat(4, 1fr) !important; }
    .header .main-nav { display: flex !important; }
}

/* Accessibility & small-screen improvements */
button, .btn { touch-action: manipulation; }


/* Gradient Fade on Edges - Subtle for edge-to-edge */
.gallery-slider-container::before,
.gallery-slider-container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 10;
    pointer-events: none;
}

.gallery-slider-container::before {
    left: 0;
    background: linear-gradient(to right, rgba(248, 249, 250, 0.9), rgba(248, 249, 250, 0.5), transparent);
}

.gallery-slider-container::after {
    right: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.5), transparent);
}

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

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .gallery-slide {
        flex: 0 0 380px;
        width: 380px;
    }
    
    .gallery-item {
        height: 350px;
    }
    
    .gallery-slider-track {
        gap: 25px;
        animation-duration: 45s;
    }
    
    .gallery-slider-container::before,
    .gallery-slider-container::after {
        width: 100px;
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .product-gallery-slider {
        padding: 60px 0;
    }
    
    .section-header {
        margin-bottom: 50px;
    }
    
    .section-header h2 {
        font-size: 2.2rem;
    }
    
    .section-subtitle {
        font-size: 1.05rem;
    }
    
    .gallery-slide {
        flex: 0 0 350px;
        width: 350px;
    }
    
    .gallery-item {
        height: 320px;
    }
    
    .gallery-slider-track {
        animation-duration: 40s;
    }
    
    .gallery-slider-container::before,
    .gallery-slider-container::after {
        width: 80px;
    }
}

/* Mobile Landscape and Small Tablets */
@media (max-width: 768px) {
    .product-gallery-slider {
        padding: 50px 0;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .gallery-slide {
        flex: 0 0 320px;
        width: 320px;
    }
    
    .gallery-item {
        height: 400px;
    }
    
    .gallery-overlay {
        padding: 30px 25px 25px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.6rem;
    }
    
    .gallery-overlay p {
        font-size: 14px;
    }
    
    .gallery-btn {
        padding: 12px 28px;
        font-size: 13px;
    }
    
    .gallery-slider-track {
        gap: 20px;
        animation-duration: 35s;
    }
    
    .gallery-slider-container::before,
    .gallery-slider-container::after {
        width: 60px;
    }
}

/* Mobile Portrait */
@media (max-width: 576px) {
    .product-gallery-slider {
        padding: 40px 0;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    .gallery-slide {
        flex: 0 0 280px;
        width: 280px;
    }
    
    .gallery-item {
        height: 360px;
    }
    
    .gallery-overlay {
        padding: 25px 20px 20px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.4rem;
    }
    
    .gallery-slider-track {
        animation-duration: 30s;
    }
    
    .gallery-slider-container::before,
    .gallery-slider-container::after {
        width: 50px;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .product-gallery-slider {
        padding: 30px 0;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
    
    .section-header h2 {
        font-size: 1.6rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    
    .gallery-slide {
        flex: 0 0 260px;
        width: 260px;
    }
    
    .gallery-item {
        height: 340px;
    }
    
    .gallery-overlay {
        padding: 20px 18px 18px;
    }
    
    .gallery-overlay h3 {
        font-size: 1.3rem;
    }
    
    .gallery-overlay p {
        font-size: 13px;
        margin-bottom: 15px;
    }
    
    .gallery-btn {
        padding: 10px 24px;
        font-size: 12px;
    }
    
    .gallery-slider-container::before,
    .gallery-slider-container::after {
        width: 40px;
    }
}

/* Remove all arrow and dot navigation styles since we don't need them */
.gallery-arrow,
.gallery-dots {
    display: none;
}

/* Ensure parent container allows overflow */
body {
    overflow-x: hidden;
}




/* Store Locations */
.store-locations {
    background: linear-gradient(135deg, #f8fff8, #f0f9f5);
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.location {
    background: var(--bg-white);
    padding: 45px 35px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid rgba(46, 125, 50, 0.08);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.location::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.location:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.location:hover::before { transform: scaleX(1); }

.location-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(46,125,50,0.1), rgba(76,175,80,0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    border: 3px solid rgba(46,125,50,0.2);
    transition: var(--transition);
}

.location-icon i {
    font-size: 36px;
    color: var(--primary);
}

.location:hover .location-icon {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-color: transparent;
    transform: scale(1.1);
}

.location:hover .location-icon i { color: white; }

.location h3 {
    font-size: 1.6rem;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: 550;
}

.location p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.visit-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: white;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 550;
    transition: var(--transition);
    box-shadow: 0 4px 12px rgba(46,125,50,0.3);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.visit-btn:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--primary));
    box-shadow: 0 6px 20px rgba(46,125,50,0.4);
    transform: translateY(-2px);
}

/* Products Page */
.products-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background-color: var(--light-gray);
    border: none;
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(90deg, var(--primary), var(--primary-dark));
    color: var(--white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.offer-card {
    position: relative;
    overflow: hidden;
}

.offer-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 15px;
    background: linear-gradient(90deg, var(--secondary), var(--secondary-dark));
    color: white;
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.9rem;
}

.coming-soon-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 6px 12px;
    background-color: var(--secondary);
    color: white;
    font-weight: 600;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 20px;
}

.faq-grid .card-title {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

/* Form Styles */
.form-group { margin-bottom: var(--spacing-md); }

.form-label {
    display: block;
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
    color: var(--dark);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(39, 174, 96, 0.1);
}

.form-control.error { border-color: var(--danger); }
.error-message {
    color: var(--danger);
    font-size: 0.8rem;
    margin-top: 5px;
}

/* Service Icons */
.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    margin: 0 auto 25px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
    color: white;
    padding: 80px 0 30px;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,.02) 35px, rgba(255,255,255,.02) 70px);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    color: white;
    margin-bottom: 25px;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.footer-section h3 { font-size: 2rem; }
.footer-section h4 { font-size: 1.3rem; }

.footer-section p {
    color: #cccccc;
    line-height: 1.9;
    margin-bottom: 25px;
    font-size: 15px;
}

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

.footer-section ul li {
    margin-bottom: 15px;
    color: #cccccc;
    font-size: 15px;
    transition: var(--transition);
}

.footer-section ul li:hover {
    color: var(--accent);
    transform: translateX(5px);
}

.footer-section ul li i {
    color: var(--accent);
    margin-right: 12px;
    width: 20px;
}

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

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

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: var(--transition);
    border: 1px solid rgba(255,255,255,0.1);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    transform: translateY(-5px) rotate(10deg);
    box-shadow: 0 8px 20px rgba(76,175,80,0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #999999;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Floating Buttons */
.floating-buttons {
    position: fixed;
    right: 30px;
    bottom: 35px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.floating-btn {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.floating-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0.2);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.floating-btn:hover::before { transform: translateX(100%); }

.floating-btn:hover {
    transform: scale(1.15) rotate(10deg);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.35);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    animation: float 3s ease-in-out infinite;
}

.call-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    animation: float 3s ease-in-out infinite 1.5s;
}

.floating-btn::after {
    content: attr(title);
    position: absolute;
    right: 80px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 10px 18px;
    border-radius: 8px;
    font-size: 14px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-weight: 550;
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.floating-btn:hover::after {
    opacity: 1;
    visibility: visible;
    right: 85px;
}

/* Sticky Contact Buttons */
.sticky-contact {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.sticky-contact-btn {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-round);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.sticky-contact-btn.whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

.sticky-contact-btn.phone {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.sticky-contact-btn:hover { transform: scale(1.1); }

.sticky-tooltip {
    position: absolute;
    right: 70px;
    background-color: var(--dark);
    color: var(--white);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.sticky-contact-btn:hover .sticky-tooltip {
    opacity: 1;
    right: 80px;
}

/* Loading State */
.btn.loading {
    pointer-events: none;
    opacity: 0.8;
}

/* Animations */
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

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

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

@keyframes shimmer {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-left {
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-5deg) scale(0.95);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.rotate-in.animate {
    opacity: 1;
    transform: rotate(0) scale(1);
}

.stagger-children > * {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3) translateY(100px);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.05) translateY(-10px);
    }
    80% {
        opacity: 1;
        transform: scale(0.95) translateY(5px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.bounce-in { animation: bounceIn 1s ease forwards; }

@keyframes pulse-glow {
    0% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(46, 125, 50, 0); }
    100% { box-shadow: 0 0 0 0 rgba(46, 125, 50, 0); }
}

.pulse { animation: pulse-glow 2s infinite; }

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    10%, 30%, 50%, 70%, 90% { transform: translateX(-5px); }
    20%, 40%, 60%, 80% { transform: translateX(5px); }
}

.shake { animation: shake 0.8s ease; }

/* Full Width Slider */
.fw-slider {
    position: relative;
    width: 100vw;
    height: 650px;
    overflow: hidden;
}

.fw-track {
    display: flex;
    height: 100%;
    transition: transform 0.7s ease-in-out;
}

.fw-slide {
    min-width: 100vw;
    height: 100%;
    position: relative;
}

.fw-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fw-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0,0,0,0.6), rgba(0,0,0,0.25), rgba(0,0,0,0));
}

.fw-content {
    position: absolute;
    left: 6%;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    max-width: 520px;
}

.fw-content h2 {
    font-size: 2.8rem;
    margin-bottom: 10px;
    color: #fff;
}

.fw-content p {
    font-size: 1.15rem;
    opacity: 0.95;
    color: #e8f5e9;
}

.fw-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    background: rgba(0,0,0,0.55);
    color: #fff;
    font-size: 26px;
    z-index: 10;
}

.fw-nav:hover { background: rgba(0,0,0,0.55); }
.fw-prev { left: 20px; }
.fw-next { right: 20px; }

/* Stacked Pyramid Slider */
.stacked-slider {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fff8, #eef6f0);
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 450px;
    max-width: 1200px;
    margin: auto;
}

.slide {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 75%;
    height: 100%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0.35;
    transition: all 0.6s ease;
    z-index: 1;
    cursor: pointer;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 22px;
    box-shadow: 0 35px 70px rgba(0,0,0,0.25);
}

.slide.active {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
    z-index: 5;
}

.slide.prev {
    transform: translate(-70%, -50%) scale(0.85);
    opacity: 0.6;
    z-index: 3;
}

.slide.next {
    transform: translate(-30%, -50%) scale(0.85);
    opacity: 0.6;
    z-index: 3;
}

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

/* Mobile (default) */
.mobile-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 8px;
    cursor: pointer;
}

.grid-2,
.grid-3,
.grid-4,
.featured-products-grid {
    grid-template-columns: 1fr !important;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.125rem; }
p { font-size: 0.95rem; }

.btn { padding: 10px 18px; font-size: 0.95rem; }
.btn-large { padding: 14px 28px; }
.btn-group { gap: 0.5rem; }

section { padding: var(--spacing-lg) 0; }
.section-header { margin-bottom: 32px; }
.section-header h2 { font-size: 1.5rem; }

.full-hero,
.hero { padding: 48px 0; }

.hero-content h1 { font-size: 3.8rem; }
.hero-subtitle,
.hero-description { font-size: 1.3rem; }

.featured-product-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm);
}

.product-image { width: 100%; }

.gallery-overlay { padding: 20px; }
.gallery-overlay h3 { font-size: 1.2rem; }
.gallery-btn { padding: 10px 22px; font-size: 13px; }

.main-nav { display: none !important; }

/* Tablet (768px+) */
@media (min-width: 768px) {
    html { font-size: 16px; }
    
    h1 { font-size: 2.5rem; }
    h2 { font-size: 1.9rem; }
    h3 { font-size: 1.3rem; }
    
    .container { max-width: 960px; }
    
    .grid-2 { grid-template-columns: repeat(2, 1fr) !important; }
    .grid-3,
    .grid-4,
    .featured-products-grid { grid-template-columns: repeat(2, 1fr) !important; }
    
    .main-nav {
        display: flex !important;
        gap: var(--spacing-lg);
        align-items: center;
    }
    
    .mobile-menu-btn { display: none; }
    
    .full-hero,
    .hero { padding: 72px 0; }
    
    .fw-slider { height: 650px; }
    .fw-content h2 { font-size: 1.8rem; }
    .fw-content p { font-size: 1rem; }
}

/* Desktop (1025px+) */
@media (min-width: 1025px) {
    html { font-size: 16px; }
    
    h1 { font-size: 3.5rem; }
    h2 { font-size: 2.5rem; }
    
    .container { max-width: 1280px; }
    
    .grid-3 { grid-template-columns: repeat(3, 1fr) !important; }
    .grid-4 { grid-template-columns: repeat(4, 1fr) !important; }
    .featured-products-grid { grid-template-columns: repeat(4, 1fr) !important; }
    
    .header .main-nav { display: flex !important; }
}

/* Large Screens (1200px+) */
@media (min-width: 1200px) {
    .brand-slide { flex: 0 0 180px; width: 180px; height: 110px; }
    .brand-slide img { max-height: 70px; }
    .brands-slider-track { animation-duration: 45s; }
    .brands-slider-container::before,
    .brands-slider-container::after { width: 100px; }
    
    .gallery-slide { flex: 0 0 380px; width: 380px; }
    .gallery-item { height: 350px; }
    .gallery-slider-track { animation-duration: 45s; }
    .gallery-slider-container::before,
    .gallery-slider-container::after { width: 100px; }
}

/* Tablet (1024px) */
@media (max-width: 1024px) {
    .brands-slider-continuous { padding: 60px 0; }
    .brand-slide { flex: 0 0 160px; width: 160px; height: 100px; }
    .brand-slide img { max-height: 60px; }
    .brands-slider-track { animation-duration: 40s; }
    .brands-slider-container::before,
    .brands-slider-container::after { width: 80px; }
    
    .product-gallery-slider { padding: 60px 0; }
    .section-header h2 { font-size: 2.2rem; }
    .section-subtitle { font-size: 1.05rem; }
    .gallery-slide { flex: 0 0 350px; width: 350px; }
    .gallery-item { height: 320px; }
    .gallery-slider-track { animation-duration: 40s; }
    .gallery-slider-container::before,
    .gallery-slider-container::after { width: 80px; }
    
    .counter-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .brand-slide { flex: 0 0 calc(50% - 15px); }
    .gallery-slide { flex: 0 0 calc(50% - 15px); }
}

/* Mobile Landscape (768px) */
@media (max-width: 768px) {
    .container { max-width: 540px; padding: 0 20px; }
    
    h1 { font-size: 2rem; }
    h2 { font-size: 1.75rem; }
    h3 { font-size: 1.4rem; }
    p { font-size: 1rem; }
    
    section { padding: 60px 0; }
    
    /* Header Mobile Menu */
    .header { padding: 0; }
    .header-content,
    .header-container {
        flex-direction: column;
        gap: 0;
        padding: 15px 0;
    }
    
    .logo { margin-bottom: 0; }
    .logo-text h1 { font-size: 1.5rem; }
    .logo img,
    .logo-img { height: 40px; }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 30px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.active { left: 0; }
    
    .main-nav a {
        width: 100%;
        padding: 15px 30px;
        border-radius: 0;
        text-align: left;
        font-size: 16px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .mobile-menu-btn {
        display: block !important;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
        background: var(--primary);
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 8px;
        font-size: 20px;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(46,125,50,0.3);
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    .contact-info { display: none; }
    
    .top-bar-content {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .top-bar-contact {
        flex-direction: column;
        gap: 8px;
    }
    
    /* Hero */
    .full-hero {
        min-height: 500px;
        padding: 80px 0 60px;
    }
    
    .hero-content { padding: 0 20px; }
    .hero-content h1 { font-size: 2.2rem; margin-bottom: 15px; }
    .hero-subtitle { font-size: 1.4rem; margin-bottom: 12px; }
    .hero-description { font-size: 1.1rem; margin-bottom: 35px; }
    
    /* Store Finder */
    .store-finder {
        padding: 30px 20px;
        margin: 30px 10px;
    }
    
    .store-finder h2 { font-size: 1.6rem; margin-bottom: 20px; }
    .search-container {
        flex-direction: column;
        gap: 12px;
        padding: 12px;
    }
    
    .search-container input { padding: 12px; font-size: 15px; }
    .find-btn { width: 100%; padding: 14px 28px; }
    .location-tags { gap: 10px; }
    .location-tag { padding: 8px 16px; font-size: 13px; }
    
    /* Section Headers */
    .section-header { margin-bottom: 40px; }
    .section-header h2 { font-size: 1.9rem; }
    .section-subtitle { font-size: 1rem; }
    
    /* Grids */
    .features-grid,
    .featured-products-grid,
    .categories-grid,
    .category-features,
    .testimonial-grid,
    .locations-grid,
    .brands-grid,
    .products-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .features-list { grid-template-columns: 1fr; gap: 15px; }
    
    /* Components */
    .feature,
    .category-card,
    .testimonial,
    .location {
        padding: 30px 25px;
    }
    
    .counter-grid { grid-template-columns: 1fr; gap: 30px; }
    .counter-box { padding: 40px 20px; }
    .counter-box h2 { font-size: 3rem; }
    .counter-box p { font-size: 1.1rem; }
    
    /* Products Filter */
    .products-filter { flex-direction: column; align-items: stretch; }
    .filter-btn { width: 100%; max-width: 100%; }
    
    /* Timeline */
    .timeline:before { left: 30px; }
    .timeline-item {
        flex-direction: column !important;
        margin-left: 50px;
    }
    
    .timeline-date {
        justify-content: flex-start;
        text-align: left;
        padding-left: 0;
    }
    
    .timeline-dot { left: 20px; }
    
    /* Buttons */
    .btn { padding: 14px 24px; font-size: 0.95rem; }
    .btn-group { flex-direction: column; }
    .btn-group .btn { width: 100%; }
    
    /* Brand Slider */
    .brand-slide {
        flex: 0 0 140px;
        width: 140px;
        height: 90px;
        padding: 15px;
    }
    
    .brand-slide img { max-height: 50px; }
    .brands-slider-track { gap: 20px; animation-duration: 35s; }
    
    /* Gallery Slider */
    .product-gallery-slider { padding: 50px 0; }
    .gallery-slide { flex: 0 0 320px; width: 320px; }
    .gallery-item { height: 400px; }
    .gallery-overlay { padding: 30px 25px 25px; }
    .gallery-overlay h3 { font-size: 1.6rem; }
    .gallery-overlay p { font-size: 14px; }
    .gallery-btn { padding: 12px 28px; font-size: 13px; }
    .gallery-slider-track { gap: 20px; animation-duration: 35s; }
    
    .brands-slider-container::before,
    .brands-slider-container::after,
    .gallery-slider-container::before,
    .gallery-slider-container::after { width: 60px; }
    
    /* Floating Buttons */
    .floating-buttons {
        right: 15px;
        bottom: 20px;
        gap: 12px;
    }
    
    .floating-btn {
        width: 55px;
        height: 55px;
        font-size: 24px;
    }
    
    .floating-btn::after { display: none; }
    
    /* Footer */
    .footer { padding: 60px 0 25px; }
    .footer-content { grid-template-columns: 1fr; gap: 35px; }
    .footer-section h3 { font-size: 1.6rem; }
    .footer-section h4 { font-size: 1.2rem; }
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .fw-slider { height: 400px; }
    .fw-content { left: 5%; max-width: 90%; }
    .fw-content h2 { font-size: 2.8rem; }
    .fw-content p { font-size: 1.15rem; }
    .fw-nav { width: 38px; height: 38px; font-size: 20px; }
    .fw-prev { left: 10px; }
    .fw-next { right: 10px; }
    
    .stacked-slider { padding: 60px 0; }
    .slider-container { height: 350px; }
    .slide { width: 85%; }
}

/* Mobile Portrait (576px) */
@media (max-width: 576px) {
    .container { padding: 0 15px; }
    
    h1 { font-size: 2.8rem; }
    h2 { font-size: 1.6rem; }
    h3 { font-size: 1.3rem; }
    
    section { padding: 50px 0; }
    
    /* Hero */
    .full-hero {
        min-height: 450px;
        padding: 70px 0 50px;
    }
    
    .hero-content h1 { font-size: 1.9rem; }
    .hero-subtitle { font-size: 1.25rem; }
    .hero-description { font-size: 1rem; margin-bottom: 30px; }
    
    /* Store Finder */
    .store-finder {
        padding: 25px 15px;
        margin: 20px 5px;
    }
    
    .store-finder h2 { font-size: 1.4rem; }
    .search-container input { font-size: 14px; }
    .find-btn { padding: 12px 24px; font-size: 14px; }
    
    /* Section Headers */
    .section-header { margin-bottom: 35px; }
    .section-header h2 { font-size: 1.7rem; }
    .section-subtitle { font-size: 0.95rem; }
    
    /* Features */
    .feature { padding: 25px 20px; }
    .feature-icon { width: 65px; height: 65px; font-size: 26px; }
    .feature h3 { font-size: 1.3rem; }
    .feature p { font-size: 14px; }
    
    /* Featured Products */
    .product-content { padding: 20px; min-height: auto; }
    .product-title { font-size: 1.4rem; }
    .product-description { font-size: 13px; }
    .view-products-btn { padding: 14px 0; font-size: 14px; }
    
    /* Counter */
    .counter-box { padding: 30px 15px; }
    .counter-icon { width: 70px; height: 70px; }
    .counter-icon i { font-size: 30px; }
    .counter-box h2 { font-size: 2.5rem; }
    .counter-box p { font-size: 1rem; }
    
    /* Categories */
    .category-card { padding: 30px 20px; }
    .category-icon { width: 75px; height: 75px; font-size: 32px; }
    .category-card h3 { font-size: 1.3rem; }
    
    /* Testimonials */
    .testimonial { padding: 25px 20px; }
    .customer-avatar { width: 50px; height: 50px; font-size: 18px; }
    
    /* Locations */
    .location { padding: 30px 20px; }
    .location-icon { width: 70px; height: 70px; }
    .location-icon i { font-size: 30px; }
    .location h3 { font-size: 1.4rem; }
    .visit-btn { padding: 12px 30px; font-size: 13px; }
    
    /* Brands */
    .brand-slide {
        flex: 0 0 120px;
        width: 120px;
        height: 80px;
        padding: 12px;
    }
    
    .brand-slide img { max-height: 45px; }
    
    /* Gallery */
    .product-gallery-slider { padding: 40px 0; }
    .gallery-slide { flex: 0 0 280px; width: 280px; }
    .gallery-item { height: 360px; }
    .gallery-overlay { padding: 25px 20px 20px; }
    .gallery-overlay h3 { font-size: 1.4rem; }
    .gallery-slider-track { animation-duration: 30s; }
    
    .brands-slider-container::before,
    .brands-slider-container::after,
    .gallery-slider-container::before,
    .gallery-slider-container::after { width: 50px; }
    
    /* Footer */
    .footer { padding: 50px 0 20px; }
    .footer-section h3 { font-size: 1.4rem; }
    .social-links a { width: 40px; height: 40px; }
    
    /* Full Width Slider */
    .fw-slider { height: 320px; }
    .fw-content h2 { font-size: 1.6rem; }
    .fw-content p { font-size: 0.9rem; }
}

/* Extra Small Mobile (480px) */
@media (max-width: 480px) {
    h1 { font-size: 1.6rem; }
    h2 { font-size: 1.4rem; }
    h3 { font-size: 1.2rem; }
    
    section { padding: 40px 0; }
    
    /* Hero */
    .hero-content h1 { font-size: 1.7rem; }
    .hero-subtitle { font-size: 1.15rem; }
    .hero-description { font-size: 0.95rem; }
    
    /* Store Finder */
    .store-finder { padding: 20px 12px; }
    .store-finder h2 { font-size: 1.3rem; }
    .location-tags { gap: 8px; }
    .location-tag { padding: 6px 12px; font-size: 12px; }
    
    /* Section Headers */
    .section-header h2 { font-size: 1.5rem; }
    .section-subtitle { font-size: 0.9rem; }
    
    /* Features */
    .feature { padding: 20px 15px; }
    .feature-icon { width: 60px; height: 60px; font-size: 24px; margin-bottom: 15px; }
    .feature h3 { font-size: 1.2rem; margin-bottom: 12px; }
    
    /* Products */
    .product-image { height: 180px; }
    .product-title { font-size: 1.3rem; }
    .product-badge { font-size: 10px; padding: 5px 14px; }
    
    /* Counter */
    .counter-box { padding: 25px 12px; }
    .counter-box h2 { font-size: 2.2rem; }
    
    /* Categories */
    .category-icon { width: 70px; height: 70px; font-size: 28px; }
    
    /* Brands */
    .brand-slide {
        flex: 0 0 100px;
        width: 100px;
        height: 70px;
        padding: 10px;
    }
    
    .brand-slide img { max-height: 40px; }
    .brands-slider-track { gap: 15px; }
    
    /* Gallery */
    .gallery-slide { flex: 0 0 260px; width: 260px; }
    .gallery-item { height: 340px; }
    
    /* Floating Buttons */
    .floating-buttons {
        right: 10px;
        bottom: 15px;
    }
    
    .floating-btn {
        width: 50px;
        height: 50px;
        font-size: 22px;
    }
    
    /* Buttons */
    .btn { padding: 12px 20px; font-size: 0.9rem; }
    
    /* Full Width Slider */
    .fw-slider { height: 280px; }
    .fw-content h2 { font-size: 1.4rem; }
    .fw-content p { font-size: 0.85rem; }
    .fw-nav { width: 35px; height: 35px; font-size: 18px; }
    
    /* Stacked Slider */
    .slider-container { height: 300px; }
    .slide { width: 90%; }
}

/* Landscape orientation fixes */
@media (max-height: 500px) and (orientation: landscape) {
    .full-hero { min-height: 400px; }
    .hero-content h1 { font-size: 1.6rem; }
    .store-finder { margin-top: 20px; }
}

/* Print styles */
@media print {
    .header,
    .floating-buttons,
    .mobile-menu-btn,
    .mobile-menu-overlay,
    .scroll-progress,
    .back-to-top,
    footer,
    .btn,
    nav {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        color: #000;
    }
    
    section { page-break-inside: avoid; }
    
    .hero {
        padding: 50px 0;
        background: none;
    }
    
    .hero-text h1 {
        -webkit-text-fill-color: #000;
        background: none;
        color: #000;
    }
}


/* Add to your CSS after line 496 */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: block !important;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
        background: var(--primary);
        color: white;
        border: none;
        width: 45px;
        height: 45px;
        border-radius: 8px;
        font-size: 20px;
        cursor: pointer;
        box-shadow: 0 4px 12px rgba(46,125,50,0.3);
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 280px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        gap: 0;
        padding: 80px 0 30px;
        box-shadow: 2px 0 10px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        z-index: 999;
        overflow-y: auto;
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .main-nav a {
        width: 100%;
        padding: 15px 30px;
        border-radius: 0;
        text-align: left;
        font-size: 16px;
        border-bottom: 1px solid rgba(0,0,0,0.05);
    }
    
    .mobile-menu-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 998;
    }
    
    .mobile-menu-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Ensure header content aligns properly */
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        padding: 15px 0;
    }
    
    .logo {
        margin-bottom: 0;
    }
    
    .contact-info {
        display: none;
    }
}

/* Mobile Menu Toggle Button */
/*.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
}

.mobile-menu-toggle .hamburger-line {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}*/

/* Mobile Menu Overlay */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    z-index: 1000;
    padding: 80px 20px 20px;
    box-sizing: border-box;
    overflow-y: auto;
}

.mobile-menu.active {
    display: block;
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mobile-menu-link {
    display: block;
    padding: 15px;
    font-size: 18px;
    color: #333;
    text-decoration: none;
    border-bottom: 1px solid #eee;
    transition: all 0.3s;
}

.mobile-menu-link:hover {
    color: #2ecc71; /* Green color matching your theme */
    background: #f9f9f9;
    padding-left: 25px;
}

.mobile-contact-info {
    margin-top: 30px;
    padding: 15px;
    background: #f5f5f5;
    border-radius: 8px;
    color: #333;
    font-size: 16px;
}

.mobile-contact-info i {
    margin-right: 10px;
    color: #2ecc71;
}

/* Show hamburger and hide desktop nav on mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        display: none;
    }
    
    .contact-info {
        display: none;
    }
}

/* Optional: Hamburger to X animation */
.mobile-menu-toggle.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

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

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

/* ============================================
   HIDE DUPLICATE MOBILE BUTTONS
   ============================================ */

/* Hide ALL mobile menu buttons except our main one */
/*button[class*="mobile"],
button[class*="toggle"],
button[class*="hamburger"],
button.mobile-nav-toggle,
button.mobile-menu-toggle {
    display: none !important;
}


button#mobileMenuBtn {
    display: flex !important;
    position: relative;
    z-index: 1001;
}


@media (max-width: 768px) {
    button#mobileMenuBtn {
        display: flex !important;
    }
    
    
    .header-content button:not(#mobileMenuBtn) {
        display: none !important;
    }
} */

/* Mobile Menu Button */
/*.mobile-menu-btn {
    display: none; 
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}*/

/* Hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
    .mobile-menu-btn {
        display: flex;
    }
    
    .main-nav {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px 20px 40px;
    }
    
    .main-nav.active {
        display: flex;
    }
    
    .main-nav a {
        display: block;
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 15px 20px;
        margin: 5px 0;
        font-size: 18px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #eee;
        transition: all 0.3s;
    }
    
    .main-nav a:hover,
    .main-nav a.active {
        color: #2ecc71;
        background: #f9f9f9;
        padding-left: 30px;
    }
    
    /* Hide contact info on mobile */
    .contact-info {
        display: none;
    }
}

/* ============================================
   MOBILE MENU FIX - FINAL WORKING VERSION
   ============================================ */

/* Mobile Menu Button - Clean Version */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 40px;
    height: 40px;
    padding: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1001;
    position: relative;
}

.mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

/* Hamburger to X animation */
.mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

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

/* Mobile Navigation */
@media (max-width: 768px) {
    /* Show hamburger button */
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Hide desktop nav by default */
    .main-nav {
        display: none !important;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: white;
        z-index: 1000;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 80px 20px 40px;
    }
    
    /* Show nav when active */
    .main-nav.active {
        display: flex !important;
    }
    
    /* Style mobile nav links */
    .main-nav a {
        display: block;
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 15px 20px;
        margin: 5px 0;
        font-size: 18px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #eee;
        transition: all 0.3s;
    }
    
    .main-nav a:hover,
    .main-nav a.active {
        color: #2ecc71;
        background: #f9f9f9;
        padding-left: 30px;
    }
    
    /* Hide contact info on mobile */
    .contact-info {
        display: none;
    }
}

/* About Store – Responsive Fix */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .about-text h2 {
        font-size: 2rem;
    }

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

    .about-image img {
        width: 100%;
        max-width: 420px;
        margin: 0 auto;
    }
}
