/* ========================================
   SEMEDO STORES - Premium High-End CSS
   ======================================== */

/* CSS Variables */
:root {
    /* Premium Colors */
    --primary-green: #0D4A2E;
    --secondary-green: #146B3A;
    --accent-gold: #B8860B;
    --light-gold: #D4AF37;
    --white: #FFFFFF;
    --off-white: #FAFBFC;
    --light-gray: #F3F4F6;
    --text-dark: #111827;
    --text-medium: #4B5563;
    --text-light: #9CA3AF;
    --success: #059669;
    --error: #DC2626;
    --warning: #D97706;
    
    /* Gradients */
    --gradient-premium: linear-gradient(135deg, #0D4A2E 0%, #146B3A 50%, #B8860B 100%);
    --gradient-hero: linear-gradient(135deg, rgba(13, 74, 46, 0.95) 0%, rgba(20, 107, 58, 0.9) 100%);
    --gradient-gold: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    --gradient-glass: linear-gradient(135deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
    --gradient-cta-green: linear-gradient(135deg, #0D4A2E 0%, #146B3A 100%);
    --gradient-cta-gold: linear-gradient(135deg, #D4AF37 0%, #B8860B 100%);
    
    /* Premium Shadows */
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 10px 10px -5px rgba(0,0,0,0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0,0,0,0.25);
    --shadow-gold: 0 4px 20px rgba(184, 134, 11, 0.3);
    --shadow-green: 0 4px 20px rgba(13, 74, 46, 0.2);
    --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 12px 40px rgba(0, 0, 0, 0.15);
    
    /* Typography - Using Inter for premium feel */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 16px;
    --space-lg: 24px;
    --space-xl: 32px;
    --space-2xl: 48px;
    --space-3xl: 64px;
    --space-4xl: 96px;
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-normal: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* Typography - Premium Hierarchy */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

h1 { 
    font-size: 56px; 
    font-weight: 700; 
    letter-spacing: -0.03em;
    line-height: 1.1;
}
h2 { 
    font-size: 40px; 
    font-weight: 700; 
    letter-spacing: -0.02em;
}
h3 { 
    font-size: 28px; 
    letter-spacing: -0.01em;
}
h4 { font-size: 20px; }
h5 { font-size: 18px; }
h6 { font-size: 16px; }

p {
    line-height: 1.7;
    color: var(--text-medium);
    letter-spacing: 0.1px;
}

/* Better paragraph spacing */
p + p {
    margin-top: 1em;
}

@media (max-width: 768px) {
    h1 { font-size: 36px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }
}

/* Container */
.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-md);
    }
}

/* ========================================
   NAVIGATION
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: var(--transition-normal);
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.navbar.scrolled {
    height: 70px;
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
}

.logo-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-premium);
    border-radius: var(--radius-md);
    color: var(--white);
    font-size: 20px;
}

.logo-text {
    background: var(--gradient-premium);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
}

.nav-link {
    font-weight: 500;
    color: var(--text-medium);
    position: relative;
    padding: var(--space-sm) 0;
    transition: var(--transition-fast);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-premium);
    transition: var(--transition-normal);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-icons {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.nav-icon-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    color: var(--text-medium);
    font-size: 17px;
    font-weight: 400;
    transition: var(--transition-fast);
    position: relative;
    background: transparent;
}

.nav-icon-btn:hover {
    background: var(--light-gray);
    color: var(--primary-green);
}

.nav-icon-btn i {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Badge - Modern Style */
.cart-badge {
    position: absolute;
    top: 4px;
    right: 4px;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    background: var(--accent-gold);
    color: var(--white);
    font-size: 10px;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.3px;
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

/* Mobile Menu - Premium Style */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-2xl);
    overflow-y: auto;
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--light-gray);
    background: var(--off-white);
    position: sticky;
    top: 0;
}

.close-menu-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-medium);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.close-menu-btn:hover {
    background: var(--light-gray);
    color: var(--text-dark);
}

.mobile-menu-links {
    padding: var(--space-lg);
}

.mobile-link {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) 0;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition-fast);
}

.mobile-link:hover {
    color: var(--primary-green);
    padding-left: var(--space-sm);
}

.mobile-link i {
    width: 24px;
    color: var(--text-light);
    transition: var(--transition-fast);
}

.mobile-link:hover i {
    color: var(--primary-green);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
    min-height: 48px;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background: var(--secondary-green);
    border-color: var(--secondary-green);
    box-shadow: var(--shadow-green);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--primary-green);
    border: none;
}

.btn-ghost:hover {
    background: var(--light-gray);
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--white);
    border: 2px solid var(--accent-gold);
}

.btn-gold:hover {
    background: var(--light-gold);
    border-color: var(--light-gold);
    box-shadow: var(--shadow-gold);
}

.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 14px;
    min-height: 36px;
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 18px;
    min-height: 56px;
}

.btn-block {
    width: 100%;
}

/* ========================================
   HERO SECTION - Premium Image Slider
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    overflow: hidden;
    background: var(--text-dark);
}

/* Hero Slider Container */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slide-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

/* Dark gradient overlay for readability */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(13, 74, 46, 0.92) 0%,
        rgba(13, 74, 46, 0.75) 50%,
        rgba(0, 0, 0, 0.6) 100%
    );
    z-index: 1;
}

/* Subtle pattern overlay */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 2;
    pointer-events: none;
}

/* Hero Content */
.hero-content {
    position: relative;
    z-index: 10;
    max-width: 700px;
    padding: var(--space-2xl) 0;
}

/* Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: var(--light-gold);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xl);
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.8s ease-out;
}

/* Main Title */
.hero-title {
    font-size: 72px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-xl);
    line-height: 1.05;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title span {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Subtitle */
.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
    font-weight: 400;
    letter-spacing: 0.2px;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

/* CTA Buttons */
.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-buttons .btn {
    min-width: 180px;
    padding: var(--space-md) var(--space-xl);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
    border-radius: var(--radius-md);
}

/* Shop Now - Green gradient */
.hero-buttons .btn-primary {
    background: var(--gradient-cta-green);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(13, 74, 46, 0.4);
}

.hero-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(13, 74, 46, 0.5);
    background: var(--primary-green);
}

/* Explore Deals - Gold gradient */
.hero-buttons .btn-secondary {
    background: var(--gradient-cta-gold);
    color: var(--white);
    border: none;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
}

.hero-buttons .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(184, 134, 11, 0.5);
    background: var(--accent-gold);
}

/* Stats */
.hero-stats {
    display: flex;
    gap: var(--space-3xl);
    margin-top: var(--space-3xl);
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.hero-stat {
    text-align: left;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 48px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
    letter-spacing: -0.02em;
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: var(--space-sm);
    font-weight: 500;
}

/* Slider Navigation Dots */
.hero-slider-nav {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-md);
    z-index: 20;
}

.hero-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition-normal);
    border: none;
    padding: 0;
}

.hero-slider-dot:hover {
    background: rgba(255, 255, 255, 0.7);
}

.hero-slider-dot.active {
    background: var(--light-gold);
    width: 32px;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        max-width: 100%;
        text-align: center;
        padding: 0 var(--space-lg);
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .hero-stat {
        text-align: center;
    }
    
    .hero-title {
        font-size: 56px;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: var(--space-xl);
    }
    
    .hero-stat-number {
        font-size: 36px;
    }
    
    .hero-stat-label {
        font-size: 12px;
    }
    
    .hero-buttons .btn {
        min-width: 140px;
        padding: var(--space-sm) var(--space-lg);
        font-size: 14px;
    }
    
    .hero-badge {
        font-size: 12px;
    }
    
    .hero-slider-nav {
        bottom: 24px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: var(--space-lg);
    }
}

/* ========================================
   SECTIONS - Premium Layout
   ======================================== */
.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
    letter-spacing: -0.02em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: var(--gradient-premium);
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: var(--space-lg) auto 0;
    line-height: 1.6;
    font-weight: 400;
}

/* Featured Products */
.featured-products {
    background: var(--off-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Card - Premium Style */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    transition: var(--transition-normal);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
    border-color: rgba(13, 74, 46, 0.1);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Product Badge */
.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: 6px 12px;
    background: var(--accent-gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-badge.dropship {
    background: var(--primary-green);
}

/* Product Actions */
.product-actions {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-normal);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    color: var(--text-medium);
    box-shadow: var(--shadow-md);
    transition: var(--transition-fast);
    font-size: 15px;
}

.product-action-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Product Info */
.product-info {
    padding: var(--space-lg);
}

.product-category {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.product-rating i {
    font-size: 12px;
    color: var(--accent-gold);
}

.product-rating span {
    font-size: 13px;
    color: var(--text-light);
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.product-current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
}

.product-original-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-dropship-info {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--light-gray);
    font-size: 12px;
    color: var(--primary-green);
}

.product-dropship-info i {
    font-size: 10px;
}

.quick-add-btn {
    width: 100%;
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--light-gray);
    color: var(--text-dark);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.quick-add-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Categories */
.categories {
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.category-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(13, 74, 46, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    transition: var(--transition-normal);
}

.category-card:hover .category-overlay {
    background: linear-gradient(180deg, rgba(13, 74, 46, 0.7) 0%, rgba(13, 74, 46, 0.95) 100%);
}

.category-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.category-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.testimonials {
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gradient-premium);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-location {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-rating {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 14px;
}

.testimonial-text {
    color: var(--text-medium);
    line-height: 1.7;
}

.cart-badge {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 20px;
    height: 20px;
    background: var(--accent-gold);
    color: var(--white);
    font-size: 11px;
    font-weight: 600;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: var(--transition-normal);
    box-shadow: var(--shadow-elevated);
}

.mobile-menu.active {
    left: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--light-gray);
}

.close-menu-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-medium);
}

.mobile-menu-links {
    padding: var(--space-lg);
}

.mobile-link {
    display: block;
    padding: var(--space-md) 0;
    font-size: 18px;
    font-weight: 500;
    color: var(--text-dark);
    border-bottom: 1px solid var(--light-gray);
    transition: var(--transition-fast);
}

.mobile-link:hover {
    color: var(--primary-green);
    padding-left: var(--space-sm);
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    padding: var(--space-md) var(--space-xl);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-normal);
    cursor: pointer;
    min-height: 48px;
}

.btn-primary {
    background: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background: var(--secondary-green);
    border-color: var(--secondary-green);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-secondary:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--primary-green);
    border: none;
}

.btn-ghost:hover {
    background: var(--light-gray);
}

.btn-gold {
    background: var(--accent-gold);
    color: var(--white);
    border: 2px solid var(--accent-gold);
}

.btn-gold:hover {
    background: #B8911F;
    border-color: #B8911F;
    box-shadow: var(--shadow-gold);
}

.btn-sm {
    padding: var(--space-sm) var(--space-md);
    font-size: 14px;
    min-height: 36px;
}

.btn-lg {
    padding: var(--space-lg) var(--space-2xl);
    font-size: 18px;
    min-height: 56px;
}

.btn-block {
    width: 100%;
}

/* ========================================
   HERO SECTION
   ======================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 80px;
    background: var(--gradient-hero);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-sm) var(--space-md);
    background: rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-full);
    color: var(--light-gold);
    font-size: 14px;
    font-weight: 500;
    margin-bottom: var(--space-lg);
    backdrop-filter: blur(10px);
    animation: fadeInDown 0.6s ease-out;
}

.hero-title {
    font-size: 64px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: var(--space-lg);
    line-height: 1.1;
    animation: fadeInUp 0.6s ease-out 0.2s both;
}

.hero-title span {
    color: var(--accent-gold);
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
    animation: fadeInUp 0.6s ease-out 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease-out 0.6s both;
}

.hero-buttons .btn {
    min-width: 180px;
}

.hero-buttons .btn-primary {
    background: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.hero-buttons .btn-primary:hover {
    background: var(--light-gold);
    border-color: var(--light-gold);
}

.hero-buttons .btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.hero-buttons .btn-secondary:hover {
    background: var(--white);
    color: var(--primary-green);
}

.hero-stats {
    display: flex;
    gap: var(--space-2xl);
    margin-top: var(--space-3xl);
    animation: fadeInUp 0.6s ease-out 0.8s both;
}

.hero-stat {
    text-align: center;
}

.hero-stat-number {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: var(--white);
}

.hero-stat-label {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-image {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 45%;
    max-width: 600px;
    animation: fadeInRight 0.8s ease-out 0.4s both;
}

.hero-image img {
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-elevated);
}

@media (max-width: 1024px) {
    .hero-image {
        display: none;
    }
    
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-title {
        font-size: 42px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-stats {
        gap: var(--space-xl);
    }
    
    .hero-stat-number {
        font-size: 32px;
    }
}

/* ========================================
   SECTIONS
   ======================================== */
.section {
    padding: var(--space-4xl) 0;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-title {
    font-size: 42px;
    margin-bottom: var(--space-md);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--gradient-green-gold);
    border-radius: var(--radius-full);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: var(--space-md) auto 0;
}

/* Featured Products */
.featured-products {
    background: var(--off-white);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-md);
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-normal);
    position: relative;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-elevated);
}

.product-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: var(--light-gray);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: var(--space-md);
    left: var(--space-md);
    padding: var(--space-xs) var(--space-sm);
    background: var(--accent-gold);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
}

.product-badge.dropship {
    background: var(--primary-green);
}

.product-actions {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
    opacity: 0;
    transform: translateX(10px);
    transition: var(--transition-normal);
}

.product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
}

.product-action-btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-full);
    color: var(--text-medium);
    box-shadow: var(--shadow-medium);
    transition: var(--transition-fast);
}

.product-action-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

.product-info {
    padding: var(--space-md);
}

.product-category {
    font-size: 12px;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--space-xs);
}

.product-title {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-bottom: var(--space-sm);
}

.product-rating i {
    font-size: 12px;
    color: var(--accent-gold);
}

.product-rating span {
    font-size: 13px;
    color: var(--text-light);
}

.product-price {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.product-current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
}

.product-original-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.product-dropship-info {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
    margin-top: var(--space-sm);
    padding-top: var(--space-sm);
    border-top: 1px solid var(--light-gray);
    font-size: 12px;
    color: var(--primary-green);
}

.product-dropship-info i {
    font-size: 10px;
}

.quick-add-btn {
    width: 100%;
    margin-top: var(--space-md);
    padding: var(--space-sm) var(--space-md);
    background: var(--light-gray);
    color: var(--text-dark);
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
}

.quick-add-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

/* Categories */
.categories {
    background: var(--white);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.category-card {
    position: relative;
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-normal);
}

.category-card:hover img {
    transform: scale(1.1);
}

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(27, 94, 32, 0.9) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: var(--space-lg);
    transition: var(--transition-normal);
}

.category-card:hover .category-overlay {
    background: linear-gradient(180deg, rgba(27, 94, 32, 0.7) 0%, rgba(27, 94, 32, 0.95) 100%);
}

.category-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: var(--space-xs);
}

.category-count {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
}

@media (max-width: 1024px) {
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .categories-grid {
        grid-template-columns: 1fr;
    }
}

/* Testimonials */
.testimonials {
    background: var(--off-white);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-lg);
}

.testimonial-card {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-md);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gradient-green-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
}

.testimonial-author {
    font-weight: 600;
    color: var(--text-dark);
}

.testimonial-location {
    font-size: 14px;
    color: var(--text-light);
}

.testimonial-rating {
    display: flex;
    gap: var(--space-xs);
    margin-bottom: var(--space-md);
}

.testimonial-rating i {
    color: var(--accent-gold);
    font-size: 14px;
}

.testimonial-text {
    color: var(--text-medium);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* Newsletter */
.newsletter {
    background: var(--gradient-green-gold);
    padding: var(--space-3xl) 0;
}

.newsletter-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-title {
    font-size: 36px;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: var(--space-xl);
}

.newsletter-form {
    display: flex;
    gap: var(--space-md);
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border: none;
    border-radius: var(--radius-md);
    font-size: 16px;
    outline: none;
}

.newsletter-form button {
    padding: var(--space-md) var(--space-xl);
    background: var(--accent-gold);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #B8911F;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .newsletter-form {
        flex-direction: column;
    }
}

/* ========================================
   SHOP PAGE
   ======================================== */
.shop-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--off-white);
}

.shop-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
}

/* Shop Sidebar */
.shop-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-subtle);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.sidebar-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--light-gray);
}

.filter-group {
    margin-bottom: var(--space-lg);
}

.filter-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-md);
    display: block;
}

.filter-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.filter-checkbox {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    cursor: pointer;
}

.filter-checkbox input {
    width: 18px;
    height: 18px;
    accent-color: var(--primary-green);
}

.filter-checkbox span {
    font-size: 14px;
    color: var(--text-medium);
}

.price-inputs {
    display: flex;
    gap: var(--space-sm);
    align-items: center;
}

.price-inputs input {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 14px;
}

.price-inputs span {
    color: var(--text-light);
}

.clear-filters-btn {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    background: var(--light-gray);
    color: var(--text-dark);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.clear-filters-btn:hover {
    background: var(--error);
    color: var(--white);
}

/* Shop Content */
.shop-content {
    width: 100%;
}

.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.shop-results {
    font-size: 14px;
    color: var(--text-light);
}

.shop-sort {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.shop-sort label {
    font-size: 14px;
    color: var(--text-medium);
}

.shop-sort select {
    padding: var(--space-sm) var(--space-md);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    background: var(--white);
    font-size: 14px;
    cursor: pointer;
}

@media (max-width: 1024px) {
    .shop-container {
        grid-template-columns: 1fr;
    }
    
    .shop-sidebar {
        position: static;
    }
}

/* ========================================
   PRODUCT DETAILS PAGE
   ======================================== */
.product-details-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--off-white);
}

.product-details-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    padding: var(--space-xl) 0;
}

/* Product Gallery */
.product-gallery {
    position: sticky;
    top: 100px;
}

.main-image {
    aspect-ratio: 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    margin-bottom: var(--space-md);
    box-shadow: var(--shadow-subtle);
}

.main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.thumbnail-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-sm);
}

.thumbnail {
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition-fast);
}

.thumbnail.active,
.thumbnail:hover {
    border-color: var(--primary-green);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Product Info */
.product-info-section {
    background: var(--white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-subtle);
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: var(--space-md);
}

.product-breadcrumb a {
    color: var(--primary-green);
}

.product-breadcrumb a:hover {
    text-decoration: underline;
}

.product-detail-title {
    font-size: 32px;
    margin-bottom: var(--space-md);
}

.product-detail-rating {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--light-gray);
}

.product-detail-rating i {
    color: var(--accent-gold);
}

.product-detail-rating span {
    color: var(--text-light);
}

.product-detail-price {
    display: flex;
    align-items: baseline;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.price-current {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-green);
}

.price-original {
    font-size: 20px;
    color: var(--text-light);
    text-decoration: line-through;
}

.price-discount {
    padding: var(--space-xs) var(--space-sm);
    background: var(--error);
    color: var(--white);
    font-size: 14px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.product-stock {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    margin-bottom: var(--space-lg);
}

.stock-badge {
    padding: var(--space-xs) var(--space-sm);
    background: var(--success);
    color: var(--white);
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

.stock-badge.out-of-stock {
    background: var(--error);
}

.product-description {
    color: var(--text-medium);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.product-quantity {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.quantity-label {
    font-weight: 600;
    color: var(--text-dark);
}

.quantity-selector {
    display: flex;
    align-items: center;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quantity-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--text-medium);
    transition: var(--transition-fast);
}

.quantity-btn:hover {
    background: var(--light-gray);
    color: var(--primary-green);
}

.quantity-value {
    width: 60px;
    text-align: center;
    font-weight: 600;
    font-size: 18px;
}

.product-actions-detail {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
}

.product-actions-detail .btn {
    flex: 1;
}

.whatsapp-btn {
    background: #25D366;
    color: var(--white);
    border: none;
}

.whatsapp-btn:hover {
    background: #128C7E;
}

.product-meta {
    padding-top: var(--space-lg);
    border-top: 1px solid var(--light-gray);
}

.meta-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-sm);
    font-size: 14px;
}

.meta-label {
    color: var(--text-light);
    min-width: 120px;
}

.meta-value {
    color: var(--text-dark);
    font-weight: 500;
}

.dropship-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    padding: var(--space-xs) var(--space-sm);
    background: rgba(27, 94, 32, 0.1);
    color: var(--primary-green);
    font-size: 13px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    margin-top: var(--space-sm);
}

@media (max-width: 1024px) {
    .product-details-container {
        grid-template-columns: 1fr;
    }
    
    .product-gallery {
        position: static;
    }
}

/* ========================================
   CART & CHECKOUT PAGE
   ======================================== */
.cart-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--off-white);
}

.cart-container {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
}

/* Cart Items */
.cart-items-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-subtle);
}

.cart-section-title {
    font-size: 24px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--light-gray);
}

.cart-item {
    display: flex;
    gap: var(--space-lg);
    padding: var(--space-lg) 0;
    border-bottom: 1px solid var(--light-gray);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--light-gray);
    flex-shrink: 0;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-details {
    flex: 1;
}

.cart-item-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-sm);
}

.cart-item-category {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.cart-item-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--space-md);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.cart-item-quantity button {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-sm);
    color: var(--text-medium);
    transition: var(--transition-fast);
}

.cart-item-quantity button:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.cart-item-quantity span {
    width: 40px;
    text-align: center;
    font-weight: 600;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: var(--space-md);
}

.remove-item-btn {
    color: var(--text-light);
    font-size: 18px;
    transition: var(--transition-fast);
}

.remove-item-btn:hover {
    color: var(--error);
}

.cart-empty {
    text-align: center;
    padding: var(--space-3xl);
}

.cart-empty i {
    font-size: 64px;
    color: var(--light-gray);
    margin-bottom: var(--space-lg);
}

.cart-empty h3 {
    margin-bottom: var(--space-md);
}

.cart-empty p {
    color: var(--text-light);
    margin-bottom: var(--space-lg);
}

/* Cart Summary */
.cart-summary {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-subtle);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-title {
    font-size: 24px;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--light-gray);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-md);
    font-size: 15px;
}

.summary-row span:first-child {
    color: var(--text-medium);
}

.summary-row span:last-child {
    font-weight: 600;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    padding-top: var(--space-md);
    margin-top: var(--space-md);
    border-top: 2px solid var(--light-gray);
    font-size: 20px;
    font-weight: 700;
}

.summary-total span:last-child {
    color: var(--primary-green);
}

.summary-btn {
    width: 100%;
    margin-top: var(--space-lg);
}

/* Checkout Form */
.checkout-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    box-shadow: var(--shadow-subtle);
    margin-top: var(--space-xl);
}

.checkout-title {
    font-size: 24px;
    margin-bottom: var(--space-lg);
}

.form-group {
    margin-bottom: var(--space-lg);
}

.form-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 16px;
    transition: var(--transition-fast);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.payment-options {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.payment-option {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.payment-option:hover {
    border-color: var(--primary-green);
}

.payment-option.active {
    border-color: var(--primary-green);
    background: rgba(27, 94, 32, 0.05);
}

.payment-option input {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-green);
}

.payment-option-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 20px;
    color: var(--primary-green);
}

.payment-option-info h4 {
    font-size: 16px;
    margin-bottom: 2px;
}

.payment-option-info p {
    font-size: 13px;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .cart-container {
        grid-template-columns: 1fr;
    }
    
    .cart-summary {
        position: static;
    }
}

@media (max-width: 480px) {
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        width: 100%;
        height: 200px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   ORDER TRACKING PAGE
   ======================================== */
.track-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--off-white);
}

.track-container {
    max-width: 700px;
    margin: 0 auto;
    padding: var(--space-xl) 0;
}

.track-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: var(--shadow-subtle);
}

.track-title {
    text-align: center;
    margin-bottom: var(--space-xl);
}

.track-form {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
}

.track-form input {
    flex: 1;
    padding: var(--space-md) var(--space-lg);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 16px;
}

.track-form input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.track-timeline {
    display: none;
}

.track-timeline.active {
    display: block;
}

.timeline-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: var(--space-2xl);
}

.timeline-steps::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 40px;
    right: 40px;
    height: 3px;
    background: var(--light-gray);
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.timeline-step.completed .step-icon {
    background: var(--primary-green);
    color: var(--white);
}

.timeline-step.completed::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: var(--primary-green);
}

.timeline-step:first-child::before {
    display: none;
}

.step-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: var(--space-sm);
}

.step-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    text-align: center;
}

.step-date {
    font-size: 12px;
    color: var(--text-light);
    text-align: center;
}

.track-order-details {
    padding-top: var(--space-xl);
    border-top: 1px solid var(--light-gray);
}

.order-detail-row {
    display: flex;
    justify-content: space-between;
    padding: var(--space-sm) 0;
}

.order-detail-row span:first-child {
    color: var(--text-light);
}

.order-detail-row span:last-child {
    font-weight: 500;
}

/* ========================================
   ADMIN DASHBOARD
   ======================================== */
.admin-page {
    padding-top: 100px;
    min-height: 100vh;
    background: var(--off-white);
}

.admin-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: var(--space-xl);
    padding: var(--space-xl) 0;
}

/* Admin Sidebar */
.admin-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-subtle);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.admin-sidebar-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    padding-bottom: var(--space-md);
    border-bottom: 1px solid var(--light-gray);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.admin-sidebar-title i {
    color: var(--primary-green);
}

.admin-menu {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.admin-menu-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md);
    border-radius: var(--radius-md);
    color: var(--text-medium);
    font-weight: 500;
    transition: var(--transition-fast);
    cursor: pointer;
}

.admin-menu-item:hover,
.admin-menu-item.active {
    background: rgba(27, 94, 32, 0.1);
    color: var(--primary-green);
}

.admin-menu-item i {
    width: 20px;
}

/* Admin Content */
.admin-content {
    width: 100%;
}

.admin-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-xl);
}

.admin-header h2 {
    font-size: 28px;
}

/* Stats Cards */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}

.stat-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-subtle);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(27, 94, 32, 0.1);
    border-radius: var(--radius-md);
    color: var(--primary-green);
    font-size: 20px;
    margin-bottom: var(--space-md);
}

.stat-value {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: var(--space-xs);
}

.stat-label {
    font-size: 14px;
    color: var(--text-light);
}

.stat-change {
    display: inline-flex;
    align-items: center;
    gap: var(--space-xs);
    font-size: 13px;
    margin-top: var(--space-sm);
}

.stat-change.positive {
    color: var(--success);
}

.stat-change.negative {
    color: var(--error);
}

/* Orders Table */
.orders-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-subtle);
    margin-bottom: var(--space-xl);
}

.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-lg);
}

.orders-table {
    width: 100%;
    border-collapse: collapse;
}

.orders-table th,
.orders-table td {
    padding: var(--space-md);
    text-align: left;
    border-bottom: 1px solid var(--light-gray);
}

.orders-table th {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.orders-table td {
    font-size: 14px;
}

.order-id {
    font-weight: 600;
    color: var(--primary-green);
}

.order-status {
    display: inline-flex;
    padding: var(--space-xs) var(--space-sm);
    border-radius: var(--radius-sm);
    font-size: 12px;
    font-weight: 600;
}

.order-status.pending {
    background: rgba(245, 158, 11, 0.1);
    color: var(--warning);
}

.order-status.processing {
    background: rgba(27, 94, 32, 0.1);
    color: var(--primary-green);
}

.order-status.shipped {
    background: rgba(59, 130, 246, 0.1);
    color: #3B82F6;
}

.order-status.delivered {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.order-actions {
    display: flex;
    gap: var(--space-sm);
}

.order-action-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    color: var(--text-light);
    transition: var(--transition-fast);
}

.order-action-btn:hover {
    background: var(--light-gray);
    color: var(--primary-green);
}

/* Add Product Form */
.add-product-section {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: var(--shadow-subtle);
}

.add-product-form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.form-group-full {
    grid-column: 1 / -1;
}

.form-textarea {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 16px;
    min-height: 120px;
    resize: vertical;
}

.form-textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(27, 94, 32, 0.1);
}

.toggle-group {
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.toggle {
    width: 48px;
    height: 26px;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    position: relative;
    cursor: pointer;
    transition: var(--transition-fast);
}

.toggle.active {
    background: var(--primary-green);
}

.toggle::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 20px;
    height: 20px;
    background: var(--white);
    border-radius: var(--radius-full);
    transition: var(--transition-fast);
}

.toggle.active::after {
    left: 25px;
}

.toggle-label {
    font-size: 14px;
    color: var(--text-medium);
}

@media (max-width: 1024px) {
    .admin-container {
        grid-template-columns: 1fr;
    }
    
    .admin-sidebar {
        position: static;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .add-product-form {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .orders-table {
        display: block;
        overflow-x: auto;
    }
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
    background: var(--text-dark);
    color: var(--white);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--space-md);
}

.footer-logo .logo-icon {
    background: var(--accent-gold);
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
}

.social-links {
    display: flex;
    gap: var(--space-md);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-full);
    color: var(--white);
    transition: var(--transition-fast);
}

.social-link:hover {
    background: var(--accent-gold);
    transform: translateY(-3px);
}

.footer-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: var(--space-lg);
    color: var(--white);
}

.footer-links li {
    margin-bottom: var(--space-sm);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--accent-gold);
    padding-left: var(--space-sm);
}

.newsletter-text {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--space-md);
}

.newsletter-form {
    display: flex;
    gap: var(--space-sm);
}

.newsletter-form input {
    flex: 1;
    padding: var(--space-sm) var(--space-md);
    border: none;
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.newsletter-form button {
    padding: var(--space-sm) var(--space-md);
    background: var(--accent-gold);
    color: var(--white);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.newsletter-form button:hover {
    background: #B8911F;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.payment-methods {
    display: flex;
    gap: var(--space-md);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.payment-methods i {
    font-size: 24px;
}

@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-md);
        text-align: center;
    }
}

/* ========================================
   WHATSAPP FLOAT
   ======================================== */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 28px;
    box-shadow: var(--shadow-elevated);
    z-index: 999;
    transition: var(--transition-normal);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    background: #128C7E;
}

/* ========================================
   TOAST NOTIFICATIONS
   ======================================== */
.toast-container {
    position: fixed;
    top: 100px;
    right: 24px;
    z-index: 3000;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.toast {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-elevated);
    animation: slideInRight 0.3s ease-out;
    min-width: 300px;
}

.toast.success {
    border-left: 4px solid var(--success);
}

.toast.error {
    border-left: 4px solid var(--error);
}

.toast.info {
    border-left: 4px solid var(--primary-green);
}

.toast-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-full);
    font-size: 12px;
}

.toast.success .toast-icon {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
}

.toast.error .toast-icon {
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
}

.toast.info .toast-icon {
    background: rgba(27, 94, 32, 0.1);
    color: var(--primary-green);
}

.toast-message {
    flex: 1;
    font-size: 14px;
    color: var(--text-dark);
}

.toast-close {
    color: var(--text-light);
    font-size: 14px;
    transition: var(--transition-fast);
}

.toast-close:hover {
    color: var(--text-dark);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ========================================
   MODALS
   ======================================== */
.search-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 100px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.search-modal.active {
    opacity: 1;
    visibility: visible;
}

.search-modal-content {
    width: 100%;
    max-width: 600px;
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transform: translateY(-20px);
    transition: var(--transition-normal);
}

.search-modal.active .search-modal-content {
    transform: translateY(0);
}

.search-close {
    position: absolute;
    top: var(--space-lg);
    right: var(--space-lg);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-full);
    color: var(--text-medium);
    font-size: 18px;
    z-index: 1;
}

.search-input-wrapper {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-lg);
    border-bottom: 1px solid var(--light-gray);
}

.search-input-wrapper i {
    font-size: 20px;
    color: var(--text-light);
}

.search-input-wrapper input {
    flex: 1;
    border: none;
    font-size: 18px;
    outline: none;
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.search-result-item {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding: var(--space-md) var(--space-lg);
    cursor: pointer;
    transition: var(--transition-fast);
}

.search-result-item:hover {
    background: var(--light-gray);
}

.search-result-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--light-gray);
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.search-result-info h4 {
    font-size: 15px;
    margin-bottom: 4px;
}

.search-result-info p {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 600;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    max-width: 100%;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    transition: var(--transition-normal);
}

.cart-sidebar.active {
    right: 0;
}

.cart-sidebar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-lg);
    border-bottom: 1px solid var(--light-gray);
}

.cart-sidebar-header h3 {
    font-size: 20px;
}

.cart-close {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-medium);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: var(--space-md);
}

.cart-sidebar-item {
    display: flex;
    gap: var(--space-md);
    padding: var(--space-md);
    border-bottom: 1px solid var(--light-gray);
}

.cart-sidebar-item-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--light-gray);
    flex-shrink: 0;
}

.cart-sidebar-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-sidebar-item-info {
    flex: 1;
}

.cart-sidebar-item-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
}

.cart-sidebar-item-price {
    font-size: 14px;
    color: var(--primary-green);
    font-weight: 600;
}

.cart-sidebar-item-qty {
    font-size: 12px;
    color: var(--text-light);
}

.cart-sidebar-footer {
    padding: var(--space-lg);
    border-top: 1px solid var(--light-gray);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--space-md);
    font-size: 18px;
    font-weight: 600;
}

.total-amount {
    color: var(--primary-green);
}

.checkout-btn {
    width: 100%;
    padding: var(--space-md);
    background: var(--primary-green);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.checkout-btn:hover {
    background: var(--secondary-green);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.cart-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* M-Pesa Modal */
.mpesa-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mpesa-modal.active {
    opacity: 1;
    visibility: visible;
}

.mpesa-modal-content {
    width: 100%;
    max-width: 420px;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.mpesa-modal.active .mpesa-modal-content {
    transform: scale(1);
}

.mpesa-close {
    position: absolute;
    top: var(--space-md);
    right: var(--space-md);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
}

.mpesa-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-green);
    margin-bottom: var(--space-xl);
}

.mpesa-logo i {
    font-size: 28px;
}

.mpesa-steps {
    display: flex;
    justify-content: center;
    gap: var(--space-2xl);
    margin-bottom: var(--space-xl);
}

.mpesa-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.mpesa-step .step-number {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-gray);
    border-radius: var(--radius-full);
    font-weight: 600;
    color: var(--text-light);
}

.mpesa-step.active .step-number {
    background: var(--primary-green);
    color: var(--white);
}

.mpesa-step.completed .step-number {
    background: var(--success);
    color: var(--white);
}

.mpesa-step .step-text {
    font-size: 12px;
    color: var(--text-light);
}

.mpesa-step.active .step-text {
    color: var(--text-dark);
    font-weight: 500;
}

.mpesa-instruction {
    text-align: center;
    color: var(--text-medium);
    margin-bottom: var(--space-lg);
}

.mpesa-form input {
    width: 100%;
    padding: var(--space-md);
    border: 1px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 16px;
    text-align: center;
    margin-bottom: var(--space-lg);
}

.mpesa-form input:focus {
    outline: none;
    border-color: var(--primary-green);
}

.mpesa-submit {
    width: 100%;
    padding: var(--space-md);
    background: var(--primary-green);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
}

.mpesa-submit:hover {
    background: var(--secondary-green);
}

.mpesa-processing {
    text-align: center;
    padding: var(--space-xl) 0;
}

.mpesa-spinner {
    font-size: 48px;
    color: var(--primary-green);
    margin-bottom: var(--space-md);
}

.mpesa-success {
    text-align: center;
    padding: var(--space-lg) 0;
}

.success-icon {
    font-size: 64px;
    color: var(--success);
    margin-bottom: var(--space-md);
}

.mpesa-success h4 {
    color: var(--success);
    margin-bottom: var(--space-sm);
}

.mpesa-amount {
    font-size: 18px;
    font-weight: 600;
    color: var(--primary-green);
    margin-top: var(--space-md);
}

.mpesa-error {
    text-align: center;
    padding: var(--space-lg) 0;
}

.error-icon {
    font-size: 64px;
    color: var(--error);
    margin-bottom: var(--space-md);
}

.mpesa-error h4 {
    color: var(--error);
    margin-bottom: var(--space-sm);
}

.mpesa-retry {
    padding: var(--space-sm) var(--space-lg);
    background: var(--primary-green);
    color: var(--white);
    font-weight: 600;
    border-radius: var(--radius-md);
    margin-top: var(--space-md);
}

/* ========================================
   ANIMATIONS - Premium Effects
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

/* Page Transitions */
.page-enter {
    animation: fadeInUp 0.4s ease-out;
}

/* Loading States */
.loading {
    position: relative;
    pointer-events: none;
}

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid var(--light-gray);
    border-top-color: var(--primary-green);
    border-radius: var(--radius-full);
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, var(--light-gray) 25%, var(--off-white) 50%, var(--light-gray) 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* ========================================
   UTILITY CLASSES
   ======================================== */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-sm); }
.mt-2 { margin-top: var(--space-md); }
.mt-3 { margin-top: var(--space-lg); }
.mt-4 { margin-top: var(--space-xl); }

.mb-1 { margin-bottom: var(--space-sm); }
.mb-2 { margin-bottom: var(--space-md); }
.mb-3 { margin-bottom: var(--space-lg); }
.mb-4 { margin-bottom: var(--space-xl); }

.d-none { display: none !important; }
.d-block { display: block !important; }
.d-flex { display: flex !important; }

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}