/* ======================================================
   SRI SAI TRADERS — PREMIUM FUTURISTIC THEME
   Ultra-modern glassmorphism + neon gradient UI
   ====================================================== */

/* ========== ROOT VARIABLES ========== */
:root {
    --bg-primary: #F5F1EB;
    --bg-secondary: #E6D3B3;
    --bg-tertiary: #FFFFFF;
    --primary-green: #8B5E3C;
    --primary-dark: #C89B6D;
    --accent-color: #E2B176;
    --text-primary: #3E2723;
    --text-secondary: #5D4037;
    --text-muted: #8D6E63;
    --glass-bg: rgba(245, 241, 235, 0.9);
    --glass-border: rgba(139, 94, 60, 0.15);
    --glass-bg-hover: rgba(139, 94, 60, 0.08);
    --shadow-soft: 0 10px 30px rgba(93, 64, 55, 0.08);
    --shadow-medium: 0 15px 40px rgba(139, 94, 60, 0.15);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 50px;
    --transition-fast: all 0.2s ease;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-primary: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    --font-heading: 'Outfit', sans-serif;
    --font-secondary: 'Inter', sans-serif;
}

/* Mobile First Base Styles */
html {
    font-size: 16px; /* Base for rem */
}

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-secondary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    font-weight: 700;
    line-height: 1.2;
}

/* Base Headings for Mobile */
h2 { font-size: 1.5rem; } /* 24px */
h3 { font-size: 1.25rem; } /* 20px */
p { font-size: 0.95rem; } /* ~15px */

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

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

ul {
    list-style: none;
}

/* ========== CUSTOM SCROLLBAR ========== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-primary);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-dark), var(--primary-green));
    border-radius: 10px;
}

/* ========== LUXURY AMBIENT BACKGROUND ========== */
.premium-bg-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    /* Smooth Cream to Soft Beige base */
    background: linear-gradient(135deg, #F5F1EB 0%, #E6D3B3 100%);
    overflow: hidden;
    pointer-events: none;
}

.premium-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: 0.12; /* Very subtle as requested */
    transition: transform 0.6s cubic-bezier(0.1, 0, 0.3, 1);
    pointer-events: none;
    will-change: transform;
}

/* Position: Top Right */
.premium-glow-1 {
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, #C89B6D 0%, transparent 75%);
    top: -200px;
    right: -200px;
    animation: driftGlow 30s ease-in-out infinite alternate;
}

/* Position: Center Left */
.premium-glow-2 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, #C89B6D 0%, transparent 75%);
    top: 30%;
    left: -200px;
    animation: driftGlow 35s ease-in-out infinite alternate-reverse;
}

/* Position: Bottom Area */
.premium-glow-3 {
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, #C89B6D 0%, transparent 75%);
    bottom: -150px;
    left: 20%;
    animation: driftGlow 25s ease-in-out infinite alternate;
}

@keyframes driftGlow {
    0% { transform: translate(0, 0) scale(1.0); }
    100% { transform: translate(60px, 40px) scale(1.1); }
}

/* ========== SECTION DEPTH ========== */
section {
    position: relative;
    z-index: 1;
    /* Soft shadow behind sections for depth */
    box-shadow: 0 -20px 40px rgba(139, 94, 60, 0.03);
}

.section-container {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-xl);
    padding: 60px 4%;
    margin: 40px auto;
    max-width: 1400px;
    border: 1px solid rgba(139, 94, 60, 0.05);
}

/* ========== UTILITIES ========== */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.glass {
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.section-badge {
    display: inline-block;
    background: var(--glass-bg-hover);
    color: var(--primary-dark);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid var(--glass-border);
}

.loading-spinner {
    text-align: center;
    padding: 40px;
    font-size: 1.1rem;
    color: var(--text-secondary);
    grid-column: 1 / -1;
}

/* ========== BRANDING & LOGOS ========== */
.nav-logo {
    height: 38px;
    width: 38px;
    border-radius: 50%;
    object-fit: cover;
    border: 1.5px solid var(--primary-green);
    margin-right: 8px;
    background: white;
}

.hero-logo {
    height: 80px;
    width: 80px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    display: block;
    position: relative;
    border: 2px solid var(--primary-green);
    background: white;
}

/* ========== NAVBAR ========== */

.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--glass-border);
}

.navbar.glass {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.nav-links a.active {
    color: var(--primary-green) !important;
}

.nav-links a::after {
    background: var(--primary-green) !important;
}

.footer-logo {
    height: 70px;
    width: 70px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 20px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    background: white;
}

/* Footer Social Icons */
.footer-social {
    display: flex;
    gap: 15px;
    margin: 20px 0;
}

.footer-social a {
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition);
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--cyan);
    color: var(--bg-primary);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 229, 255, 0.3);
}

.footer-social a i {
    transition: var(--transition);
}

.section-header p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    font-family: var(--font-secondary);
}

/* Ordering Availability Badge */
.ordering-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(139, 94, 60, 0.1);
    color: var(--primary-green);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    border: 1px solid rgba(139, 94, 60, 0.2);
    margin-left: 10px;
    vertical-align: middle;
    animation: pulse-green 2s infinite;
}

@keyframes pulse-green {
    0% { box-shadow: 0 0 0 0 rgba(139, 94, 60, 0.4); }
    70% { box-shadow: 0 0 0 10px rgba(139, 94, 60, 0); }
    100% { box-shadow: 0 0 0 0 rgba(139, 94, 60, 0); }
}

.ordering-highlight {
    color: var(--primary-green) !important;
}

.ordering-highlight i {
    color: var(--primary-green) !important;
    font-size: 1.2rem;
}

.section-badge {
    display: inline-block;
    background: var(--cyan-dim);
    color: var(--cyan);
    padding: 6px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
    border: 1px solid rgba(0, 229, 255, 0.2);
}

.section-badge i {
    margin-right: 6px;
}

/* ========== BUTTONS ========== */
/* Mobile-Ready Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    min-height: 52px; /* Touch target */
    width: 100%; /* Default to full width on mobile */
    max-width: 400px;
    text-align: center;
    white-space: nowrap;
}

.btn:active {
    transform: scale(0.96);
    filter: brightness(0.9);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-green), var(--primary-dark));
    color: #fff;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

.btn-glass {
    background: #f8fdfa;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-glass:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.2);
}

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

.btn-outline-glow:hover {
    background: var(--primary-green);
    color: #fff;
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.2);
    transform: translateY(-2px);
}



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

.btn-whatsapp:hover {
    box-shadow: 0 0 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-2px);
}

.btn-directions {
    background: linear-gradient(135deg, #4285F4, #34A853);
    color: white;
}

.btn-directions:hover {
    box-shadow: 0 0 25px rgba(66, 133, 244, 0.4);
    transform: translateY(-2px);
}

.btn-block {
    width: 100%;
}

/* Standardizing Card Buttons */
.product-info .btn-outline-glow {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    transition: all 0.3s ease-in-out;
}

.product-info .btn-outline-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(46, 204, 113, 0.2);
}

.order-note {
    display: block;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 10px;
    font-family: var(--font-secondary);
    font-style: italic;
    opacity: 0.7;
    text-align: center;
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(255, 255, 255, 0.15) 60deg, transparent 120deg);
    animation: btnGlow 3s linear infinite;
    pointer-events: none;
}

@keyframes btnGlow {
    100% {
        transform: rotate(360deg);
    }
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 16px;
    left: 4%;
    right: 4%;
    z-index: 1000;
    border-radius: var(--radius-full);
    padding: 14px 28px;
    transition: var(--transition);
}

.navbar.scrolled {
    top: 0;
    left: 0;
    right: 0;
    border-radius: 0;
    background: rgba(255, 255, 255, 0.98);
    border-color: transparent;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 800;
}

.logo-icon {
    display: none;
}

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

.nav-links a {
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--text-secondary);
    position: relative;
    padding: 10px 0;
}


.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: var(--transition);
    transform: translateX(-50%);
    border-radius: 2px;
}

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

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

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 5px;
}

.hamburger .bar {
    width: 28px;
    height: 3px;
    background: var(--primary-green);
    border-radius: 3px;
    transition: var(--transition);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding: 140px 6% 80px;
    position: relative;
    z-index: 1;
    /* Soft mesh gradient base for Hero */
    background: radial-gradient(circle at center, rgba(245, 241, 235, 0.8) 0%, rgba(230, 211, 179, 0.4) 100%);
}

.hero-bg-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(200, 155, 109, 0.08) 0%, transparent 75%);
    border-radius: 50%;
    z-index: -1;
    filter: blur(100px);
    animation: breathingGlow 10s ease-in-out infinite;
    pointer-events: none;
}

@keyframes breathingGlow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1.0); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.1); }
}

.hero-content {
    flex: 1;
    max-width: 600px;
    position: relative;
    padding: 20px;
}

.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(245, 241, 235, 0.15);
    backdrop-filter: blur(10px); /* Readability blur */
    border-radius: var(--radius-xl);
    z-index: -1;
    box-shadow: 0 20px 50px rgba(139, 94, 60, 0.05);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 28px;
    color: var(--primary-dark);
    background: rgba(139, 94, 60, 0.05);
    border: 1px solid rgba(139, 94, 60, 0.1);
}

.hero-badge i {
    color: var(--primary-green);
}

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    margin-bottom: 24px;
    letter-spacing: -1px;
    color: var(--text-primary);
}

.hero-subtitle {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 36px;
    line-height: 1.7;
    font-family: var(--font-secondary);
    max-width: 500px;
}

.hero-subtitle strong {
    color: var(--text-primary);
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 28px;
}

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

.stat-number {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-green);
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.stat-label {
    display: block;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-weight: 500;
    margin-top: 2px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--glass-border);
}

/* Hero Visual */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    max-width: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--glass-border);
    animation: floatHero 6s ease-in-out infinite;
}

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

.hero-shop-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.hero-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, var(--bg-primary), transparent);
    pointer-events: none;
}

.floating-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 2;
}
 
/* ========== TRUST STRIP ========== */
.trust-strip {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 24px 40px;
    margin: -30px auto 40px;
    max-width: 1100px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--glass-border);
    position: relative;
    z-index: 10;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
}
 
.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.05rem;
    font-weight: 600;
}
 
.trust-item i {
    font-size: 1.4rem;
}
 
/* ========== ABOUT SECTION ========== */
.about-wrapper {
    display: flex;
    gap: 50px;
    padding: 50px;
    align-items: stretch;
}

.about-image {
    flex: 1;
    border-radius: 24px;
    overflow: hidden;
    min-height: 500px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-soft);
    position: relative;
    background: var(--bg-secondary);
}
 
.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.5s ease;
}
 
.about-image:hover img {
    transform: scale(1.05);
}

.about-content {
    flex: 1.5;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 20px;
    font-weight: 800;
}

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

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

.feature-item i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

.about-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}
 
/* ========== OUR DAIRY FARM ========== */
.dairy-farm {
    position: relative;
    overflow: hidden;
}
 
.dairy-wrapper {
    display: flex;
    align-items: center;
    gap: 60px;
}
 
.dairy-content {
    flex: 1;
}
 
.dairy-tagline {
    font-family: var(--font-secondary);
    color: var(--primary-green);
    font-size: 1.25rem;
    font-style: italic;
    margin-bottom: 20px;
    font-weight: 500;
}
 
.dairy-content p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 30px;
    font-size: 1.05rem;
}
 
.dairy-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 30px;
}
 
.trust-tags {
    display: flex;
    gap: 12px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}
 
.trust-tag {
    padding: 6px 16px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-dark);
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    background: var(--bg-secondary);
}
 
.dairy-visual {
    flex: 1;
    perspective: 1000px;
}
 
.dairy-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
 
.featured-grid-item {
    grid-column: span 2;
    height: 400px !important;
    border: 2px solid var(--primary-green);
}
 
.rotated-img img {
    transform: rotate(-90deg) scale(1.8);
    object-fit: cover;
    transform-origin: center center;
}
 
.rotated-img:hover img {
    transform: rotate(-90deg) scale(1.95);
}
 
.dairy-grid-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 220px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    border: 2px solid var(--glass-border);
    transition: var(--transition);
    animation: float 6s ease-in-out infinite;
}
 
.dairy-grid-item:nth-child(even) {
    animation-delay: 2s;
}
 
.dairy-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
 
.dairy-grid-item:hover {
    transform: scale(1.05) translateY(-5px);
    border-color: var(--primary-green);
    box-shadow: var(--shadow-medium);
    z-index: 2;
}
 
.dairy-grid-item:hover img {
    transform: scale(1.1);
}
 
.grid-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    text-align: center;
}
 
@media (max-width: 992px) {
    .dairy-wrapper {
        flex-direction: column;
        gap: 40px;
    }
    
    .dairy-grid-item {
        height: 180px;
    }
}
 
@media (max-width: 480px) {
    .dairy-grid {
        grid-template-columns: 1fr;
    }
    
    .dairy-grid-item {
        height: 220px;
    }
}
 
/* ========== CATEGORIES ========== */
.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.cat-card {
    padding: 40px 24px 32px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.cat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--primary-green);
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition);
}

.cat-card:hover::before {
    transform: scaleX(1);
}

.cat-card:hover {
    background: var(--bg-secondary);
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
}

.cat-icon-wrap {
    margin-bottom: 20px;
}

.cat-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 20px;
    font-size: 1.8rem;
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-green);
    transition: var(--transition);
}

.cat-card:hover .cat-icon {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
    transform: scale(1.1);
}

.cat-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.cat-card p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-secondary);
    margin-bottom: 16px;
}

.cat-tag {
    display: inline-block;
    padding: 4px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(46, 204, 113, 0.1);
    color: var(--primary-green);
    border: 1px solid rgba(46, 204, 113, 0.2);
}

/* ========== FEATURED PRODUCTS ========== */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.product-card {
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-medium);
}

.product-img {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

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

.product-overlay {
    position: absolute;
    top: 16px;
    right: 16px;
}

.product-badge {
    background: var(--primary-green);
    color: white;
    padding: 5px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info {
    padding: 24px;
    text-align: center;
}

.product-info h4 {
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 700;
}

.product-info p {
    color: var(--text-secondary);
    margin-bottom: 18px;
    font-family: var(--font-secondary);
    font-size: 0.9rem;
}

/* ========== GALLERY ========== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    height: 260px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
    filter: brightness(1.15);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px 20px;
    background: linear-gradient(to top, var(--text-primary), transparent);
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--text-primary);
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-caption {
    transform: translateY(0);
}

/* ========== WHY CHOOSE US ========== */
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 28px;
}

.why-card {
    padding: 40px 28px;
    text-align: center;
    transition: var(--transition);
    position: relative;
    background: var(--bg-primary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

.why-card:hover {
    background: var(--glass-bg-hover);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.why-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: rgba(46, 204, 113, 0.1);
    font-size: 1.6rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    transition: var(--transition);
}

.why-card:hover .why-icon {
    background: var(--primary-green);
    color: white;
    box-shadow: 0 10px 20px rgba(46, 204, 113, 0.2);
}

.why-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 700;
}

.why-card p {
    color: var(--text-secondary);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
}

/* ========== CONTACT ========== */
.contact-wrapper {
    display: flex;
    gap: 28px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 320px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-card {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    min-width: 50px;
    border-radius: 14px;
    background: rgba(46, 204, 113, 0.1);
    font-size: 1.2rem;
    color: var(--primary-green);
}

.contact-card h4 {
    font-size: 1.1rem;
    margin-bottom: 6px;
    font-weight: 700;
}

.contact-card p {
    color: var(--text-secondary);
    font-family: var(--font-secondary);
    font-size: 0.9rem;
    line-height: 1.5;
}

.contact-link {
    color: var(--primary-green) !important;
    transition: var(--transition-fast);
}

.contact-link:hover {
    color: var(--primary-dark) !important;
}

.contact-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.contact-map {
    flex: 1;
    min-width: 320px;
    min-height: 420px;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.contact-map iframe {
    border-radius: var(--radius-md);
}

/* ========== CONNECT WITH US (Refined 2-Column) ========== */
.connect-container {
    max-width: 1200px;
    margin: 0 auto;
}
 
.connect-grid-refined {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
}
 
.connect-subtext {
    margin: 20px 0 35px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.7;
}
 
/* Left Side: Brand Social */
.insta-block {
    padding: 30px;
    border-radius: 24px;
    border: 1px solid rgba(46, 204, 113, 0.1);
    background: linear-gradient(135deg, rgba(46, 204, 113, 0.05), rgba(255, 255, 255, 0));
}
 
.insta-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}
 
.insta-icon-glow {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #f09433, #bc1888);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: white;
    box-shadow: 0 0 20px rgba(188, 24, 136, 0.4);
}
 
.insta-info h4 {
    font-size: 1.25rem;
    font-weight: 800;
}
 
.insta-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0;
}
 
.insta-promo {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.5;
}
 
.btn-insta-glow {
    background: linear-gradient(45deg, #f09433, #bc1888);
    color: white !important;
    border: none;
}
 
.btn-insta-glow:hover {
    box-shadow: 0 10px 25px rgba(188, 24, 136, 0.5);
    transform: translateY(-3px);
}
 
.contact-hint {
    margin-top: 30px;
    font-size: 0.9rem;
    color: var(--text-muted);
}
 
.context-link {
    color: var(--cyan);
    text-decoration: underline;
    font-weight: 600;
}
 
/* Right Side: Review System Card */
.glass-premium {
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    padding: 40px;
    box-shadow: var(--shadow-medium);
}
 
.card-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 35px;
    flex-wrap: wrap;
    gap: 20px;
}
 
.card-header-flex h3 {
    font-size: 1.8rem;
    margin: 0;
}
 
.rating-summary-premium {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(46, 204, 113, 0.05);
    padding: 10px 20px;
    border-radius: 16px;
    border: 1px solid rgba(46, 204, 113, 0.1);
}
 
.avg-val-big {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--primary-green);
    line-height: 1;
}
 
.avg-stars-wrap {
    display: flex;
    flex-direction: column;
}
 
.stars-gold {
    color: #ffcc00;
    font-size: 0.9rem;
    letter-spacing: 2px;
}
 
#review-count-text {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin: 5px 0 0;
}
 
/* Form Styling */
.review-form-premium {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--glass-border);
}
 
.star-rating-input {
    display: flex;
    gap: 10px;
    justify-content: center;
    padding: 10px 0;
}
 
.star-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
    transition: var(--transition);
}
 
.star-btn:hover,
.star-btn.active {
    color: var(--accent-color);
    transform: scale(1.15);
    text-shadow: 0 0 15px rgba(241, 196, 15, 0.3);
}
 
.form-inputs {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
 
.form-inputs input,
.form-inputs textarea {
    width: 100%;
    background: #fff;
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-primary);
    font-family: var(--font-secondary);
}
 
.form-inputs textarea {
    height: 100px;
    resize: none;
}
 
.form-inputs input:focus,
.form-inputs textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    background: #fff;
    box-shadow: var(--shadow-soft);
}
 
.form-feedback {
    text-align: center;
    font-size: 0.85rem;
    margin-top: 10px;
}
 
.form-feedback.success { color: var(--green); }
.form-feedback.error { color: #ff4757; }
 
/* Reviews Feed */
.reviews-feed-container {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 15px;
}
 
.reviews-feed-container::-webkit-scrollbar {
    width: 4px;
}
 
.reviews-feed-container::-webkit-scrollbar-thumb {
    background: var(--glass-border);
    border-radius: 10px;
}
 
.review-empty {
    text-align: center;
    color: var(--text-muted);
    font-style: italic;
    padding: 40px 0;
}
 
.review-item {
    padding: 24px;
    border-radius: 20px;
    background: #fff;
    border: 1px solid var(--glass-border);
    margin-bottom: 20px;
    box-shadow: var(--shadow-soft);
    animation: slideInUp 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}
 
@keyframes slideInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
 
.review-item-header {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
}
 
.reviewer-name {
    font-weight: 700;
    font-size: 1rem;
}
 
.verified-badge {
    font-size: 0.75rem;
    color: var(--primary-green);
    margin-left: 8px;
    font-weight: 500;
}
 
.review-stars {
    color: #ffcc00;
    font-size: 0.9rem;
    letter-spacing: 1px;
}
 
.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 12px;
}
 
.review-date {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: right;
}
 
/* ========== FOOTER BOTTOM ========== */
.footer {
    padding: 60px 6% 24px;
    margin-top: 40px;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    border-bottom: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.6rem;
    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 12px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    font-size: 1.1rem;
    color: var(--text-secondary);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-green);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(46, 204, 113, 0.3);
}

.footer-links-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-group h4,
.footer-contact-info h4 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--text-primary);
}

.footer-links-group a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    font-family: var(--font-secondary);
}

.footer-links-group a:hover,
.footer-contact-info p a:hover,
.footer-contact-info p i {
    color: var(--primary-green);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ========== FLOATING SOCIAL BUTTONS ========== */
.floating-social-group {
    position: fixed;
    bottom: 30px;
    right: 95px; /* Next to scroll-top button */
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}
 
.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: floatBtn 3s ease-in-out infinite;
}
 
.floating-whatsapp {
    background: #25D366;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4);
}
 
.floating-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    box-shadow: 0 10px 20px rgba(188, 24, 136, 0.4);
    animation-delay: 0.5s; /* Offset animation */
}
 
.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}
 
.floating-whatsapp:hover {
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.6);
}
 
.floating-instagram:hover {
    box-shadow: 0 10px 30px rgba(188, 24, 136, 0.6);
}
 
@keyframes floatBtn {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* ========== ORDERING SYSTEM SIMPLIFICATION ========== */

.build-order-container {
    text-align: center;
    margin: 0 16px 50px;
    padding: 35px 20px;
    background: rgba(0, 229, 255, 0.08);
    border: 1px solid rgba(0, 229, 255, 0.25);
    border-radius: var(--radius-lg);
    box-shadow: 0 15px 50px rgba(0, 229, 255, 0.15);
}

.btn-build-order {
    background: linear-gradient(135deg, #00C9FF 0%, #92FE9D 100%);
    color: var(--bg-primary);
    padding: 20px 35px;
    font-size: 1.25rem;
    font-weight: 900;
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 201, 255, 0.4);
    width: 100%;
    min-height: 58px;
    animation: pulse-glow 2.5s infinite;
}

@keyframes pulse-glow {
    0% { box-shadow: 0 10px 30px rgba(0, 201, 255, 0.4); }
    50% { box-shadow: 0 15px 45px rgba(0, 201, 255, 0.6); transform: scale(1.02); }
    100% { box-shadow: 0 10px 30px rgba(0, 201, 255, 0.4); }
}

.btn-build-order:active {
    transform: scale(0.95);
}

.build-order-helper {
    display: block;
    margin-top: 15px;
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 500;
}

/* How to Order Steps */
.how-to-order {
    margin: 0 16px 40px;
    padding: 30px 20px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
}

.how-to-title {
    text-align: center;
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.how-to-title i {
    color: var(--cyan);
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.step-num {
    width: 36px;
    height: 36px;
    background: var(--cyan);
    color: var(--bg-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 4px 10px rgba(0, 229, 255, 0.3);
}

.step-text {
    font-size: 1rem;
    line-height: 1.4;
    color: var(--text-primary);
    font-weight: 500;
}

.customer-notice {
    text-align: center;
    margin-top: 30px;
    padding: 16px 20px;
    background: rgba(255, 217, 0, 0.05);
    border: 1px solid rgba(255, 217, 0, 0.2);
    border-radius: var(--radius-md);
    color: #ffd900;
    font-weight: 600;
    line-height: 1.5;
    font-size: 0.9rem;
    width: 100%;
}

/* Floating WhatsApp Fix */
.floating-social-group {
    bottom: 25px;
    right: 20px;
}

.floating-whatsapp-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.floating-label {
    background: var(--bg-secondary);
    color: white;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    border: 1px solid var(--glass-border);
}

/* Section Spacing */
.section-padding {
    padding: 60px 20px;
}

.category-grid, .featured-grid, .gallery-grid {
    grid-template-columns: 1fr !important;
    gap: 20px;
}

/* Desktop Overrides */
@media (min-width: 992px) {
    h2 { font-size: 2.2rem; }
    .btn { width: auto; }
    .category-grid { grid-template-columns: repeat(3, 1fr) !important; }
    .featured-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .steps-list { flex-direction: row; }
    .step-card { flex-direction: column; text-align: center; gap: 15px; }
    .section-padding { padding: 100px 5%; }
}
 
/* ========== SCROLL TO TOP ========== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    color: var(--cyan);
    font-size: 1.2rem;
    transition: var(--transition);
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--cyan);
    color: white;
    transform: translateY(-5px);
    box-shadow: var(--shadow-neon-cyan);
}

/* ========== SCROLL REVEAL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered reveal delays */
.category-grid .cat-card:nth-child(1) { transition-delay: 0s; }
.category-grid .cat-card:nth-child(2) { transition-delay: 0.08s; }
.category-grid .cat-card:nth-child(3) { transition-delay: 0.16s; }
.category-grid .cat-card:nth-child(4) { transition-delay: 0.24s; }
.category-grid .cat-card:nth-child(5) { transition-delay: 0.32s; }
.category-grid .cat-card:nth-child(6) { transition-delay: 0.40s; }

.featured-grid .product-card:nth-child(1) { transition-delay: 0s; }
.featured-grid .product-card:nth-child(2) { transition-delay: 0.1s; }
.featured-grid .product-card:nth-child(3) { transition-delay: 0.2s; }
.featured-grid .product-card:nth-child(4) { transition-delay: 0.3s; }

.why-grid .why-card:nth-child(1) { transition-delay: 0s; }
.why-grid .why-card:nth-child(2) { transition-delay: 0.1s; }
.why-grid .why-card:nth-child(3) { transition-delay: 0.15s; }
.why-grid .why-card:nth-child(4) { transition-delay: 0.2s; }

.gallery-grid .gallery-item:nth-child(1) { transition-delay: 0s; }
.gallery-grid .gallery-item:nth-child(2) { transition-delay: 0.08s; }
.gallery-grid .gallery-item:nth-child(3) { transition-delay: 0.16s; }
.gallery-grid .gallery-item:nth-child(4) { transition-delay: 0.24s; }

/* ========== RESPONSIVE: TABLETS (< 1024px) ========== */
@media screen and (max-width: 1024px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 130px;
        gap: 40px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-subtitle {
        max-width: 100%;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .about-wrapper {
        flex-direction: column;
    }

    .about-image {
        min-height: 260px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

/* ========== RESPONSIVE: MOBILE (< 768px) ========== */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 75%;
        height: 100vh;
        background: #fff;
        backdrop-filter: blur(24px);
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 30px;
        transition: var(--transition);
        z-index: 1000;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
    }

    .nav-links.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .section-padding {
        padding: 70px 5%;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .hero-shop-img {
        height: 220px;
    }

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

    .stat-divider {
        display: none;
    }

    .about-wrapper {
        padding: 28px;
    }

    .category-grid,
    .featured-grid,
    .gallery-grid,
    .why-grid,
    .connect-grid-refined {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .contact-info {
        padding: 28px;
        min-width: auto;
    }

    .contact-map {
        min-width: auto;
        min-height: 300px;
    }

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

    .footer-social {
        justify-content: center;
    }

    .footer-contact-info p {
        justify-content: center;
    }
}

/* ========== RESPONSIVE: SMALL MOBILE (< 480px) ========== */
@media screen and (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    .about-buttons .btn {
        width: 100%;
    }

    .stat-number {
        font-size: 1.8rem;
    }

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

/* ========== OFFER BANNER ========== */
.offer-banner {
    background: linear-gradient(90deg, var(--primary-green), var(--primary-dark));
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1001;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.banner-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: var(--transition-fast);
}

.banner-close:hover {
    opacity: 1;
}

/* ========== TRUST & DELIVERY SECTION ========== */
.trust-delivery-section {
    padding: 60px 0;
    background: var(--bg-tertiary);
}

.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.trust-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.trust-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.trust-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.trust-box h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}

.trust-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ========== FLOATING CONTROLS ========== */
.floating-controls {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.cart-btn-floating {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(46, 204, 113, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
    transition: var(--transition);
}

.cart-btn-floating:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* ========== CART SIDEBAR ========== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 90%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

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

.empty-cart-msg {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 40px;
    font-size: 0.9rem;
}

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

.cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    object-fit: cover;
}

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

.cart-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.cart-item-info p {
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 700;
}

.cart-qty-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-full);
    padding: 4px;
}

.qty-btn {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: none;
    background: #fff;
    color: var(--primary-dark);
    font-size: 1.1rem;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: var(--transition-fast);
}

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

.qty-display {
    font-weight: 700;
    font-size: 1rem;
    min-width: 20px;
    text-align: center;
    color: var(--primary-dark);
}

.cart-footer {
    padding: 25px;
    border-top: 1px dashed var(--glass-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* ========== MODAL QUICK VIEW ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 2500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #fff;
    margin: 5% auto;
    width: 800px;
    max-width: 90%;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    animation: modalOpen 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

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

.modal-body {
    display: flex;
    flex-wrap: wrap;
}

.modal-img-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
}

.modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    flex: 1.2;
    padding: 40px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.modal-details h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.modal-price {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 800;
    margin-bottom: 20px;
}

.modal-details p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

/* ========== APP-LIKE ORDER SECTION & GRID ========== */
.app-order-section {
    position: relative;
    background: var(--bg-primary); /* Enforce light theme */
}

/* Sticky Search & Filter Bar */
.sticky-filter-bar {
    position: sticky;
    top: 60px; /* Below navbar */
    z-index: 1000;
    padding: 15px 0;
    margin-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
    background: rgba(248, 249, 250, 0.95);
    backdrop-filter: blur(10px);
}

.search-container {
    position: relative;
    margin-bottom: 15px;
}

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

#product-search {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border-radius: var(--radius-full);
    border: 1px solid var(--glass-border);
    background: #fff;
    font-size: 1rem;
    color: var(--text-primary);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
    transition: var(--transition-fast);
}

#product-search:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 204, 113, 0.15);
}

/* Horizontal Scrollable Filter Chips */
.filter-chips {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
.filter-chips::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.filter-chip {
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: #fff;
    border: 1px solid var(--glass-border);
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition-fast);
    box-shadow: var(--shadow-sm);
    min-height: 40px; /* Touch target size */
}

.filter-chip:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.filter-chip.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.3);
}

/* Category Grid (Top) */
.app-category-section {
    margin-bottom: 40px;
}

.section-header-small {
    margin-bottom: 15px;
}

.section-header-small h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.app-category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 15px;
}

.app-cat-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 15px;
    text-align: center;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    border: 1px solid transparent;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 120px;
}

.app-cat-card:hover, .app-cat-card.active {
    border-color: var(--primary-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.app-cat-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.app-cat-card h4 {
    font-size: 0.9rem;
    color: var(--text-primary);
    margin: 0;
}

/* App Product Grid (2-column mobile default) */
.app-product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns on mobile */
    gap: 15px;
}

@media (min-width: 576px) {
    .app-product-grid {
        grid-template-columns: repeat(3, 1fr); /* 3 columns on small tablets */
        gap: 20px;
    }
}

@media (min-width: 992px) {
    .app-product-grid {
        grid-template-columns: repeat(4, 1fr); /* 4 columns on desktop */
        gap: 25px;
    }
}

/* Updated Product Cards for App Feel */
.product-card {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid var(--glass-border);
}

.product-img {
    position: relative;
    padding-top: 100%; /* 1:1 Aspect Ratio */
    background: #f8f9fa;
    border-bottom: 1px solid var(--glass-border);
}

.product-img img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 10px;
}

.product-info {
    padding: 12px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h4 {
    font-size: 0.9rem;
    line-height: 1.3;
    margin-bottom: 5px;
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Truncate after 2 lines */
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    font-size: 1.1rem;
    margin-bottom: 10px;
}

.product-actions {
    margin-top: auto;
}

.product-actions .btn {
    border-radius: 8px; /* Slightly squarer buttons */
}

/* ========== BADGES ========== */
.badge-best-seller {
    background: #ff4757;
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(255, 71, 87, 0.3);
}

.badge-new {
    background: #2ed573;
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(46, 213, 115, 0.3);
}

/* ========== MOBILE REFINEMENTS ========== */
@media (max-width: 768px) {
    .modal-content {
        margin: 0;
        width: 100%;
        height: 100%;
        border-radius: 0;
        overflow-y: auto;
    }
    
    .modal-body {
        flex-direction: column;
    }
    
    .modal-img-container {
        height: 250px;
    }
    
    .modal-details {
        padding: 30px 20px;
    }
    
    .modal-actions {
        flex-direction: column;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* ========== OFFER BANNER ========== */
.offer-banner {
    background: linear-gradient(90deg, var(--primary-green), var(--primary-dark));
    color: white;
    padding: 10px 0;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    position: relative;
    z-index: 1001;
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.banner-close {
    background: none;
    border: none;
    color: white;
    font-size: 1.4rem;
    cursor: pointer;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.7;
    transition: var(--transition-fast);
}

.banner-close:hover {
    opacity: 1;
}

/* ========== TRUST & DELIVERY SECTION ========== */
.trust-delivery-section {
    padding: 60px 0;
    background: var(--bg-tertiary);
}

.container-narrow {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.trust-box {
    background: #fff;
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--glass-border);
    transition: var(--transition);
}

.trust-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-green);
}

.trust-icon {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 15px;
}

.trust-box h3 {
    font-size: 1.15rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 700;
}

.trust-box p {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* ========== FLOATING CONTROLS ========== */
.floating-controls {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 1000;
}

.cart-btn-floating {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-green);
    color: white;
    border: none;
    cursor: pointer;
    box-shadow: 0 5px 25px rgba(46, 204, 113, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    position: relative;
    transition: var(--transition);
}

.cart-btn-floating:hover {
    transform: scale(1.1);
    background: var(--primary-dark);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff4757;
    color: white;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid white;
}

/* ========== CART SIDEBAR ========== */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 90%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 25px;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 1.25rem;
    color: var(--text-primary);
}

.close-cart {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-muted);
}

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

.empty-cart-msg {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 40px;
    font-size: 0.9rem;
}

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

.cart-item img {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    object-fit: cover;
}

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

.cart-item-info h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.cart-item-info p {
    font-size: 0.85rem;
    color: var(--primary-green);
    font-weight: 700;
}

.remove-item {
    background: none;
    border: none;
    color: #ff4757;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 5px;
}

.cart-footer {
    padding: 25px;
    border-top: 1px dashed var(--glass-border);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

/* ========== MODAL QUICK VIEW ========== */
.modal {
    display: none;
    position: fixed;
    z-index: 2500;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.6);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: #fff;
    margin: 5% auto;
    width: 800px;
    max-width: 90%;
    border-radius: var(--radius-lg);
    position: relative;
    overflow: hidden;
    animation: modalOpen 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.close-modal {
    position: absolute;
    right: 20px;
    top: 15px;
    font-size: 2rem;
    cursor: pointer;
    z-index: 10;
    color: var(--text-muted);
    transition: var(--transition-fast);
}

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

.modal-body {
    display: flex;
    flex-wrap: wrap;
}

.modal-img-container {
    flex: 1;
    min-width: 300px;
    height: 400px;
}

.modal-img-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.modal-details {
    flex: 1.2;
    padding: 40px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.modal-details h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.modal-price {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 800;
    margin-bottom: 20px;
}

.modal-details p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 30px;
}

.modal-actions {
    display: flex;
    gap: 15px;
    margin-top: auto;
}

/* ========== TOAST NOTIFICATIONS ========== */
.toast-container {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.toast {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    padding: 12px 25px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--primary-green);
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    animation: toastSlideIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: auto;
}

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

.toast.fade-out {
    animation: toastFadeOut 0.5s forwards;
}

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

.toast i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* ========== STICKY FILTER BAR (INSTAMART STYLE) ========== */
.sticky-filter-bar {
    position: sticky;
    top: 70px; /* Below navbar */
    z-index: 90;
    padding: 15px 0;
    transition: var(--transition-normal);
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(139, 94, 60, 0.1);
    margin-bottom: 20px;
}

.filter-controls-top {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    align-items: center;
}

.search-container {
    flex: 1;
    position: relative;
}

.search-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-green);
    opacity: 0.6;
}

#product-search {
    width: 100%;
    padding: 12px 15px 12px 45px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(139, 94, 60, 0.15);
    background: white;
    font-family: inherit;
    font-size: 0.95rem;
    transition: var(--transition-fast);
}

#product-search:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 4px rgba(139, 94, 60, 0.1);
}

.glass-select {
    padding: 10px 15px;
    border-radius: var(--radius-md);
    border: 1px solid rgba(139, 94, 60, 0.15);
    background: white;
    color: var(--text-primary);
    font-weight: 500;
    cursor: pointer;
    font-family: inherit;
}

/* Category Pills Horizontal Scroll */
.filter-chips {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.filter-chips::-webkit-scrollbar {
    display: none;
}

.filter-chip {
    white-space: nowrap;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(139, 94, 60, 0.15);
    background: white;
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.filter-chip.active {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
    box-shadow: 0 4px 12px rgba(139, 94, 60, 0.2);
}

/* Best Seller Badge */
.best-seller-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: linear-gradient(135deg, #ff4e50, #f9d423);
    color: white;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(255, 78, 80, 0.3);
    z-index: 2;
}

/* ========== STICKY BOTTOM CART BAR ========== */
.sticky-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    padding: 15px 6%;
    background: var(--primary-green);
    color: white;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
}

.sticky-cart-bar.hide {
    transform: translateY(100%);
}

.cart-bar-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-bar-info {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1.1rem;
}

.cart-bar-info i {
    font-size: 1.3rem;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .app-product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
    
    .filter-controls-top {
        flex-direction: column;
        align-items: stretch;
    }
    
    .sticky-filter-bar {
        top: 60px;
    }

    .stat-number {
        font-size: 1.8rem;
    }
}