/* ==========================================
   Samsthiti Kenya - Premium Infused Honey
   Modern E-commerce Website Styles
   ========================================== */

/* ==========================================
   0. LOADING SCREEN
   ========================================== */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FFF8E7 0%, #ffffff 50%, #FFF8E7 100%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    text-align: center;
    animation: fadeInScale 0.6s ease-out;
}

.loading-logo {
    width: 200px;
    height: auto;
    margin: 0 auto 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loading-spinner {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid transparent;
    border-top-color: #F5A623;
    border-radius: 50%;
    animation: spin 1.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.spinner-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    top: 15%;
    left: 15%;
    border-top-color: #6B3FA0;
    animation-delay: -0.5s;
    animation-duration: 2s;
}

.spinner-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    top: 30%;
    left: 30%;
    border-top-color: #2D5016;
    animation-delay: -1s;
    animation-duration: 2.5s;
}

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

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.9;
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.loading-text {
    font-family: var(--font-primary);
    font-size: 1rem;
    color: #2D5016;
    font-weight: 500;
    letter-spacing: 1px;
    animation: fadeInOut 2s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* ==========================================
   1. CSS VARIABLES & RESET
   ========================================== */
:root {
    /* Color Palette */
    --primary-color: #F5A623;      /* Honey Gold */
    --secondary-color: #2D5016;    /* Natural Green */
    --accent-color: #6B3FA0;       /* Deep Purple */
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --background-cream: #FFF8E7;
    --white: #FFFFFF;
    --black: #000000;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-heading: 'Playfair Display', serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    max-width: 100vw;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    transition: var(--transition);
}

/* ==========================================
   2. UTILITY CLASSES
   ========================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-sm);
}

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

.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    position: relative;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #2D5016 0%, #3d6b23 50%, #F5A623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
    letter-spacing: -0.5px;
    filter: drop-shadow(0 2px 4px rgba(245, 166, 35, 0.15));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #F5A623, #FFD966, #F5A623, transparent);
    border-radius: 3px;
    box-shadow: 0 2px 8px rgba(245, 166, 35, 0.4);
}

.section-header p {
    font-size: 1.15rem;
    color: var(--text-light);
    letter-spacing: 0.3px;
    line-height: 1.6;
}

/* ==========================================
   3. BUTTONS
   ========================================== */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    font-size: 0.95rem;
}

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

.btn-primary {
    background: linear-gradient(135deg, #F5A623 0%, #FFD966 50%, #F5A623 100%);
    background-size: 200% auto;
    color: rgba(0, 0, 0, 0.85);
    box-shadow: 
        0 8px 30px rgba(245, 166, 35, 0.5),
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 217, 102, 0.6);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.5);
    font-weight: 800;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.6s ease;
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 12px 40px rgba(245, 166, 35, 0.6),
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.8),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 217, 102, 0.4);
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-primary:active {
    transform: translateY(-2px) scale(1.01);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 700;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn-secondary::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3), transparent);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.btn-secondary:hover::before {
    left: 100%;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.7);
    color: rgba(255, 255, 255, 1);
    transform: translateY(-4px) scale(1.03);
    box-shadow: 
        0 12px 40px rgba(255, 255, 255, 0.3),
        0 6px 20px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5),
        inset 0 -1px 0 rgba(0, 0, 0, 0.3),
        0 0 30px rgba(255, 255, 255, 0.2);
}

.btn-secondary:active {
    transform: translateY(-2px) scale(1.01);
}

.btn-light {
    background-color: var(--white);
    color: var(--secondary-color);
}

.btn-light:hover {
    background-color: var(--background-cream);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* ==========================================
   4. NAVIGATION - PREMIUM DESIGN
   ========================================== */
.navbar {
    background: linear-gradient(
        135deg,
        rgba(45, 80, 22, 0.95) 0%,
        rgba(45, 80, 22, 0.98) 50%,
        rgba(107, 63, 160, 0.95) 100%
    );
    backdrop-filter: blur(30px) saturate(200%);
    -webkit-backdrop-filter: blur(30px) saturate(200%);
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 2px 10px rgba(245, 166, 35, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.15),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    border-bottom: 2px solid rgba(245, 166, 35, 0.3);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(245, 166, 35, 0.08) 0%,
        transparent 30%,
        transparent 70%,
        rgba(107, 63, 160, 0.08) 100%
    );
    pointer-events: none;
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        rgba(245, 166, 35, 0.3) 10%,
        rgba(245, 166, 35, 0.8) 30%,
        rgba(255, 217, 102, 1) 50%,
        rgba(245, 166, 35, 0.8) 70%,
        rgba(245, 166, 35, 0.3) 90%,
        transparent 100%
    );
    box-shadow: 0 0 20px rgba(245, 166, 35, 0.5);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.navbar:hover {
    background: linear-gradient(
        135deg,
        rgba(45, 80, 22, 1) 0%,
        rgba(45, 80, 22, 1) 50%,
        rgba(107, 63, 160, 1) 100%
    );
    box-shadow: 
        0 15px 50px rgba(0, 0, 0, 0.4),
        0 5px 20px rgba(245, 166, 35, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    border-bottom-color: rgba(245, 166, 35, 0.5);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    position: relative;
}

.logo {
    position: relative;
    z-index: 10;
}

.logo img {
    height: 85px;
    width: auto;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 4px 12px rgba(245, 166, 35, 0.3));
}

.logo:hover img {
    transform: scale(1.08) translateY(-3px);
    filter: drop-shadow(0 8px 20px rgba(245, 166, 35, 0.5));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    display: inline-block;
    color: rgba(255, 255, 255, 0.92);
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    position: relative;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu a::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(245, 166, 35, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.nav-menu a:hover::before {
    left: 100%;
}

.nav-menu a:hover {
    color: #FFD966;
    background: rgba(245, 166, 35, 0.15);
    transform: translateY(-3px);
    text-shadow: 
        0 0 20px rgba(245, 166, 35, 0.8),
        0 2px 15px rgba(245, 166, 35, 0.6);
    border-color: rgba(245, 166, 35, 0.4);
    box-shadow: 
        0 8px 20px rgba(245, 166, 35, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

.nav-menu a.active {
    background: linear-gradient(
        135deg,
        rgba(245, 166, 35, 0.25) 0%,
        rgba(245, 166, 35, 0.15) 100%
    );
    color: #FFD966;
    border-color: rgba(245, 166, 35, 0.5);
    box-shadow: 
        0 4px 15px rgba(245, 166, 35, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 0 20px rgba(245, 166, 35, 0.1);
    text-shadow: 
        0 0 15px rgba(245, 166, 35, 0.8),
        0 2px 10px rgba(245, 166, 35, 0.6);
}

.nav-menu a.active::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 3px;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 217, 102, 0.8),
        #FFD966,
        rgba(255, 217, 102, 0.8),
        transparent
    );
    border-radius: 2px;
    box-shadow: 
        0 0 15px rgba(255, 217, 102, 1),
        0 2px 8px rgba(245, 166, 35, 0.6);
}

.cart-link {
    position: relative;
    padding: 0.75rem 1.5rem !important;
    color: rgba(255, 255, 255, 0.92) !important;
    background: rgba(107, 63, 160, 0.15) !important;
    border: 1px solid rgba(107, 63, 160, 0.3) !important;
}

.cart-link:hover {
    background: rgba(107, 63, 160, 0.25) !important;
    color: #FFD966 !important;
    border-color: rgba(245, 166, 35, 0.4) !important;
    box-shadow: 
        0 8px 20px rgba(107, 63, 160, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2) !important;
}

.cart-link i {
    font-size: 1.1rem;
}

.cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    background: linear-gradient(135deg, #F5A623 0%, #FFD966 100%);
    color: #2D5016;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.2rem 0.5rem;
    border-radius: 50%;
    min-width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow: 
        0 3px 12px rgba(245, 166, 35, 0.6),
        0 0 20px rgba(245, 166, 35, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.9);
    animation: pulse-cart 2s ease-in-out infinite;
}

@keyframes pulse-cart {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.mobile-menu-toggle {
    display: none;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.2), rgba(245, 166, 35, 0.1));
    padding: 0.75rem 1rem;
    border-radius: 12px;
    font-size: 1.5rem;
    color: #FFD966;
    border: 2px solid rgba(245, 166, 35, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-shadow: 0 2px 10px rgba(245, 166, 35, 0.6);
    box-shadow: 
        0 4px 15px rgba(245, 166, 35, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mobile-menu-toggle::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.mobile-menu-toggle:hover::before {
    width: 200px;
    height: 200px;
}

.mobile-menu-toggle:hover {
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.3), rgba(245, 166, 35, 0.2));
    transform: scale(1.08);
    border-color: rgba(245, 166, 35, 0.6);
    box-shadow: 
        0 8px 25px rgba(245, 166, 35, 0.4),
        0 0 30px rgba(245, 166, 35, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.mobile-menu-toggle:active {
    transform: scale(0.95);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 98;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

body.menu-open {
    overflow: hidden;
}

/* ==========================================
   5. HERO SECTION
   ========================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0;
    padding: 140px 0 60px;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    min-width: 100%;
    min-height: 100%;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.2) 50%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 1;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
    pointer-events: none;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 25%, rgba(255, 215, 100, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 85% 75%, rgba(180, 130, 255, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(245, 166, 35, 0.05) 0%, transparent 60%);
    animation: shimmer 15s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    25% {
        opacity: 0.8;
        transform: translateX(10px) translateY(-10px);
    }
    50% {
        opacity: 1;
        transform: translateX(0) translateY(0);
    }
    75% {
        opacity: 0.9;
        transform: translateX(-10px) translateY(10px);
    }
}

.honeycomb-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle 80px at 10% 20%, rgba(245, 166, 35, 0.12) 0%, transparent 100%),
        radial-gradient(circle 100px at 85% 15%, rgba(255, 248, 231, 0.08) 0%, transparent 100%),
        radial-gradient(circle 120px at 25% 75%, rgba(107, 63, 160, 0.1) 0%, transparent 100%),
        radial-gradient(circle 90px at 75% 65%, rgba(245, 166, 35, 0.1) 0%, transparent 100%),
        radial-gradient(circle 110px at 50% 45%, rgba(255, 215, 100, 0.08) 0%, transparent 100%),
        radial-gradient(circle 70px at 90% 80%, rgba(180, 130, 255, 0.08) 0%, transparent 100%);
    background-size: 100% 100%;
    z-index: 2;
    animation: float-orbs 12s ease-in-out infinite;
    opacity: 0.7;
}

@keyframes float-orbs {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 0.7;
    }
    33% {
        transform: scale(1.1) rotate(2deg);
        opacity: 0.85;
    }
    66% {
        transform: scale(0.95) rotate(-2deg);
        opacity: 0.75;
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--white);
    max-width: 700px;
    width: 100%;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    padding: 0.65rem 1.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 2px 8px rgba(255, 255, 255, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.6),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
    animation: fadeInBadge 1.2s ease-out 0.3s both, float-badge 3s ease-in-out infinite 1.5s;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(255, 217, 102, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.3) 50%,
        transparent 70%
    );
    animation: badge-shimmer 4s ease-in-out infinite;
}

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

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Sparkle Effect */
.sparkle-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: none;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: white;
    border-radius: 50%;
    box-shadow: 
        0 0 4px 2px rgba(255, 255, 255, 0.8),
        0 0 8px 4px rgba(255, 217, 102, 0.6),
        0 0 12px 6px rgba(245, 166, 35, 0.4);
    animation: sparkle-float 8s infinite ease-in-out;
}

.sparkle:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
    animation-duration: 7s;
}

.sparkle:nth-child(2) {
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 9s;
}

.sparkle:nth-child(3) {
    top: 40%;
    left: 70%;
    animation-delay: 4s;
    animation-duration: 6s;
}

.sparkle:nth-child(4) {
    top: 75%;
    left: 25%;
    animation-delay: 1s;
    animation-duration: 8s;
}

.sparkle:nth-child(5) {
    top: 30%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 10s;
}

@keyframes sparkle-float {
    0%, 100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    10% {
        transform: translateY(-10px) scale(1);
        opacity: 1;
    }
    50% {
        transform: translateY(-30px) scale(1.5);
        opacity: 0.8;
    }
    90% {
        transform: translateY(-60px) scale(1);
        opacity: 0.3;
    }
}

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

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    margin-bottom: 1.25rem;
    line-height: 1.15;
    font-weight: 700;
    background: linear-gradient(
        135deg,
        #FFFFFF 0%,
        #FFD966 30%,
        #FFFFFF 60%,
        #F5A623 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8))
            drop-shadow(0 8px 40px rgba(245, 166, 35, 0.4))
            drop-shadow(0 0 60px rgba(255, 217, 102, 0.3));
    letter-spacing: -1.5px;
    animation: gradient-shift 8s ease-in-out infinite, titleEntrance 1s ease-out 0.5s both;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% center;
    }
    50% {
        background-position: 100% center;
    }
}

@keyframes titleEntrance {
    from {
        opacity: 0;
        transform: translateY(30px);
        filter: blur(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.hero-subtitle {
    font-size: 1.6rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    font-weight: 300;
    font-family: var(--font-heading);
    font-style: italic;
    text-shadow: 
        0 2px 20px rgba(0, 0, 0, 0.9),
        0 4px 40px rgba(0, 0, 0, 0.7),
        0 0 30px rgba(255, 217, 102, 0.5),
        0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: 4px;
    text-transform: uppercase;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.75rem;
    animation: subtitleEntrance 1s ease-out 0.7s both;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero-subtitle::before,
.hero-subtitle::after {
    content: '';
    width: 50px;
    height: 2px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 217, 102, 0.8),
        rgba(255, 255, 255, 0.6)
    );
    box-shadow: 0 0 10px rgba(255, 217, 102, 0.6);
    flex-shrink: 0;
}

.hero-subtitle::before {
    margin-right: 1rem;
}

.hero-subtitle::after {
    margin-left: 1rem;
    background: linear-gradient(
        to left,
        transparent,
        rgba(255, 217, 102, 0.8),
        rgba(255, 255, 255, 0.6)
    );
}

@keyframes subtitleEntrance {
    from {
        opacity: 0;
        transform: translateX(-30px);
        letter-spacing: 8px;
    }
    to {
        opacity: 1;
        transform: translateX(0);
        letter-spacing: 4px;
    }
}

.hero-description {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    line-height: 1.75;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.92);
    text-shadow: 
        0 2px 20px rgba(0, 0, 0, 0.9),
        0 4px 40px rgba(0, 0, 0, 0.7),
        0 1px 0 rgba(255, 255, 255, 0.1);
    font-weight: 400;
    letter-spacing: 0.5px;
    animation: descriptionEntrance 1s ease-out 0.9s both;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

.hero-buttons {
    display: flex;
    gap: 1.25rem;
    flex-wrap: wrap;
    animation: buttonsEntrance 1s ease-out 1.1s both;
    margin-bottom: var(--spacing-md);
}

.mpesa-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.15) 100%);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.mpesa-badge:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.3) 0%, rgba(255, 255, 255, 0.2) 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.mpesa-badge i {
    font-size: 1.5rem;
}

/* ==========================================
   6. TRUST BADGES
   ========================================== */
.trust-badges {
    padding: var(--spacing-lg) 0;
    background: 
        linear-gradient(135deg, #FFF8E7 0%, #FFF5E0 50%, #FFF8E7 100%),
        radial-gradient(circle at 20% 50%, rgba(245, 166, 35, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(107, 63, 160, 0.03) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.trust-badges::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.3), transparent);
}

.trust-badges::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(107, 63, 160, 0.3), transparent);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.trust-item {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.7) 100%);
    border-radius: 16px;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 2px solid rgba(245, 166, 35, 0.25);
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.1), transparent);
    transition: left 0.6s ease;
}

.trust-item:hover::before {
    left: 100%;
}

.trust-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 
        0 15px 40px rgba(245, 166, 35, 0.2),
        0 4px 15px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 0 2px rgba(245, 166, 35, 0.4);
    border-color: rgba(245, 166, 35, 0.5);
}

.trust-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, #F5A623 0%, #e69500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 2px 4px rgba(245, 166, 35, 0.3));
    transition: all 0.3s ease;
}

.trust-item:hover i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 8px rgba(245, 166, 35, 0.5));
}

.trust-item h3 {
    font-size: 1.25rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
    font-weight: 700;
    letter-spacing: -0.3px;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.trust-item p {
    color: var(--text-light);
}

/* ==========================================
   7. PRODUCTS SECTION
   ========================================== */
.featured-products,
.shop-section {
    padding: var(--spacing-xl) 0;
    background: 
        linear-gradient(180deg, #ffffff 0%, #FFF8E7 50%, #ffffff 100%);
    position: relative;
}

.featured-products::before,
.shop-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.3), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.product-card {
    background: linear-gradient(135deg, #ffffff 0%, #fffcf7 100%);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.08),
        0 2px 8px rgba(0,0,0,0.04),
        0 0 0 1px rgba(245, 166, 35, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.05) 0%, rgba(107, 63, 160, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}

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

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 50px rgba(245, 166, 35, 0.25),
        0 8px 20px rgba(0,0,0,0.12),
        0 0 0 2px rgba(245, 166, 35, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 40px rgba(245, 166, 35, 0.15);
}

.product-image {
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #FFF8E7 0%, #FFF5E0 100%);
    z-index: 2;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

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

.product-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 0;
}

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

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

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, #6B3FA0 0%, #8B5FC0 100%);
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 25px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
    box-shadow: 
        0 6px 16px rgba(107, 63, 160, 0.4),
        0 2px 6px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
}

.product-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
    transition: all 0.3s ease;
    letter-spacing: -0.3px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.product-card:hover .product-name {
    color: var(--primary-color);
}

.product-description {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: var(--spacing-sm);
    line-height: 1.5;
}

.product-price {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #F5A623 0%, #e69500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    filter: drop-shadow(0 1px 2px rgba(245, 166, 35, 0.2));
}

.product-actions {
    display: flex;
    gap: 0.5rem;
}

.product-actions .btn {
    flex: 1;
    padding: 0.75rem 1rem;
}

.product-actions .btn-secondary {
    background: linear-gradient(135deg, rgba(45, 80, 22, 0.05) 0%, rgba(107, 63, 160, 0.05) 100%);
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    backdrop-filter: blur(10px);
}

.product-actions .btn-secondary:hover {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #3d6b23 100%);
    color: var(--white);
    border-color: var(--secondary-color);
}

/* ==========================================
   8. WHY CHOOSE US
   ========================================== */
.why-choose-us {
    padding: var(--spacing-xl) 0;
    background: 
        linear-gradient(135deg, #FFF8E7 0%, #FFF5E0 25%, #FFF8E7 50%, #FFF5E0 75%, #FFF8E7 100%),
        radial-gradient(circle at 10% 20%, rgba(245, 166, 35, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(107, 63, 160, 0.05) 0%, transparent 50%);
    position: relative;
    overflow: hidden;
}

.why-choose-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.3), transparent);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-md);
}

.feature-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.95) 100%);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 
        0 8px 25px rgba(0,0,0,0.08),
        0 2px 8px rgba(0,0,0,0.04),
        0 0 0 1px rgba(245, 166, 35, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.08), transparent);
    transition: left 0.6s ease;
}

.feature-card:hover::before {
    left: 100%;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 20px 45px rgba(245, 166, 35, 0.2),
        0 8px 20px rgba(0,0,0,0.1),
        0 0 0 2px rgba(245, 166, 35, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 1),
        0 0 30px rgba(245, 166, 35, 0.12);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.feature-icon i {
    background: linear-gradient(135deg, #F5A623 0%, #e69500 50%, #6B3FA0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(245, 166, 35, 0.3));
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(245, 166, 35, 0.5));
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    transition: color 0.3s ease;
}

.feature-card:hover h3 {
    color: var(--primary-color);
}

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

/* ==========================================
   9. PRODUCT SHOWCASE SECTION
   ========================================== */
.product-showcase-section {
    padding: var(--spacing-xl) 0;
    background: 
        linear-gradient(135deg, #ffffff 0%, #FFF8E7 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.product-showcase-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(245, 166, 35, 0.5) 25%,
        rgba(107, 63, 160, 0.5) 75%,
        transparent 100%
    );
}

.product-showcase-section::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.showcase-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.showcase-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2D5016 0%, #3d6b23 50%, #F5A623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-sm);
    position: relative;
    display: inline-block;
}

.showcase-content h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #F5A623 0%, transparent 100%);
    border-radius: 2px;
}

.showcase-subtitle {
    font-size: 1.2rem;
    background: linear-gradient(135deg, #F5A623 0%, #e69500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    margin-bottom: var(--spacing-md);
    font-style: italic;
}

.showcase-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.showcase-benefits {
    list-style: none;
    margin-bottom: var(--spacing-md);
}

.showcase-benefits li {
    padding: var(--spacing-xs) 0;
    color: var(--text-dark);
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.showcase-benefits i {
    background: linear-gradient(135deg, #28a745 0%, #20c45f 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1.2rem;
    filter: drop-shadow(0 1px 2px rgba(40, 167, 69, 0.3));
}

.showcase-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(245, 166, 35, 0.15),
        0 0 0 1px rgba(245, 166, 35, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.showcase-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(107, 63, 160, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.6s ease;
    z-index: 1;
}

.showcase-image:hover::before {
    opacity: 1;
}

.showcase-image:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(245, 166, 35, 0.25),
        0 0 0 1px rgba(245, 166, 35, 0.3);
}

.showcase-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ==========================================
   10. CTA SECTION
   ========================================== */
.cta-section {
    padding: var(--spacing-xl) 0;
    background: 
        linear-gradient(135deg, 
            #2D5016 0%, 
            #3d6b23 25%,
            #F5A623 50%,
            #6B3FA0 75%,
            #4a2860 100%
        );
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(245, 166, 35, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(107, 63, 160, 0.2) 0%, transparent 50%),
        repeating-linear-gradient(
            45deg,
            transparent,
            transparent 60px,
            rgba(255, 255, 255, 0.02) 60px,
            rgba(255, 255, 255, 0.02) 120px
        );
    animation: cta-shimmer 20s ease-in-out infinite;
}

@keyframes cta-shimmer {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

.cta-section::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
    animation: cta-rotate 30s linear infinite;
}

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

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(245, 166, 35, 0.3);
    letter-spacing: -0.5px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* ==========================================
   10. FOOTER
   ========================================== */
.footer {
    background: 
        linear-gradient(135deg, #1a2f0f 0%, #2D5016 50%, #1a2f0f 100%),
        radial-gradient(circle at 20% 80%, rgba(245, 166, 35, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 63, 160, 0.1) 0%, transparent 50%);
    color: var(--white);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(245, 166, 35, 0.5) 25%,
        rgba(245, 166, 35, 0.8) 50%,
        rgba(245, 166, 35, 0.5) 75%,
        transparent 100%
    );
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-md);
}

.footer-logo {
    max-width: 150px;
    margin-bottom: var(--spacing-sm);
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, #FFD966 0%, #F5A623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #F5A623 0%, transparent 100%);
}

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

.footer-col ul li {
    margin-bottom: var(--spacing-xs);
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
    transition: all 0.3s ease;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: var(--spacing-sm);
}

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    font-size: 1.2rem;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(245, 166, 35, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    background: linear-gradient(135deg, #F5A623 0%, #e69500 100%);
    border-color: #F5A623;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 20px rgba(245, 166, 35, 0.4);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: var(--spacing-md);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.payment-methods {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================
   11. PAGE HEADER
   ========================================== */
.page-header {
    background: 
        linear-gradient(135deg, 
            #2D5016 0%, 
            #3d6b23 25%,
            #F5A623 50%,
            #6B3FA0 75%,
            #4a2860 100%
        );
    color: var(--white);
    padding: calc(120px + var(--spacing-lg)) 0 var(--spacing-xl) 0;
    text-align: center;
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid rgba(245, 166, 35, 0.3);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(245, 166, 35, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(107, 63, 160, 0.2) 0%, transparent 50%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: page-header-float 15s ease-in-out infinite;
}

@keyframes page-header-float {
    0%, 100% {
        opacity: 0.6;
    }
    50% {
        opacity: 1;
    }
}

.page-header h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    margin-bottom: var(--spacing-sm);
    position: relative;
    z-index: 1;
    font-weight: 700;
    text-shadow: 
        0 3px 15px rgba(0, 0, 0, 0.5),
        0 0 40px rgba(245, 166, 35, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.2);
    letter-spacing: -0.5px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.breadcrumb {
    margin-bottom: var(--spacing-md);
    margin-top: 0;
    padding: var(--spacing-sm) 0;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.3px;
}

/* Breadcrumb on page-header (light background) */
.page-header .breadcrumb {
    color: rgba(255, 255, 255, 0.85);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.page-header .breadcrumb a {
    color: #FFD966;
    transition: all 0.3s ease;
    font-weight: 500;
}

.page-header .breadcrumb a:hover {
    color: #ffffff;
    text-shadow: 0 0 15px rgba(255, 217, 102, 0.8);
}

/* Breadcrumb on product-detail-section (white background) */
.product-detail-section .breadcrumb {
    color: #666;
    text-shadow: none;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.1) 0%, rgba(107, 63, 160, 0.1) 100%);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: 8px;
    display: inline-block;
    border-left: 4px solid #F5A623;
}

.product-detail-section .breadcrumb a {
    color: #2D5016;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
}

.product-detail-section .breadcrumb a:hover {
    color: #F5A623;
    text-shadow: none;
}

.product-detail-section .breadcrumb span {
    color: #6B3FA0;
    font-weight: 600;
}

/* ==========================================
   12. SHOP PAGE
   ========================================== */
.shop-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--spacing-md);
    flex-wrap: wrap;
    gap: var(--spacing-sm);
}

.shop-filter select {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
}

/* ==========================================
   13. PRODUCT DETAIL PAGE
   ========================================== */
.product-detail-section {
    padding: calc(120px + var(--spacing-xl)) 0 var(--spacing-xl) 0;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
}

.product-detail-image {
    background-color: var(--background-cream);
    border-radius: 15px;
    overflow: hidden;
    padding: var(--spacing-md);
}

.product-detail-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.product-detail-info h1 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.product-detail-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--spacing-md);
}

.product-detail-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

.product-features {
    background-color: var(--background-cream);
    padding: var(--spacing-md);
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
}

.product-features h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.product-features ul {
    list-style: none;
}

.product-features ul li {
    padding: 0.5rem 0;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.product-features ul li i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: var(--spacing-md);
}

.quantity-controls {
    display: flex;
    align-items: center;
    border: 2px solid var(--primary-color);
    border-radius: 5px;
}

.quantity-btn {
    background-color: transparent;
    color: var(--primary-color);
    padding: 0.5rem 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

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

.quantity-input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 1.1rem;
    font-weight: 600;
}

.related-products {
    margin-top: var(--spacing-xl);
}

.related-products h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    text-align: center;
}

/* ==========================================
   14. CART PAGE
   ========================================== */
.cart-section {
    padding: var(--spacing-xl) 0;
    min-height: 60vh;
}

.empty-cart {
    text-align: center;
    padding: var(--spacing-xl) 0;
}

.empty-cart i {
    font-size: 5rem;
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.empty-cart h2 {
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.cart-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.cart-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
}

.cart-items h2,
.cart-summary h2 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.cart-item {
    display: flex;
    gap: var(--spacing-md);
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    margin-bottom: var(--spacing-md);
}

.cart-item-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
    background-color: var(--background-cream);
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cart-item-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.cart-item-price {
    font-size: 1.1rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: var(--spacing-sm);
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.remove-btn {
    background-color: var(--danger);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 5px;
    font-size: 0.9rem;
}

.remove-btn:hover {
    background-color: #c82333;
}

.cart-summary {
    background-color: var(--background-cream);
    padding: var(--spacing-md);
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    font-size: 1.1rem;
}

.summary-divider {
    border-top: 2px solid var(--primary-color);
    margin: var(--spacing-sm) 0;
}

.summary-total {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.payment-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: var(--spacing-md);
    padding: var(--spacing-sm);
    background-color: var(--white);
    border-radius: 10px;
    color: var(--secondary-color);
}

/* ==========================================
   15. CHECKOUT PAGE
   ========================================== */
.checkout-section {
    padding: var(--spacing-xl) 0;
}

.checkout-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: var(--spacing-lg);
    max-width: 1200px;
    margin: 0 auto;
}

.checkout-form {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.checkout-form h2 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-sm);
}

.form-group {
    margin-bottom: var(--spacing-md);
}

.form-group label {
    display: block;
    margin-bottom: var(--spacing-xs);
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.95rem 1.15rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1rem;
    font-family: var(--font-primary);
    transition: all 0.3s ease;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 4px 16px rgba(245, 166, 35, 0.15),
        0 0 0 3px rgba(245, 166, 35, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
    transform: translateY(-1px);
}

.form-group small {
    display: block;
    margin-top: 0.25rem;
    color: var(--text-light);
    font-size: 0.85rem;
}

.payment-method {
    margin: var(--spacing-md) 0;
}

.payment-option {
    border: 2px solid var(--primary-color);
    border-radius: 10px;
    padding: var(--spacing-sm);
    cursor: pointer;
    transition: var(--transition);
}

.payment-option.selected {
    background-color: var(--background-cream);
}

.payment-option label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    font-weight: 600;
    color: var(--secondary-color);
}

.payment-option i {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.mpesa-info {
    margin-top: var(--spacing-sm);
    padding: var(--spacing-sm);
    background-color: #e8f5e9;
    border-radius: 5px;
    color: var(--secondary-color);
}

.mpesa-info i {
    margin-right: 0.5rem;
}

.checkout-summary {
    background-color: var(--background-cream);
    padding: var(--spacing-md);
    border-radius: 15px;
    height: fit-content;
    position: sticky;
    top: 100px;
}

.checkout-summary h2 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.summary-items {
    margin-bottom: var(--spacing-md);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-item-name {
    font-weight: 600;
}

.summary-item-qty {
    color: var(--text-light);
    font-size: 0.9rem;
}

.summary-calculations {
    margin-top: var(--spacing-md);
}

.trust-badges-checkout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
    margin-top: var(--spacing-md);
}

.trust-badges-checkout .trust-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: var(--spacing-sm);
    background-color: var(--white);
    border-radius: 5px;
}

.trust-badges-checkout .trust-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.trust-badges-checkout .trust-item span {
    font-size: 0.75rem;
    text-align: center;
}

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

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background-color: var(--white);
    border-radius: 20px;
    max-width: 500px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
    animation: modalSlideIn 0.3s ease;
}

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

.modal-header {
    padding: var(--spacing-md);
    border-bottom: 2px solid var(--background-cream);
}

.modal-header h2 {
    font-family: var(--font-heading);
    color: var(--secondary-color);
    text-align: center;
}

.modal-body {
    padding: var(--spacing-md);
}

.mpesa-animation {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px;
    margin-bottom: var(--spacing-md);
}

.mpesa-animation i {
    font-size: 4rem;
    color: var(--primary-color);
}

.spinner {
    position: absolute;
    width: 100px;
    height: 100px;
    border: 4px solid var(--background-cream);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.mpesa-details {
    background-color: var(--background-cream);
    padding: var(--spacing-md);
    border-radius: 10px;
    margin: var(--spacing-md) 0;
}

.mpesa-details p {
    display: flex;
    justify-content: space-between;
    margin-bottom: var(--spacing-xs);
}

.mpesa-instructions {
    margin: var(--spacing-md) 0;
}

.mpesa-instructions ol {
    padding-left: 1.5rem;
}

.mpesa-instructions li {
    margin-bottom: var(--spacing-xs);
    color: var(--text-light);
}

.mpesa-status {
    text-align: center;
    padding: var(--spacing-md);
    background-color: var(--background-cream);
    border-radius: 10px;
}

.mpesa-status i {
    margin-right: 0.5rem;
    color: var(--primary-color);
}

.success-icon {
    font-size: 5rem;
    color: var(--success);
    text-align: center;
    margin-bottom: var(--spacing-md);
}

.order-number {
    background-color: var(--background-cream);
    padding: var(--spacing-md);
    border-radius: 10px;
    margin: var(--spacing-md) 0;
    text-align: center;
}

/* ==========================================
   17. ABOUT & CONTACT PAGES
   ========================================== */
.about-content {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(180deg, #ffffff 0%, #FFF8E7 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-lg);
    align-items: center;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2D5016 0%, #F5A623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    position: relative;
    display: inline-block;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, #F5A623 0%, transparent 100%);
    border-radius: 2px;
}

.about-text p {
    margin-bottom: var(--spacing-sm);
    line-height: 1.8;
    color: var(--text-light);
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values-section,
.why-choose-section {
    padding: var(--spacing-xl) 0;
    background: 
        linear-gradient(135deg, #FFF8E7 0%, #FFF5E0 50%, #FFF8E7 100%),
        radial-gradient(circle at 20% 30%, rgba(245, 166, 35, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(107, 63, 160, 0.05) 0%, transparent 50%);
    position: relative;
}

.values-section::before,
.why-choose-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.3), transparent);
}

.values-section h2,
.why-choose-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    background: linear-gradient(135deg, #2D5016 0%, #3d6b23 50%, #F5A623 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-lg);
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-md);
}

.value-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.9) 100%);
    padding: var(--spacing-md);
    border-radius: 15px;
    text-align: center;
    box-shadow: 
        0 5px 15px rgba(0,0,0,0.08),
        0 0 0 1px rgba(245, 166, 35, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 166, 35, 0.08), transparent);
    transition: left 0.6s ease;
}

.value-card:hover::before {
    left: 100%;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 
        0 15px 35px rgba(245, 166, 35, 0.15),
        0 0 0 1px rgba(245, 166, 35, 0.3);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: var(--spacing-sm);
}

.value-icon i {
    background: linear-gradient(135deg, #F5A623 0%, #e69500 50%, #6B3FA0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(245, 166, 35, 0.3));
    transition: all 0.3s ease;
}

.value-card:hover .value-icon i {
    transform: scale(1.1) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(245, 166, 35, 0.5));
}

.value-card h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
    transition: color 0.3s ease;
}

.value-card:hover h3 {
    color: var(--primary-color);
}

.features-list {
    max-width: 900px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    gap: var(--spacing-md);
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
}

.feature-item .feature-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0;
}

.feature-content h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.contact-section {
    padding: var(--spacing-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: var(--spacing-lg);
}

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-md);
}

.contact-form-wrapper p {
    color: var(--text-light);
    margin-bottom: var(--spacing-md);
}

.alert {
    padding: var(--spacing-md);
    border-radius: 10px;
    margin-top: var(--spacing-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert i {
    font-size: 1.5rem;
}

.contact-info-cards {
    display: grid;
    gap: var(--spacing-sm);
}

.info-card {
    background-color: var(--background-cream);
    padding: var(--spacing-md);
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: var(--spacing-sm);
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-card h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-xs);
}

.info-card p {
    color: var(--text-dark);
    font-weight: 600;
}

.info-card small {
    color: var(--text-light);
    font-size: 0.85rem;
}

.social-section {
    margin-top: var(--spacing-md);
}

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

.social-link {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: var(--spacing-sm);
    background-color: var(--background-cream);
    border-radius: 10px;
    color: var(--secondary-color);
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--primary-color);
    color: var(--white);
    transform: translateY(-3px);
}

.business-hours {
    margin-top: var(--spacing-md);
}

.business-hours h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
}

.hours-list {
    background-color: var(--background-cream);
    padding: var(--spacing-md);
    border-radius: 10px;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: var(--spacing-xs) 0;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.hours-row:last-child {
    border-bottom: none;
}

.faq-section {
    padding: var(--spacing-xl) 0;
    background-color: var(--background-cream);
}

.faq-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: var(--spacing-lg);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--spacing-md);
}

.faq-item {
    background-color: var(--white);
    padding: var(--spacing-md);
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.faq-item h3 {
    color: var(--secondary-color);
    margin-bottom: var(--spacing-sm);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.faq-item h3 i {
    color: var(--primary-color);
    margin-top: 0.25rem;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* ==========================================
   18. RESPONSIVE DESIGN
   ========================================== */

/* Large Desktop - Ensure content doesn't get too spaced out */
@media (min-height: 900px) {
    .hero {
        max-height: 950px;
    }
}

/* Standard Desktop - Perfect fit */
@media (min-height: 700px) and (max-height: 899px) {
    .hero {
        padding: 130px 0 50px;
    }
}

/* Shorter Screens - Compact spacing */
@media (max-height: 699px) {
    .hero {
        padding: 110px 0 40px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.6rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-title {
        font-size: 3.8rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: 1.05rem;
        margin-bottom: 1.5rem;
        line-height: 1.7;
    }
}

/* Tablet View */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        min-height: 100vh;
        padding: 120px 0 50px;
    }
    
    .hero-content {
        max-width: 650px;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.6rem 1.6rem;
        margin-bottom: 1.25rem;
    }
    
    .hero-title {
        font-size: 3.8rem;
        margin-bottom: 1.15rem;
    }
    
    .hero-subtitle {
        font-size: 1.5rem;
        letter-spacing: 3.5px;
        margin-bottom: 1.25rem;
    }
    
    .hero-description {
        font-size: 1.1rem;
        margin-bottom: 1.75rem;
    }
    
    .hero-buttons {
        gap: 1.15rem;
    }
}

/* Very Small Mobile - Extra compact */
@media (max-width: 360px) {
    .hero-subtitle {
        font-size: 0.85rem !important;
        letter-spacing: 1px !important;
        padding: 0 0.5rem !important;
    }
    
    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 25px !important;
        margin-left: 0.4rem !important;
        margin-right: 0.4rem !important;
    }
}

/* Mobile View */
@media (max-width: 768px) {
    /* Prevent horizontal scroll */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        position: relative;
    }
    
    .container {
        padding: 0 1rem;
        max-width: 100%;
    }
    
    /* Hero Section Mobile */
    .hero {
        min-height: 100vh;
        padding: 100px 0 40px;
    }
    
    .hero-content {
        max-width: 100%;
        padding: 0 1.25rem;
    }
    
    /* Typography */
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.55rem 1.3rem;
        letter-spacing: 2px;
        margin-bottom: 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        letter-spacing: -1px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1.5px;
        margin-bottom: 1rem;
        padding: 0 0.75rem;
        white-space: nowrap;
        flex-wrap: nowrap;
    }
    
    .hero-subtitle::before,
    .hero-subtitle::after {
        width: 30px;
        margin-left: 0.5rem;
        margin-right: 0.5rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.65;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.875rem;
    }
    
    .btn {
        padding: 0.8rem 1.75rem;
        font-size: 0.875rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    /* Navigation */
    .navbar {
        width: 100%;
        max-width: 100vw;
    }
    
    .nav-wrapper {
        padding: 1rem 0;
    }
    
    .logo img {
        height: 70px;
        max-width: calc(100vw - 150px);
    }
    
    .mobile-menu-toggle {
        display: block;
        z-index: 101;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 350px;
        height: 100vh;
        background: linear-gradient(
            135deg,
            rgba(45, 80, 22, 0.98) 0%,
            rgba(45, 80, 22, 0.95) 50%,
            rgba(107, 63, 160, 0.98) 100%
        );
        backdrop-filter: blur(40px) saturate(200%);
        -webkit-backdrop-filter: blur(40px) saturate(200%);
        flex-direction: column;
        padding: 6rem 1.5rem 2rem;
        gap: 0.5rem;
        box-shadow: 
            -10px 0 50px rgba(0, 0, 0, 0.5),
            inset 2px 0 0 rgba(245, 166, 35, 0.3),
            inset 0 0 100px rgba(245, 166, 35, 0.05);
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        align-items: stretch;
        border-left: 3px solid rgba(245, 166, 35, 0.5);
        z-index: 99;
        overflow-y: auto;
        overflow-x: hidden;
    }
    
    .nav-menu::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 200px;
        background: linear-gradient(
            180deg,
            rgba(245, 166, 35, 0.15) 0%,
            transparent 100%
        );
        pointer-events: none;
    }
    
    .nav-menu li {
        width: 100%;
        animation: slideInRight 0.5s ease forwards;
        opacity: 0;
    }
    
    .nav-menu.active li:nth-child(1) { animation-delay: 0.1s; }
    .nav-menu.active li:nth-child(2) { animation-delay: 0.15s; }
    .nav-menu.active li:nth-child(3) { animation-delay: 0.2s; }
    .nav-menu.active li:nth-child(4) { animation-delay: 0.25s; }
    .nav-menu.active li:nth-child(5) { animation-delay: 0.3s; }
    
    @keyframes slideInRight {
        to {
            opacity: 1;
            transform: translateX(0);
        }
        from {
            opacity: 0;
            transform: translateX(30px);
        }
    }
    
    .nav-menu a {
        width: 100%;
        padding: 1.2rem 1.5rem;
        font-size: 1.05rem;
        border-radius: 15px;
        background: rgba(255, 255, 255, 0.08);
        border: 2px solid rgba(255, 255, 255, 0.15);
        margin-bottom: 0.5rem;
        color: rgba(255, 255, 255, 0.95);
        text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
        box-shadow: 
            0 4px 15px rgba(0, 0, 0, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.1);
    }
    
    .nav-menu a:hover,
    .nav-menu a.active {
        background: linear-gradient(
            135deg,
            rgba(245, 166, 35, 0.3) 0%,
            rgba(245, 166, 35, 0.2) 100%
        );
        border-color: rgba(245, 166, 35, 0.6);
        color: #FFD966;
        transform: translateX(-5px);
        box-shadow: 
            0 6px 20px rgba(245, 166, 35, 0.3),
            inset 0 1px 0 rgba(255, 255, 255, 0.2),
            inset 0 0 30px rgba(245, 166, 35, 0.1);
    }
    
    .nav-menu a.active {
        border-left: 4px solid #FFD966;
    }
    
    .nav-menu a.active::after {
        display: none;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu .cart-link {
        background: linear-gradient(
            135deg,
            rgba(107, 63, 160, 0.3),
            rgba(107, 63, 160, 0.2)
        ) !important;
        border-color: rgba(107, 63, 160, 0.5) !important;
    }
    
    .nav-menu .cart-link:hover {
        background: linear-gradient(
            135deg,
            rgba(107, 63, 160, 0.4),
            rgba(107, 63, 160, 0.3)
        ) !important;
        border-color: rgba(245, 166, 35, 0.6) !important;
    }
    
    /* Hero */
    .hero {
        min-height: 100vh;
        height: auto;
        padding: 100px 0 60px;
    }
    
    .hero-video {
        object-position: 65% center;
    }
    
    .hero-content {
        padding-top: 60px;
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        margin-bottom: 0.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    /* Grids */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .product-detail-grid,
    .about-grid,
    .cart-content,
    .checkout-wrapper,
    .contact-grid,
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    
    /* Ensure all sections fit */
    section {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    * {
        max-width: 100%;
    }
    
    img, video {
        max-width: 100%;
        height: auto;
    }
    
    .showcase-content {
        order: 2;
    }
    
    .showcase-image {
        order: 1;
        margin-bottom: var(--spacing-md);
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer */
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    /* Cart */
    .cart-item {
        flex-direction: column;
    }
    
    .cart-item-image {
        width: 100%;
        padding-top: 75%;
    }
    
    /* Trust badges */
    .trust-badges-checkout {
        grid-template-columns: 1fr;
    }
    
    /* FAQ */
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    /* Prevent horizontal scroll on small screens */
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    .container {
        padding: 0 0.75rem;
    }
    
    /* Typography */
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 0.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-description {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 1.25rem;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.75rem;
    }
    
    .hero-content {
        padding-top: 40px;
    }
    
    .hero {
        padding: 80px 0 40px;
    }
    
    .hero-video {
        object-position: 70% center;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    /* Products */
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    /* Buttons */
    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}