/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #E8E8E8;
    overflow-x: hidden;
    background: linear-gradient(135deg, 
        #0A0E27 0%,      /* Deep navy blue */
        #1A1F3A 25%,     /* Dark blue */
        #141829 50%,     /* Midnight blue */
        #0D1117 75%,     /* Very dark blue */
        #050811 100%     /* Almost black */
    );
    background-attachment: fixed;
    position: relative;
}

html {
    scroll-behavior: smooth;
}

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

.navbar .container {
    padding: 0;
}

/* Top Info Bar */
.top-bar {
    background: linear-gradient(90deg, #5C4033 0%, #8B4513 100%);
    color: white;
    padding: 10px 0;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(92, 64, 51, 0.6);
    position: fixed;
    top: 40px; /* Below banner */
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
}

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

.top-bar-left {
    display: flex;
    gap: 2rem;
}

.top-bar-link {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
}

.top-bar-link:hover {
    opacity: 0.8;
}

.fssai-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Business Hours Scrolling Banner */
.business-hours-banner {
    background: linear-gradient(90deg, #FF6B35 0%, #F7931E 50%, #FF6B35 100%);
    color: #FFFFFF;
    padding: 12px 0;
    overflow: hidden;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.4);
    z-index: 1001;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.banner-content {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
}

.banner-scroll {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    animation: scrollBanner 30s linear infinite;
    white-space: nowrap;
}

.banner-icon {
    font-size: 1.1rem;
    color: #FFFFFF;
    display: inline-flex;
    align-items: center;
}

.banner-text {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFFFFF;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    letter-spacing: 0.5px;
}

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

/* Pause animation on hover */
.business-hours-banner:hover .banner-scroll {
    animation-play-state: paused;
}

/* Header Styles */
.header {
    position: fixed;
    top: 80px; /* Below banner (40px) + top-bar (40px) when both visible */
    width: 100%;
    background: rgba(10, 14, 39, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    transition: top 0.3s ease-in-out, transform 0.3s ease-in-out, opacity 0.3s ease-in-out;
    box-shadow: 0 4px 20px rgba(255, 154, 86, 0.15),
                0 2px 10px rgba(61, 90, 128, 0.1);
    border-bottom: 1px solid rgba(255, 154, 86, 0.1);
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
}

/* When top-bar is hidden, move header up */
.header.compact {
    top: 40px; /* Just below banner when top-bar is hidden */
}

.header-hidden {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
}

.header-visible {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* Header Structure - Natural Stacking */
.top-bar {
    position: relative;
    transition: transform 0.3s ease-in-out, opacity 0.3s ease-in-out, max-height 0.3s ease-in-out;
    max-height: 100px;
    overflow: hidden;
}

.top-bar.hidden {
    transform: translateY(-100%);
    opacity: 0;
    max-height: 0;
    pointer-events: none;
}

.navbar {
    padding: 1rem 0;
    position: relative;
    /* Dark background to match header */
    background: rgba(10, 14, 39, 1);
}

.nav-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* Clean, readable background with strong contrast */
    background: linear-gradient(135deg, 
        rgba(92, 64, 51, 0.95) 0%,        /* Dark brown */
        rgba(139, 69, 19, 0.95) 50%,      /* Saddle brown */
        rgba(92, 64, 51, 0.95) 100%       /* Dark brown */
    );
    padding: 1.2rem 4rem;
    border-radius: 60px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3),
                0 2px 10px rgba(255, 154, 86, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 154, 86, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
}

/* Threads removed - clean navigation bar */
/* Hover effect disabled for nav-container */

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    height: 50px;
    width: 50px;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    /* Prevent any jumping or animation */
    transform: none !important;
    animation: none !important;
    transition: none !important;
}

.logo-text h2 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 0.8rem;
    color: #FFD700;
    font-weight: 400;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.nav-menu {
    display: flex;
    gap: 1.2rem;
}

.nav-link {
    text-decoration: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    white-space: nowrap;
}

.nav-link:hover {
    color: #FF9A56;
    text-shadow: 0 0 10px rgba(255, 154, 86, 0.5);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #8B4513;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

/* Search Container - In Products Section */
.search-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 2rem 0 1.5rem 0;
    width: 100%;
}

.search-toggle {
    background: linear-gradient(135deg, #FF9A56 0%, #FFB570 50%, #5A7BA8 100%);
    border: 2px solid rgba(255, 154, 86, 0.5);
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    cursor: pointer;
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 154, 86, 0.3);
    z-index: 10;
}

.search-toggle:hover {
    background: linear-gradient(135deg, #FFB570 0%, #FF9A56 50%, #6A8BB8 100%);
    border-color: #FF9A56;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 154, 86, 0.5);
}

.search-toggle span {
    display: inline-block;
}

.search-box {
    position: relative;
    display: none;
    align-items: center;
    background: rgba(255, 255, 255, 0.98);
    border: 2px solid rgba(255, 154, 86, 0.3);
    border-radius: 30px;
    padding: 0.75rem 1.5rem;
    min-width: 400px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    z-index: 1000;
}

.search-box.active {
    display: flex;
    animation: slideDown 0.3s ease;
}

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

.search-box input {
    border: none;
    outline: none;
    background: transparent;
    color: #2C1810;
    font-size: 0.9rem;
    width: 100%;
    padding-right: 30px;
}

.search-box input:focus {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
}

.search-box input:focus-visible {
    outline: none !important;
    box-shadow: none !important;
}

.search-box input::placeholder {
    color: #999;
}

.search-clear {
    position: absolute;
    right: 10px;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    font-size: 0.9rem;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.3s;
}

.search-clear:hover {
    color: #FF9A56;
}

.search-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    margin-top: 5px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1001;
    display: none;
}

.search-suggestions.active {
    display: block;
}

.search-suggestion-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f0f0f0;
    color: #2C1810;
    font-size: 0.9rem;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

.search-suggestion-item:hover {
    background: #f5f5f5;
}

.search-suggestion-item i {
    color: #FF9A56;
    font-size: 0.8rem;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Banner - Enhanced with Orange and Blue from Logo */
.hero-banner {
    padding-top: 180px; /* Account for banner (40px) + top-bar (40px) + header (100px) */
    background: linear-gradient(135deg, 
        rgba(255, 154, 86, 0.9) 0%,      /* Exact peachy orange from logo */
        rgba(255, 165, 96, 0.85) 15%,
        rgba(61, 90, 128, 0.85) 50%,     /* Exact slate blue from logo */
        rgba(70, 95, 125, 0.8) 65%,
        rgba(139, 86, 58, 0.6) 85%,      /* Brown accent */
        rgba(10, 14, 39, 0.3) 95%,       /* Smooth blend to dark background */
        transparent 100%
    );
    padding: 200px 0 180px 0; /* Account for banner (40px) + top-bar (40px) + header (120px) */
    margin-top: 0;
    min-height: 550px;
    position: relative;
    display: flex;
    align-items: center;
    overflow: visible;
    backdrop-filter: blur(5px);
    animation: heroGradient 15s ease infinite;
}

@keyframes heroGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

/* Remove the wave - gradient does the job now */
.hero-banner::after {
    display: none;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
    padding-bottom: 0;
}

.hero-text {
    text-align: left;
}

.hero-text h1,
.hero-text p {
    color: white !important;
    text-shadow: 3px 3px 10px rgba(0, 0, 0, 0.5);
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    /* Remove any gradient animations */
    background: none !important;
    -webkit-background-clip: unset !important;
    background-clip: unset !important;
    -webkit-text-fill-color: white !important;
}

.hero-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-img {
    width: 350px;
    height: 350px;
    object-fit: cover;
    border-radius: 50%;
    border: 5px solid white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Remove jumping animation - only smooth hover */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    transform: none !important; /* Prevent any unwanted transforms */
}

.hero-logo-img:hover {
    transform: scale(1.05) !important;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* Millet Word Highlighting */
.highlight-millet {
    color: #FF9A56; /* Exact peachy orange from logo */
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(255, 154, 86, 0.4);
    position: relative;
    display: inline-block;
    padding: 0 5px;
    background: linear-gradient(120deg, rgba(255, 154, 86, 0.25) 0%, rgba(61, 90, 128, 0.2) 100%);
    border-radius: 5px;
}

/* Hero Tagline */
.hero-tagline {
    font-size: 1.1rem;
    color: white !important;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 500;
    font-style: italic;
}

.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: white !important;
    margin-bottom: 2rem;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.4);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    padding: 14px 30px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    min-height: 44px;
}

.btn-primary {
    background: linear-gradient(135deg, #FF9A56 0%, #3D5A80 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 154, 86, 0.6);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #FFB070 0%, #465F7D 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 154, 86, 0.8);
}

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

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-order {
    width: 100%;
    background: #25D366;
    color: white;
    justify-content: center;
}

.btn-order:hover {
    background: #128C7E;
}

/* Trust Badges */
.trust-badges {
    padding: 60px 0;
    background: transparent;
    margin-top: -120px;
    position: relative;
    z-index: 2;
}

.badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.badge-item {
    text-align: center;
    padding: 2rem;
    border-radius: 15px;
    /* Darker, elegant background with gradient */
    background: linear-gradient(135deg,
        rgba(26, 31, 58, 0.95) 0%,      /* Dark navy */
        rgba(20, 24, 41, 0.98) 50%,     /* Darker */
        rgba(30, 35, 60, 0.95) 100%     /* Dark blue */
    );
    box-shadow: 0 8px 32px rgba(255, 154, 86, 0.2),
                0 4px 16px rgba(138, 43, 226, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    will-change: transform;
    border: 2px solid rgba(255, 154, 86, 0.3);
    backdrop-filter: blur(15px) saturate(180%);
}

.badge-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(255, 154, 86, 0.35),
                0 6px 24px rgba(138, 43, 226, 0.25);
    border-color: rgba(255, 154, 86, 0.5);
    background: linear-gradient(135deg,
        rgba(26, 31, 58, 1) 0%,
        rgba(30, 35, 60, 1) 50%,
        rgba(35, 40, 70, 1) 100%
    );
}

.badge-item i {
    font-size: 3rem;
    color: #FF9A56; /* Orange from logo */
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(255, 154, 86, 0.5);
}

.badge-item h4 {
    font-size: 1.2rem;
    color: #FFFFFF; /* White text */
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.badge-item p {
    color: #B0B0B0; /* Light gray text */
    font-size: 0.95rem;
}

/* Mobile Trust Badges - Much Smaller */
@media (max-width: 768px) {
    .trust-badges {
        padding: 30px 0;
        margin-top: -80px;
    }

    .badges-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }

    .badge-item {
        padding: 0.8rem 0.5rem;
        border-radius: 10px;
        border: 1px solid rgba(255, 154, 86, 0.2);
    }

    .badge-item i {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }

    .badge-item h4 {
        font-size: 0.7rem;
        margin-bottom: 0.2rem;
        line-height: 1.2;
    }

    .badge-item p {
        font-size: 0.6rem;
        line-height: 1.2;
    }

    .badge-item:hover {
        transform: none;
    }
}

/* Best Sellers Section */
.best-sellers-section {
    padding: 60px 0;
    background: linear-gradient(180deg,
        transparent 0%,                  /* Smooth blend from above */
        rgba(255, 154, 86, 0.08) 15%,   /* Subtle orange tint */
        rgba(61, 90, 128, 0.08) 50%,    /* Subtle blue tint */
        rgba(255, 215, 0, 0.05) 85%,    /* Gold tint */
        transparent 100%                 /* Smooth blend to next section */
    );
    backdrop-filter: blur(10px);
    position: relative;
    overflow: visible;
    margin-top: -60px;
    padding-top: 120px;
    min-height: 500px;
}

.best-sellers-section .container {
    position: relative;
    z-index: 10;
}

.best-sellers-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 215, 0, 0.1), 
        transparent
    );
    animation: shimmer 8s infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 200%; }
}

.best-sellers-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

/* Tablet styles for Best Sellers */
@media (max-width: 1024px) {
    .best-sellers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.2rem;
    }
}

.bestseller-card {
    transform: scale(0.95);
    border: 3px solid #FFD700;
    box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4),
                0 0 30px rgba(255, 140, 0, 0.3);
    animation: bestsellerGlow 3s ease-in-out infinite;
}

.bestseller-card .product-image {
    height: 240px;
}

.bestseller-card .product-title {
    font-size: 1.1rem;
}

.bestseller-card .product-description {
    font-size: 0.85rem;
    line-height: 1.4;
}

@keyframes bestsellerGlow {
    0%, 100% {
        box-shadow: 0 10px 40px rgba(255, 215, 0, 0.4),
                    0 0 30px rgba(255, 140, 0, 0.3);
    }
    50% {
        box-shadow: 0 15px 50px rgba(255, 215, 0, 0.6),
                    0 0 40px rgba(255, 140, 0, 0.5);
    }
}

/* Products Section */
.products-section {
    padding: 60px 0;
    background: linear-gradient(180deg,
        transparent 0%,                    /* Smooth blend from above */
        rgba(10, 14, 39, 0.15) 25%,       /* Gentle dark tint */
        rgba(26, 31, 58, 0.15) 50%,       /* Mid dark */
        rgba(10, 14, 39, 0.15) 75%,       /* Dark tint */
        transparent 100%                   /* Smooth blend to next */
    );
    backdrop-filter: blur(10px);
    margin-top: -50px;
    padding-top: 110px;
}

/* Products Loading Indicator */
.products-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    text-align: center;
}

.products-loading.hidden {
    display: none;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 154, 86, 0.2);
    border-top: 4px solid #FF9A56;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 1rem;
}

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

.products-loading p {
    color: #666;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Pagination Container */
.pagination-container {
    text-align: center;
    margin-top: 3rem;
    padding: 30px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.pagination-btn {
    background: linear-gradient(135deg, #FF9A56 0%, #FFB570 50%, #3D5A80 100%);
    color: white;
    border: 2px solid #FF9A56;
    padding: 12px 18px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
    height: 45px;
    box-shadow: 0 4px 15px rgba(255, 154, 86, 0.3);
}

.pagination-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #FFB570 0%, #FF9A56 50%, #5A7BA8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 154, 86, 0.5);
    border-color: #FFB570;
}

.pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: #ccc;
    border-color: #ccc;
}

.pagination-numbers {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.pagination-number {
    background: white;
    color: #3D5A80;
    border: 2px solid #e0e0e0;
    padding: 10px 16px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-number:hover {
    background: linear-gradient(135deg, #FF9A56 0%, #FFB570 50%, #3D5A80 100%);
    color: white;
    border-color: #FF9A56;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 154, 86, 0.3);
}

.pagination-number.active {
    background: linear-gradient(135deg, #FF9A56 0%, #FFB570 50%, #3D5A80 100%);
    color: white;
    border-color: #FF9A56;
    box-shadow: 0 4px 15px rgba(255, 154, 86, 0.4);
    transform: scale(1.1);
}

/* Mobile Responsive Pagination */
@media (max-width: 768px) {
    .pagination-container {
        margin-top: 2rem;
        padding: 20px 10px;
        display: flex !important; /* Ensure pagination is visible on mobile */
        justify-content: center;
    }
    
    .pagination-wrapper {
        gap: 6px;
        flex-wrap: wrap;
    }
    
    .pagination-btn {
        padding: 10px 14px;
        min-width: 40px;
        height: 40px;
        font-size: 0.9rem;
        touch-action: manipulation; /* Better touch response */
    }
    
    .pagination-number {
        padding: 8px 12px;
        min-width: 40px;
        height: 40px;
        font-size: 0.9rem;
        touch-action: manipulation;
    }
    
    .pagination-numbers {
        gap: 6px;
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .pagination-btn {
        padding: 8px 12px;
        min-width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
    
    .pagination-number {
        padding: 6px 10px;
        min-width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF9A56 0%, #FFB570 50%, #3D5A80 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    text-shadow: 0 4px 8px rgba(255, 154, 86, 0.2);
}

.section-header p {
    font-size: 1.1rem;
    color: #B0B0B0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.product-categories {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: nowrap;
    width: 100%;
    max-width: 100%;
}

.category-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    padding: 1.5rem 1rem;
    border: 3px solid rgba(255, 154, 86, 0.25);
    background: linear-gradient(135deg, 
        rgba(26, 31, 58, 0.8) 0%,
        rgba(20, 24, 41, 0.9) 100%
    );
    color: #E8E8E8;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s;
    font-weight: 600;
    font-size: 1rem;
    min-height: 160px;
    flex: 1;
    max-width: 100%;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3),
                0 2px 8px rgba(255, 154, 86, 0.1);
    backdrop-filter: blur(10px);
}

.category-btn img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.category-btn.active,
.category-btn:hover {
    background: linear-gradient(135deg, #FF9A56 0%, #FFB570 50%, #3D5A80 100%);
    color: white;
    border-color: #FF9A56;
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(255, 154, 86, 0.5),
                0 4px 20px rgba(61, 90, 128, 0.4),
                0 0 40px rgba(255, 154, 86, 0.3);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.category-btn.active img,
.category-btn:hover img {
    transform: scale(1.1);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 1.5rem;
    max-width: 100%;
}

.product-card {
    background: linear-gradient(145deg, 
        rgba(26, 31, 58, 0.9) 0%,
        rgba(20, 24, 41, 0.95) 100%
    );
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.4),
                0 2px 10px rgba(255, 154, 86, 0.1);
    border: 1px solid rgba(255, 154, 86, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform-style: preserve-3d;
    will-change: transform;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(0,0,0,0.5),
                0 4px 20px rgba(255, 154, 86, 0.25),
                0 0 40px rgba(61, 90, 128, 0.2);
    border-color: rgba(255, 154, 86, 0.4);
}

.product-image {
    position: relative;
    height: 280px;
    background: #F5F5F5;
    overflow: hidden;
}

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

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

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #F8F9FA, #E9ECEF);
    color: #999;
}

.image-placeholder i {
    font-size: 3rem;
}

.product-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    color: white;
}

.badge-healthy {
    background: #4CAF50;
}

.badge-traditional {
    background: #FF9800;
}

.badge-popular {
    background: #2196F3;
}

.badge-bestseller {
    background: #F44336;
}

.product-info {
    padding: 1.2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(180deg, 
        rgba(10, 14, 39, 0.5) 0%, 
        rgba(10, 14, 39, 0.8) 100%
    );
}

.product-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.4rem;
    line-height: 1.3;
    min-height: 40px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.product-rating {
    margin-bottom: 0.4rem;
}

.product-rating i {
    color: #FFC107;
    font-size: 0.75rem;
}

.product-description {
    color: #B0B0B0;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
    line-height: 1.4;
    flex-grow: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-price {
    margin-bottom: 0.8rem;
}

.price {
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #FF9A56 0%, #FFB570 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(255, 154, 86, 0.3));
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    background: linear-gradient(180deg,
        transparent 0%,                      /* Smooth blend from above */
        rgba(26, 31, 58, 0.15) 15%,         /* Dark tint */
        rgba(255, 154, 86, 0.08) 50%,       /* Subtle orange center */
        rgba(26, 31, 58, 0.15) 85%,         /* Dark tint */
        transparent 100%                     /* Smooth blend to next */
    );
    backdrop-filter: blur(10px);
    margin-top: -40px;
    padding-top: 120px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 154, 86, 0.2);
    border-color: #FF9A56;
}

.testimonial-stars {
    color: #FFD700;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: #333;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #888;
    font-size: 0.9rem;
}

/* Feedback Images Slider */
.feedback-image-slider-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 0;
}

.feedback-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feedback-slider-viewport {
    flex: 1;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.feedback-slider-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
}

.feedback-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feedback-slide img {
    width: 100%;
    max-width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #f5f5f5;
}

.feedback-slide img:hover {
    transform: scale(1.02);
}

.feedback-slider-btn {
    background: #FF9A56;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 154, 86, 0.4);
    flex-shrink: 0;
}

.feedback-slider-btn:hover {
    background: #FF7A36;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(255, 154, 86, 0.6);
}

.feedback-slider-btn:active {
    transform: scale(0.95);
}

.feedback-slider-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
    opacity: 0.5;
}

.feedback-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.feedback-slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.feedback-slider-dot.active {
    background: #FF9A56;
    width: 30px;
    border-radius: 15px;
    box-shadow: 0 2px 8px rgba(255, 154, 86, 0.4);
}

.feedback-slider-dot:hover {
    background: #FF9A56;
    transform: scale(1.2);
}

/* Responsive Feedback Slider */
@media (max-width: 768px) {
    .feedback-image-slider-container {
        padding: 1rem 0;
    }
    
    .feedback-slider-wrapper {
        gap: 0.5rem;
    }
    
    .feedback-slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .feedback-slide img {
        max-height: 400px;
    }
    
    .feedback-slider-dots {
        margin-top: 15px;
        gap: 8px;
    }
    
    .feedback-slider-dot {
        width: 10px;
        height: 10px;
    }
    
    .feedback-slider-dot.active {
        width: 25px;
    }
}

@media (max-width: 480px) {
    .feedback-slider-btn {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .feedback-slide img {
        max-height: 300px;
    }
}

/* Testimonial Image Slider */
.testimonial-image-slider {
    margin: 1.5rem 0;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}

.testimonial-slider-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
}

.testimonial-slider-wrapper {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

.testimonial-slide {
    min-width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.testimonial-slide img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.testimonial-slide img:hover {
    transform: scale(1.02);
}

.testimonial-slider-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 15px;
}

.testimonial-slider-btn {
    background: #FF9A56;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 154, 86, 0.3);
}

.testimonial-slider-btn:hover {
    background: #FF7A36;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(255, 154, 86, 0.5);
}

.testimonial-slider-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.testimonial-slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.testimonial-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.testimonial-slider-dot.active {
    background: #FF9A56;
    width: 25px;
    border-radius: 5px;
}

/* Image Lightbox Modal */
.image-lightbox {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    justify-content: center;
    align-items: center;
}

.image-lightbox.active {
    display: flex;
}

.image-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.image-lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.image-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 2.5rem;
    font-weight: bold;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.image-lightbox-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

/* About Section */
.about-section {
    padding: 60px 0;
    background: linear-gradient(180deg,
        transparent 0%,                      /* Smooth blend from above */
        rgba(10, 14, 39, 0.12) 25%,         /* Dark tint */
        rgba(61, 90, 128, 0.08) 50%,        /* Blue tint center */
        rgba(10, 14, 39, 0.12) 75%,         /* Dark tint */
        transparent 100%                     /* Smooth blend to next */
    );
    backdrop-filter: blur(10px);
    margin-top: -40px;
    padding-top: 100px;
}

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

.about-content-centered {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #FFFFFF;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.about-text p {
    font-size: 1.05rem;
    color: #E8E8E8;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.about-feature {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.about-feature i {
    font-size: 1.8rem;
    color: #8B4513;
    margin-top: 0.2rem;
}

.about-feature h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #FFFFFF;
    margin-bottom: 0.3rem;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.about-feature p {
    color: #E8E8E8;
    font-size: 0.95rem;
    margin: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.about-image {
    display: flex;
    justify-content: center;
}

.about-img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background: linear-gradient(180deg,
        transparent 0%,                      /* Smooth blend from above */
        rgba(26, 31, 58, 0.15) 20%,         /* Dark tint */
        rgba(255, 154, 86, 0.1) 50%,        /* Orange tint center */
        rgba(10, 14, 39, 0.2) 100%          /* Fade to dark at bottom */
    );
    backdrop-filter: blur(10px);
    margin-top: -40px;
    padding-top: 100px;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.contact-item i {
    font-size: 1.5rem;
    color: #8B4513;
    min-width: 30px;
}

.contact-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.3rem;
}

    .contact-item p {
        color: #666;
        margin: 0;
        word-wrap: break-word;
    }

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E0E0E0;
    border-radius: 5px;
    margin-bottom: 1rem;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #8B4513;
    box-shadow: 0 0 10px rgba(139, 69, 19, 0.4);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #5C4033 0%, #3E2723 100%);
    color: white;
    padding: 3rem 0 1rem;
    position: relative;
    overflow: visible;
}

/* Social Media Icons at Top Right */
.footer-social-top {
    position: absolute;
    top: 2rem;
    right: 2rem;
    display: flex;
    gap: 1rem;
    z-index: 10;
}

.social-icon-top {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 154, 86, 0.2);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.2rem;
}

.social-icon-top:hover {
    background: #FF9A56;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(255, 154, 86, 0.4);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    margin-top: 1rem;
    overflow: visible;
}

/* Company Details Section with Logo */
.footer-company {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    overflow: visible;
}

.footer-logo-container {
    flex-shrink: 0;
    margin-left: -30px;
    margin-right: 0;
    overflow: visible;
}

.footer-logo {
    width: 220px;
    height: 220px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center center;
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease;
    transform: scale(1.15);
}

.footer-logo:hover {
    transform: scale(1.2);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.5);
}

.footer-company-details {
    flex: 1;
}

.company-trade-name {
    font-size: 1.1rem;
    color: #FF9A56;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.company-detail {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 0.6rem;
    line-height: 1.5;
}

.company-detail a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: color 0.3s;
}

.company-detail a:hover {
    color: #FF9A56;
}

.company-fssai {
    margin-top: 1rem;
    padding-top: 0.8rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    color: #FFD700;
    font-size: 1rem;
}

/* Menu and Legal Sections */
.footer-section h4 {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: white;
    font-weight: 600;
    letter-spacing: 0.5px;
}

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

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 0.95rem;
    display: inline-block;
}

.footer-section ul li a:hover {
    color: #FF9A56;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    margin-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-bottom .fas.fa-heart {
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    25% { transform: scale(1.2); }
    50% { transform: scale(1); }
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .footer-company {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-logo-container {
        margin-left: 0;
        margin-right: 0;
    }
    
    .footer-logo {
        width: 180px;
        height: 180px;
        transform: scale(1.25);
    }
    
    .footer-logo:hover {
        transform: scale(1.3);
    }
    
    .footer-social-top {
        position: static;
        justify-content: center;
        margin-bottom: 2rem;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 2rem 0 1rem;
    }
    
    .footer-logo {
        width: 130px;
        height: 130px;
        transform: scale(1.1);
    }
    
    .footer-logo:hover {
        transform: scale(1.15);
    }
    
    .footer-company {
        gap: 1rem;
    }
    
    .company-trade-name {
        font-size: 0.95rem;
    }
    
    .company-detail {
        font-size: 0.75rem;
        line-height: 1.4;
        margin-bottom: 0.4rem;
    }
    
    .company-fssai {
        font-size: 0.85rem;
    }
    
    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem;
    }
    
    .footer-section ul li a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        font-size: 0.75rem;
        padding-top: 1rem;
    }
    
    .social-icon-top {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        width: 110px;
        height: 110px;
        transform: scale(1.1);
    }
    
    .footer-logo:hover {
        transform: scale(1.15);
    }
    
    .company-trade-name {
        font-size: 0.9rem;
    }
    
    .company-detail {
        font-size: 0.7rem;
    }
    
    .footer-section h4 {
        font-size: 0.9rem;
    }
    
    .footer-section ul li a {
        font-size: 0.8rem;
    }
    
    .footer-bottom {
        font-size: 0.7rem;
    }
    
    .social-icon-top {
        width: 32px;
        height: 32px;
        font-size: 0.9rem;
        gap: 0.6rem;
    }
}

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed !important;
    bottom: 2rem !important;
    right: 2rem !important;
    background: #25D366 !important; /* Original WhatsApp green */
    color: white !important;
    width: 60px !important;
    height: 60px !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5) !important;
    transition: all 0.3s !important;
    z-index: 10000 !important;
    animation: pulse 4s infinite, borderPulse 2s infinite !important; /* Slower pulse + pulsing border */
    border: 3px solid rgba(255, 255, 255, 0.3) !important; /* White pulsing border */
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.7);
}

/* WhatsApp Float Tooltip */

.whatsapp-float::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1001;
    font-weight: 500;
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    border: 6px solid transparent;
    border-top-color: #25D366;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1001;
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.whatsapp-float i {
    font-size: 2rem !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.whatsapp-float span {
    display: none;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.5);
    }
    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.8);
    }
}

@keyframes cartPulse {
    0%, 100% {
        box-shadow: 0 6px 25px rgba(61, 42, 31, 0.8);
    }
    50% {
        box-shadow: 0 6px 35px rgba(61, 42, 31, 1);
    }
}

@keyframes borderPulse {
    0%, 100% { 
        border-color: rgba(255, 255, 255, 0.3);
    }
    50% { 
        border-color: rgba(255, 255, 255, 0.8);
    }
}

/* ========================================
   Shopping Cart Styles
   ======================================== */

/* Cart Icon in Header - HIDDEN (moved to floating button only) */
.cart-icon-header {
    display: none;
}

.cart-badge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: #FFFFFF;
    color: #000000;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 50%;
    min-width: 18px;
    height: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
    border: 2px solid #e74c3c;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
}

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

/* Floating Cart Button - Enhanced Visibility */
.cart-float {
    position: fixed !important;
    bottom: 100px !important;
    right: 30px !important;
    width: 65px !important;
    height: 65px !important;
    background: linear-gradient(135deg, #3d2a1f, #5c4a2f) !important; /* Darker gradient */
    color: white !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    box-shadow: 0 6px 25px rgba(61, 42, 31, 0.8) !important; /* Darker shadow */
    z-index: 9999 !important;
    transition: all 0.3s ease !important;
    border: 3px solid #B8860B !important; /* Darker gold border */
    animation: cartPulse 4s infinite !important; /* Slower pulse */
    visibility: visible !important;
    opacity: 1 !important;
}

.cart-float i {
    font-size: 1.6rem !important;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) !important;
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.cart-float:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 35px rgba(92, 64, 51, 0.8);
    background: linear-gradient(135deg, #8B6F47, #A0826D);
    border-color: #FFD700;
}

/* Cart Float Tooltip */

.cart-float::before {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-10px);
    background: linear-gradient(135deg, #2c3e50, #34495e);
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    font-weight: 500;
}

.cart-float::after {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-2px);
    border: 6px solid transparent;
    border-top-color: #2c3e50;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1000;
}

.cart-float:hover::before,
.cart-float:hover::after {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.cart-float .cart-badge {
    top: -8px;
    right: -8px;
    background: #FFFFFF;
    color: #000000;
    border: 2px solid #e74c3c;
    font-size: 0.75rem;
    font-weight: 700;
    min-width: 24px;
    height: 24px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    z-index: 10000;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.cart-overlay {
    position: absolute;
    top: 0;
        left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.cart-sidebar.active .cart-overlay {
    opacity: 1;
}

.cart-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 450px;
    max-width: 100%;
    height: 100%;
    background: white;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.3);
        display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cart-sidebar.active .cart-content {
    transform: translateX(0);
}

/* Cart Header */
.cart-header {
    padding: 25px;
    background: linear-gradient(135deg, var(--primary-color), #8B6F47);
    color: #000000;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.cart-header > div:first-child {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.cart-header h2 {
    font-size: 1.5rem;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #000000 !important;
}

/* Cart Shipping Notice (Static in Header) */
.cart-shipping-notice {
    width: 100%;
    padding: 10px 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    font-weight: 500;
    color: #000000 !important;
}

.cart-shipping-notice i {
    font-size: 1rem;
    color: #FFD700;
}

.cart-close {
    background: white !important;
    border: 3px solid white !important;
    color: #5C4033 !important;
    font-size: 2rem !important;
    cursor: pointer;
    width: 48px;
    height: 48px;
    display: flex;
        align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    flex-shrink: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.cart-close:hover {
    background: #f0f0f0 !important;
    transform: rotate(90deg) scale(1.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.cart-close i {
    color: #5C4033 !important;
    font-weight: 900 !important;
}

/* Cart Body */
.cart-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.cart-empty {
    display: flex;
        flex-direction: column;
        align-items: center;
    justify-content: center;
    height: 100%;
    text-align: center;
    color: #999;
}

.cart-empty i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.cart-empty p {
    font-size: 1.3rem;
        font-weight: 600;
    margin: 0 0 10px 0;
}

.cart-empty span {
    font-size: 1rem;
}

/* Cart Items */
.cart-items {
    display: none;
}

.cart-items.active {
    display: block;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    margin-bottom: 15px;
    transition: all 0.3s ease;
    animation: slideInCart 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

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

.cart-item:hover {
    background: #f8f8f8;
    transform: translateX(-5px);
    border-color: #FF9A56;
    box-shadow: 0 4px 12px rgba(255, 154, 86, 0.2);
}

.cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 8px;
    object-fit: cover;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    border: 2px solid #f0f0f0;
}

.cart-item-details {
    flex: 1;
    display: flex;
        flex-direction: column;
    gap: 8px;
}

.cart-item-name {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
    line-height: 1.4;
}

.cart-item-price {
    font-size: 1.1rem;
    color: #FF9A56;
    font-weight: 700;
}

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

.qty-btn {
    width: 30px;
    height: 30px;
    border: none;
    background: var(--primary-color);
    color: white;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: #8B6F47;
    transform: scale(1.1);
}

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

.cart-item-quantity {
    font-size: 1rem;
    font-weight: 600;
    min-width: 30px;
        text-align: center;
}

.remove-item {
    background: #e74c3c;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 5px;
}

.remove-item:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Cart Footer */
.cart-footer {
    padding: 20px;
    padding-bottom: 30px;
    background: #f9f9f9;
    border-top: 2px solid #e0e0e0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

/* Cart Shipping Progress (Dynamic in Footer) */
.cart-shipping-progress {
    margin-bottom: 15px;
}

.shipping-message {
    padding: 12px 15px;
    border-radius: 8px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    animation: slideInShipping 0.3s ease;
}

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

.shipping-message i {
    font-size: 1.1rem;
}

.shipping-message.shipping-qualified {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    border: 2px solid #27ae60;
}

.shipping-message.shipping-qualified i {
    color: #fff;
}

.shipping-message.shipping-progress {
    background: linear-gradient(135deg, #f39c12, #e67e22);
    color: white;
    border: 2px solid #e67e22;
}

.shipping-message.shipping-progress i {
    color: #fff;
}

.shipping-message.shipping-info {
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    border: 2px solid #2980b9;
}

.shipping-message.shipping-info i {
    color: #fff;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
}

.cart-total span:first-child {
    color: #333;
    font-weight: 700;
}

.cart-total-price {
    color: #333;
    font-size: 1.6rem;
    font-weight: 800;
}

.btn-whatsapp-cart {
    width: 100%;
    background: #25D366;
    color: white;
    padding: 15px;
    font-size: 1.1rem;
        font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 10px;
}

.btn-whatsapp-cart:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-clear-cart {
    width: 100%;
    background: #e74c3c;
    color: white;
    padding: 12px;
    font-size: 1rem;
    font-weight: 600;
    border: none;
        border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-clear-cart:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

/* Update Add to Cart Button */
.btn-add-cart {
    background: linear-gradient(135deg, #5C4033, #8B6F47) !important;
    color: white !important;
    border: 2px solid #5C4033 !important;
    padding: 10px 20px !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(92, 64, 51, 0.3) !important;
}

.btn-add-cart i {
    margin-right: 8px;
    font-size: 1.1rem;
}

.btn-add-cart:hover {
    background: linear-gradient(135deg, #8B6F47, #A0826D) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(92, 64, 51, 0.5) !important;
    border-color: #8B6F47 !important;
}

/* ========================================
   Customer Details Form Modal
   ======================================== */

.customer-form-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10002;
    display: none;
    align-items: center;
        justify-content: center;
}

.customer-form-modal.active {
    display: flex;
}

.customer-form-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

.customer-form-content {
    position: relative;
    background: white;
    border-radius: 15px;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.3);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

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

.customer-form-header {
    background: linear-gradient(135deg, #5C4033, #8B6F47);
    color: white !important;
    padding: 25px;
    border-radius: 15px 15px 0 0;
    display: flex;
    justify-content: space-between;
        align-items: center;
    }
    
.customer-form-header h2 {
    margin: 0;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white !important;
}

.customer-form-header h2 i {
    color: white !important;
}

.customer-form-close {
    background: transparent;
    border: none;
    color: white !important;
    font-size: 1.8rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
        flex-shrink: 0;
    }
    
.customer-form-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.customer-form-close i {
    color: white !important;
}

.customer-form-body {
    padding: 30px;
}

.form-subtitle {
    color: #2a2a2a;
    margin: 0 0 25px 0;
    font-size: 1.05rem;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #1a1a1a;
    font-size: 1rem;
}

.form-group label i {
    margin-right: 8px;
    color: #8B4513;
    font-size: 1.1rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #d0d0d0;
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    box-sizing: border-box;
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    font-weight: 500;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #888888 !important;
    opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #5C4033;
    box-shadow: 0 0 0 3px rgba(92, 64, 51, 0.1);
    color: #1a1a1a !important;
    background-color: #ffffff !important;
}

.form-group input[readonly] {
    background: #ffffff !important;
    cursor: not-allowed;
    color: #1a1a1a !important;
    font-weight: 500;
    border-color: #d0d0d0;
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
    background-color: #ffffff !important;
    color: #1a1a1a !important;
    font-weight: 500;
}

.form-group small {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
}

/* File Input Styling */
.form-group input[type="file"] {
    padding: 10px;
    border: 2px dashed #d0d0d0;
    background-color: #f9f9f9;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-group input[type="file"]:hover {
    border-color: #5C4033;
    background-color: #f5f5f5;
}

.form-group input[type="file"]:focus {
    border-color: #5C4033;
    box-shadow: 0 0 0 3px rgba(92, 64, 51, 0.1);
}

/* Image Preview Container */
.image-preview-container {
    margin-top: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 300px;
}

.image-preview {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 8px;
    border: 2px solid #d0d0d0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.remove-image-btn {
    position: absolute;
    top: -10px;
    right: -10px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.remove-image-btn:hover {
    background: #c0392b;
    transform: scale(1.1);
}

.form-group small.error-message {
    color: #e74c3c;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.checkbox-group {
    margin: 25px 0;
}

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

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: var(--primary-color);
}

.form-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.form-actions .btn {
    flex: 1;
    padding: 14px 20px;
    font-size: 1rem;
        font-weight: 600;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

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

.btn-primary:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.btn-secondary {
    background: #e0e0e0;
    color: var(--text-dark);
}

.btn-secondary:hover {
    background: #d0d0d0;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Mobile Scroll Performance Optimizations */
    body,
    html {
        -webkit-overflow-scrolling: touch;
        /* Removed overflow-x: hidden to prevent scroll issues */
    }
    
    /* Reduce backdrop-filter on mobile for better scroll performance */
    .header {
        backdrop-filter: blur(5px) !important; /* Reduced from 10px for better performance */
        will-change: auto; /* Only change when needed */
        transform: translateZ(0); /* Enable hardware acceleration */
    }
    
    .product-card,
    .category-btn {
        backdrop-filter: blur(5px) !important; /* Reduced from 10px for better performance */
    }
    
    /* Business Hours Banner - Mobile */
    .business-hours-banner {
        padding: 10px 0;
    }
    
    .banner-text {
        font-size: 0.85rem;
    }
    
    .banner-icon {
        font-size: 1rem;
    }
    
    .banner-scroll {
        gap: 10px;
        animation: scrollBanner 300s linear infinite !important; /* 10x slower on mobile (30s × 10 = 300s = 5 minutes) */
    }
    
    /* Mobile Top Bar - Icon Only */
    .top-bar {
        padding: 8px 0;
    }

    .top-bar-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 1.5rem;
        padding: 0 10px;
    }

    .top-bar-left {
        flex-direction: row;
        gap: 1.2rem;
        width: auto;
        align-items: center;
    }

    /* Hide text, show only icons on mobile */
    .top-bar-link {
        font-size: 0;
        padding: 8px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
    }

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

    /* Show full text on tap/hover */
    .top-bar-link:active::after,
    .top-bar-link:focus::after {
        content: attr(data-text);
        position: absolute;
        bottom: -35px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(0, 0, 0, 0.9);
        color: white;
        padding: 6px 12px;
        border-radius: 6px;
        font-size: 0.75rem;
        white-space: nowrap;
        z-index: 1000;
        animation: fadeIn 0.2s;
    }

    .fssai-badge {
        font-size: 0;
        padding: 8px;
        background: rgba(255, 255, 255, 0.2);
        border-radius: 50%;
        width: 36px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: all 0.3s;
    }

    .fssai-badge:active {
        transform: scale(0.95);
        background: rgba(255, 255, 255, 0.4);
    }

    .fssai-badge i {
        font-size: 1.1rem;
    }

    /* Hide text spans on mobile */
    .top-bar-text {
        display: none;
    }

    /* Make FSSAI clickable on mobile */
    .fssai-badge {
        cursor: pointer !important;
    }

    /* FSSAI Popup - Mobile Only */
    .fssai-popup {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 20000;
        justify-content: center;
        align-items: center;
        animation: fadeIn 0.3s ease;
    }

    .fssai-popup.active {
        display: flex !important;
    }

    .fssai-popup-content {
        background: white;
        border-radius: 15px;
        width: 85%;
        max-width: 350px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
        animation: slideUp 0.3s ease;
    }

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

    .fssai-popup-header {
        background: linear-gradient(135deg, #5C4033 0%, #8B4513 100%);
        color: white;
        padding: 1.2rem;
        border-radius: 15px 15px 0 0;
        display: flex;
        align-items: center;
        gap: 0.8rem;
        position: relative;
    }

    .fssai-popup-header i {
        font-size: 1.5rem;
    }

    .fssai-popup-header span {
        font-size: 1.1rem;
        font-weight: 600;
        flex: 1;
    }

    .fssai-close {
        background: rgba(255, 255, 255, 0.2);
        border: none;
        color: white;
        font-size: 1.8rem;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s;
        padding: 0;
        line-height: 1;
    }

    .fssai-close:active {
        background: rgba(255, 255, 255, 0.3);
        transform: scale(0.95);
    }

    .fssai-popup-body {
        padding: 2rem 1.5rem;
        text-align: center;
    }

    .fssai-number {
        font-size: 1.8rem;
        font-weight: 700;
        color: #5C4033;
        margin-bottom: 1rem;
        letter-spacing: 1px;
    }

    .fssai-info {
        font-size: 0.9rem;
        color: #666;
        line-height: 1.5;
        margin: 0;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: linear-gradient(135deg, 
            rgba(92, 64, 51, 0.98) 0%,        /* Dark brown */
            rgba(139, 69, 19, 0.98) 100%      /* Saddle brown */
        );
        width: 100%;
        text-align: center;
        transition: left 0.3s ease-in-out;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 6rem 2rem 2rem;
        z-index: 10000;
        height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        gap: 0;
    }

    .nav-link {
        font-size: 1.2rem;
        padding: 1.2rem 1rem;
        margin: 0.5rem 0;
        border-radius: 8px;
        background: rgba(255, 255, 255, 0.1);
        transition: all 0.3s ease;
        display: block;
        width: 100%;
        color: white;
        text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    }

    .nav-link:active {
        background: rgba(255, 255, 255, 0.2);
        transform: scale(0.98);
        color: #FF9A56;
    }

    .nav-menu.active {
        left: 0;
    }

    /* Add backdrop when mobile menu is open */
    .nav-menu.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        z-index: -1;
        animation: fadeIn 0.3s ease;
    }

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

    .nav-toggle {
        display: flex;
    }
    
    /* Reduce nav-container padding on mobile */
    .nav-container {
        padding: 0.5rem 1rem;
        border-radius: 50px;
    }
    
    .navbar {
        padding: 0.5rem 0;
    }
    
    /* Mobile Search Styles */
    .search-container {
        margin: 1.5rem 0 1rem 0;
        padding: 0 1rem;
    }
    
    .search-toggle {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 300px;
    }
    
    .search-toggle span {
        display: inline-block;
    }
    
    .search-box {
        position: relative;
        min-width: auto;
        width: 100%;
        max-width: 100%;
        margin-top: 0.5rem;
    }
    
    .search-suggestions {
        max-height: 150px;
    }
    
    .search-suggestion-item {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    
    /* Hero section - add more padding to avoid nav overlap */
    .hero-banner {
        padding-top: 180px !important; /* Account for banner (40px) + header on mobile */
    }

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

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .hero-banner {
        background: linear-gradient(135deg, 
            rgba(255, 154, 86, 0.95) 0%,
            rgba(255, 165, 96, 0.9) 25%,
            rgba(61, 90, 128, 0.9) 60%,
            rgba(70, 95, 125, 0.85) 85%,
            transparent 100%
        );
        padding: 140px 0 100px 0;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-text {
        text-align: center;
    }
    
    .hero-title {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }

    .hero-tagline {
        font-size: 0.85rem;
    }

    /* Reduce all section headings */
    h1 {
        font-size: 1.8rem !important;
    }

    h2 {
        font-size: 1.5rem !important;
    }

    h3 {
        font-size: 1.2rem !important;
    }

    .section-header h2 {
        font-size: 1.6rem !important;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-logo-img {
        width: 250px;
        height: 250px;
        border: 3px solid white;
    }

    .badges-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .products-section {
        padding: 30px 0 !important; /* Reduced padding on mobile to minimize gap */
    }

    /* Reduce loading spinner padding on mobile */
    .products-loading {
        padding: 20px 10px !important; /* Reduced padding on mobile */
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        min-height: auto !important; /* Remove fixed min-height to eliminate empty space on mobile */
        display: grid !important;
        visibility: visible !important;
        opacity: 1 !important;
        margin-top: 0.5rem; /* Add small top margin instead */
        /* Prevent flickering on mobile */
        will-change: auto;
        transform: translateZ(0);
        -webkit-overflow-scrolling: touch;
    }
    
    .products-section {
        /* Prevent scroll flickering */
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .product-card {
        /* Prevent layout shifts */
        will-change: auto;
        transform: translateZ(0);
        backface-visibility: hidden;
    }
    
    .best-sellers-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .product-card {
        display: flex !important;
        min-height: 280px;
        visibility: visible !important;
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
    
    .product-image {
        height: 200px;
        display: block !important;
        visibility: visible !important;
    }
    
    .product-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
    }
    
    .product-title {
        font-size: 0.8rem;
        min-height: 32px;
        line-height: 1.2;
    }
    
    .product-description {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    
    .price {
        font-size: 1rem;
    }
    
    .btn-add-cart {
        font-size: 0.75rem;
        padding: 0.6rem 1rem;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .about-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

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

    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 1rem;
        right: 1rem;
        background: #25D366; /* Original WhatsApp green */
        animation: none !important; /* No animation on mobile - completely static */
        border: 2px solid rgba(255, 255, 255, 0.3); /* Thinner border for mobile */
    }

    .whatsapp-float i {
        font-size: 1.5rem;
    }
    
    /* Fix category buttons on tablet */
    .product-categories {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
        gap: 0.8rem;
        justify-items: stretch;
        margin-bottom: 1rem !important; /* Reduced gap between filters and products on mobile */
    }

    .category-btn {
        font-size: 0.8rem;
        padding: 1.2rem 0.5rem;
        width: 100%;
        min-width: 90px;
        gap: 0.6rem;
        min-height: 140px;
    }

    .category-btn img {
        width: 80px;
        height: 80px;
    }

    .category-btn span {
        font-size: 0.75rem;
        line-height: 1.2;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .products-section {
        padding: 25px 0 !important; /* Further reduced padding on small mobile */
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        min-height: auto !important; /* Remove fixed min-height to eliminate empty space on small mobile */
    }
    
    .best-sellers-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .product-card {
        display: flex !important;
        min-height: 320px;
    }
    
    .product-image {
        height: 240px;
    }
    
    .product-title {
        font-size: 0.9rem;
    }
    
    .product-description {
        font-size: 0.8rem;
    }

    /* Better category buttons on mobile */
    .product-categories {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
        padding: 0 0.5rem;
        margin-bottom: 1rem !important; /* Reduced gap between filters and products on small mobile */
    }
    
    /* All Products button - Full width and centered */
    .category-btn[data-category="all"] {
        grid-column: 1 / -1;
        max-width: 250px;
        margin: 0 auto;
        font-size: 0.85rem;
        padding: 1rem 0.5rem;
        font-weight: 600;
    }
    
    .category-btn {
        font-size: 0.7rem;
        padding: 0.8rem 0.4rem;
        width: 100%;
        min-width: auto;
        gap: 0.3rem;
        border-width: 2px;
    }

    .category-btn img {
        width: 70px;
        height: 70px;
    }
    
    .category-btn span {
        font-size: 0.7rem;
        line-height: 1.1;
        word-wrap: break-word;
        max-width: 100%;
    }
}

/* Smooth animations - DISABLED to prevent products from disappearing */
@keyframes fadeInUp {
    from {
        opacity: 1; /* Changed from 0 to 1 - PERMANENT FIX */
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #8B4513;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5C4033;
}

/* Intro Sequence Styles */
#loading-overlay {
    transition: opacity 0.5s ease-out;
}

#loading-logo {
    animation: logoGlow 4s ease-in-out infinite alternate; /* Slower animation */
}

@keyframes logoGlow {
    0% { 
        filter: brightness(1) drop-shadow(0 0 8px rgba(218, 165, 32, 0.2));
    }
    100% { 
        filter: brightness(1.1) drop-shadow(0 0 15px rgba(218, 165, 32, 0.4));
    }
}

#loading-spinner {
    animation: spin 1s linear infinite, pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.3;
    }
    50% { 
        transform: scale(1.1);
        opacity: 0.6;
    }
}

#loading-progress {
    position: relative;
    overflow: hidden;
}

#loading-progress::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shimmer 4s infinite; /* Slower shimmer */
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Powder pouring effect overlay */
.powder-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 9999;
    background: radial-gradient(circle at 50% 50%, 
        rgba(218, 165, 32, 0.1) 0%, 
        rgba(255, 107, 53, 0.05) 30%, 
        transparent 70%);
    animation: powderFade 4s ease-out forwards;
}

@keyframes powderFade {
    0% { 
        opacity: 0;
        transform: scale(0.8);
    }
    20% { 
        opacity: 1;
        transform: scale(1);
    }
    80% { 
        opacity: 1;
        transform: scale(1.1);
    }
    100% { 
        opacity: 0;
        transform: scale(1.2);
    }
}

/* Floating Food Animations */
.floating-food-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.floating-food {
    position: absolute;
    width: 80px;
    height: 80px;
    animation: bounceAndFade 3s ease-out forwards;
    opacity: 0;
    animation-delay: 6s; /* Start later to avoid early loading on mobile */
    animation-play-state: paused; /* Paused by default */
}

.floating-food-container.animation-ready .floating-food {
    animation-play-state: running; /* Start when ready */
}

.floating-food img {
        width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: 3px solid white;
    /* Make images brighter */
    filter: brightness(1.2) contrast(1.1) saturate(1.3);
}

@keyframes bounceAndFade {
    0% {
        transform: translateY(100vh) rotate(0deg);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    /* First bounce - highest */
    20% {
        transform: translateY(15vh) rotate(45deg);
        opacity: 1;
    }
    30% {
        transform: translateY(35vh) rotate(90deg);
        opacity: 0.95;
    }
    /* Second bounce - medium */
    42% {
        transform: translateY(25vh) rotate(135deg);
        opacity: 0.9;
    }
    52% {
        transform: translateY(45vh) rotate(180deg);
        opacity: 0.8;
    }
    /* Third bounce - small */
    62% {
        transform: translateY(38vh) rotate(225deg);
        opacity: 0.65;
    }
    70% {
        transform: translateY(52vh) rotate(270deg);
        opacity: 0.5;
    }
    /* Fourth bounce - tiny */
    77% {
        transform: translateY(48vh) rotate(315deg);
        opacity: 0.35;
    }
    83% {
        transform: translateY(58vh) rotate(360deg);
        opacity: 0.2;
    }
    /* Final settle and fade */
    90% {
        transform: translateY(62vh) rotate(380deg);
        opacity: 0.1;
    }
    100% {
        transform: translateY(65vh) rotate(400deg);
        opacity: 0;
    }
}

/* Different delays and positions for variety - SLOWER */
.floating-food:nth-child(1) {
    left: 10%;
    animation-delay: 6.5s;
    animation-duration: 5s;
}

.floating-food:nth-child(2) {
    left: 30%;
    animation-delay: 7.8s;
    animation-duration: 5.5s;
}

.floating-food:nth-child(3) {
    left: 50%;
    animation-delay: 9.2s;
    animation-duration: 5.2s;
}

.floating-food:nth-child(4) {
    left: 70%;
    animation-delay: 7.2s;
    animation-duration: 5.8s;
}

.floating-food:nth-child(5) {
    left: 85%;
    animation-delay: 8.5s;
    animation-duration: 5.3s;
}

.floating-food:nth-child(6) {
    left: 20%;
    animation-delay: 10s;
    animation-duration: 6s;
}

/* Mobile - smaller size and fewer items */
@media (max-width: 768px) {
    .floating-food {
        width: 35px !important;
        height: 35px !important;
        animation: bounceAndFadeMobile 5s ease-out forwards !important;
    }
    
    .floating-food img {
        border: 3px solid white;
        filter: brightness(1.5) contrast(1.3) saturate(1.5) !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6) !important;
    }
    
    /* Show only 3 items on mobile for performance */
    .floating-food:nth-child(n+4) {
        display: none !important;
    }

    /* Mobile-specific BOUNCE and VANISH animation (SLOWER & MORE VISIBLE) */
    @keyframes bounceAndFadeMobile {
        0% {
            transform: translateY(100vh) scale(0.8) rotate(0deg);
            opacity: 0;
        }
        15% {
            transform: translateY(60vh) scale(0.9) rotate(180deg);
            opacity: 0.7;
        }
        30% {
            transform: translateY(35vh) scale(1) rotate(360deg);
            opacity: 1;
        }
        45% {
            transform: translateY(45vh) scale(1) rotate(400deg);
            opacity: 1;
        }
        60% {
            transform: translateY(25vh) scale(1.05) rotate(540deg);
            opacity: 1;
        }
        75% {
            transform: translateY(30vh) scale(1) rotate(600deg);
            opacity: 0.9;
        }
        85% {
            transform: translateY(20vh) scale(0.95) rotate(680deg);
            opacity: 0.6;
        }
        100% {
            transform: translateY(15vh) scale(0.7) rotate(720deg);
            opacity: 0;
        }
    }

    /* Different starting positions and timings for each food item */
    .floating-food:nth-child(1) {
        left: 15% !important;
        animation-delay: 7s !important;
        animation-duration: 5.5s !important;
    }
    
    .floating-food:nth-child(2) {
        left: 50% !important;
        animation-delay: 8.5s !important;
        animation-duration: 6s !important;
    }
    
    .floating-food:nth-child(3) {
        left: 80% !important;
        animation-delay: 10s !important;
        animation-duration: 5.8s !important;
    }
}

/* ========================================
   GitHub-Inspired Advanced Effects
   ======================================== */

/* Smooth page transitions */
* {
    scroll-behavior: smooth;
}

/* Enhanced button interactions */
.btn-primary,
.btn-whatsapp,
.category-btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
}

.btn-primary::before,
.category-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-primary:hover::before,
.category-btn:hover::before {
    width: 300px;
    height: 300px;
}

/* Shimmer effect for images */
.product-image,
.hero-logo-img,
.logo-image {
    position: relative;
    overflow: hidden;
}

.product-image::after,
.hero-logo-img::after,
.logo-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.3), 
        transparent
    );
    transition: left 0.7s;
}

.product-card:hover .product-image::after,
.hero-logo-img:hover::after,
.logo-image:hover::after {
    left: 200%;
}

/* Hide FSSAI popup on desktop */
.fssai-popup {
    display: none !important;
}

/* GitHub-style focus rings */
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
    outline: 2px solid #DAA520;
    outline-offset: 3px;
}

/* Smooth scale animations */
.hero-logo-img,
.badge-item i,
.product-image img {
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-logo-img:hover {
    transform: scale(1.05) rotate(5deg);
}

/* Enhanced shadow on scroll */
.header {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    box-shadow: 0 4px 20px rgba(92, 64, 51, 0.15);
    backdrop-filter: blur(10px);
}

/* GitHub-style loading skeleton (for future use) */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

.skeleton {
    background: linear-gradient(90deg, 
        #f0f0f0 0px, 
        #e0e0e0 40px, 
        #f0f0f0 80px
    );
    background-size: 1000px 100%;
    animation: shimmer 4s infinite; /* Slower shimmer */
}

/* Smooth color transitions */
.nav-link,
.social-links a,
.footer-link {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Enhanced depth with multiple shadows */
.product-card:hover,
.badge-item:hover {
    box-shadow: 
        0 10px 40px rgba(92, 64, 51, 0.2),
        0 2px 10px rgba(218, 165, 32, 0.1);
}

/* Gradient border animation */
@keyframes borderGlow {
    0%, 100% {
        border-color: rgba(218, 165, 32, 0.3);
    }
    50% {
        border-color: rgba(218, 165, 32, 0.8);
    }
}

.category-btn.active {
    animation: borderGlow 4s ease-in-out infinite; /* Slower border glow */
}

/* Smooth section transitions */
section {
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* GitHub-style tooltip (for future use) */
[data-tooltip] {
    position: relative;
}

[data-tooltip]::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(-8px);
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    border-radius: 6px;
        font-size: 0.85rem;
    white-space: nowrap;
        opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

[data-tooltip]:hover::after {
        opacity: 1;
    transform: translateX(-50%) translateY(-4px);
}

/* Improved mobile experience */
@media (hover: none) {
    .github-spotlight {
        display: none;
    }
    
    .product-card:active {
        transform: scale(0.98);
    }

    /* Disable heavy animations on touch devices for performance */
    * {
        animation-duration: 0.3s !important;
    }

    /* Better tap targets for mobile */
    .btn,
    .category-btn,
    .nav-link {
        min-height: 44px;
        min-width: 44px;
    }

    /* Prevent text selection on buttons */
    .btn,
    .category-btn {
        -webkit-user-select: none;
        user-select: none;
        -webkit-tap-highlight-color: transparent;
    }
}

/* Additional mobile fixes */
@media (max-width: 768px) {
    /* Ensure nav toggle is above everything */
    .nav-toggle {
        position: relative;
        z-index: 10001 !important;
    }

    /* Fix top bar responsiveness */
    .top-bar {
        font-size: 0.8rem;
        padding: 8px 0;
    }

    /* Improve logo sizing */
    .logo-image {
        width: 45px;
        height: 45px;
    }

    .logo-text h2 {
        font-size: 1.2rem;
    }

    .tagline {
        font-size: 0.7rem;
    }

    /* Better spacing for mobile hero */
    .hero-banner {
        padding: 60px 0 140px 0;
    }

    /* Optimize 3D background for mobile */
    canvas {
        image-rendering: optimizeSpeed;
        image-rendering: -webkit-optimize-contrast;
    }

    /* Cart Mobile Styles - Optimized for Touch */
    .cart-icon-header {
        display: none !important;
    }

    .cart-float {
        bottom: 90px;
        right: 15px;
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #3d2a1f, #5c4a2f); /* Darker gradient for mobile */
        box-shadow: 0 6px 25px rgba(61, 42, 31, 0.8); /* Darker shadow */
        border: 3px solid #B8860B; /* Darker gold border */
        animation: none !important; /* No animation on mobile - completely static */
    }

    .cart-float i {
        font-size: 1.5rem;
    }

    .cart-float .cart-badge {
        top: -8px;
        right: -8px;
        background: #FFFFFF;
        color: #000000;
        font-size: 0.7rem;
        font-weight: 700;
        min-width: 22px;
        height: 22px;
        border: 2px solid #e74c3c;
        box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
    }
    
    /* Hide tooltips on mobile (no hover) */
    .cart-float::before,
    .cart-float::after,
    .whatsapp-float::before,
    .whatsapp-float::after {
        display: none;
    }
    
    /* Mobile shipping message adjustments */
    .cart-shipping-notice {
        font-size: 0.8rem;
        padding: 8px 12px;
    }
    
    .shipping-message {
        font-size: 0.85rem;
        padding: 10px 12px;
    }

    /* Cart Sidebar - Full Screen on Mobile */
    .cart-content {
        width: 100%;
        max-width: 100%;
    }

    .cart-header {
        padding: 20px 15px;
    }

    .cart-header h2 {
        font-size: 1.3rem;
        gap: 8px;
    }

    .cart-header h2 i {
        font-size: 1.2rem;
    }

    .cart-close {
        width: 44px;
        height: 44px;
        font-size: 1.6rem;
    }

    /* Cart Body - Better Scrolling */
    .cart-body {
        padding: 15px;
        -webkit-overflow-scrolling: touch;
    }

    .cart-empty i {
        font-size: 3rem;
        margin-bottom: 15px;
    }

    .cart-empty p {
        font-size: 1.1rem;
    }

    .cart-empty span {
        font-size: 0.9rem;
    }

    /* Cart Items - Touch-Friendly Layout */
    .cart-item {
        flex-direction: row;
        align-items: flex-start;
        text-align: left;
        padding: 12px;
        gap: 12px;
    }

    .cart-item-image {
        width: 70px;
        height: 70px;
        flex-shrink: 0;
    }

    .cart-item-details {
        width: 100%;
        align-items: flex-start;
        gap: 6px;
    }

    .cart-item-name {
        font-size: 0.95rem;
        line-height: 1.3;
    }

    .cart-item-price {
        font-size: 1rem;
    }

    /* Quantity Controls - Larger Touch Targets */
    .cart-item-controls {
        justify-content: flex-start;
        flex-wrap: nowrap;
        gap: 8px;
        width: 100%;
        margin-top: 5px;
    }

    .qty-btn {
        width: 36px;
        height: 36px;
        font-size: 1.1rem;
        border-radius: 8px;
    }

    .cart-item-quantity {
        font-size: 1rem;
        min-width: 35px;
        font-weight: 700;
    }

    .remove-item {
        width: auto;
        margin-top: 0;
        margin-left: auto;
        padding: 8px 10px;
        font-size: 0.85rem;
        border-radius: 8px;
    }

    .remove-item i {
        font-size: 0.9rem;
    }

    /* Cart Footer - Touch-Optimized Buttons */
    .cart-footer {
        padding: 15px;
        padding-bottom: 80px !important;
    }

    .cart-total {
        font-size: 1.2rem;
        margin-bottom: 15px;
    }

    .cart-total-price {
        font-size: 1.5rem;
    }

    .btn-whatsapp-cart {
        padding: 16px;
        font-size: 1.05rem;
        border-radius: 12px;
        margin-bottom: 12px;
        min-height: 52px;
    }

    .btn-whatsapp-cart i {
        font-size: 1.3rem;
    }

    .btn-clear-cart {
        padding: 14px;
        font-size: 0.95rem;
        border-radius: 12px;
        min-height: 48px;
    }

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

    /* Product Card Add to Cart Button - Mobile */
    .btn-add-cart {
        padding: 14px 20px !important;
        font-size: 0.95rem !important;
        width: 100%;
        min-height: 48px;
    }

    .btn-add-cart i {
        font-size: 1rem;
    }

    /* Success Notification - Mobile Position */
    @keyframes slideInRight {
        from {
            transform: translateX(100%);
            opacity: 0;
        }
        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    /* Customer Form - Mobile Optimized */
    .customer-form-content {
        width: 95%;
        max-height: 95vh;
        border-radius: 12px;
    }

    .customer-form-header {
        padding: 20px 15px;
    }

    .customer-form-header h2 {
        font-size: 1.2rem;
        gap: 8px;
    }

    .customer-form-close {
        width: 36px;
        height: 36px;
        font-size: 1.5rem;
    }

    .customer-form-body {
        padding: 20px 15px;
    }

    .form-subtitle {
        font-size: 0.9rem;
        margin-bottom: 20px;
    }

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

    .form-group label {
        font-size: 0.9rem;
    }

    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.95rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .form-actions {
        flex-direction: column;
        gap: 12px;
    }

    .form-actions .btn {
        width: 100%;
        padding: 14px;
        font-size: 0.95rem;
    }

    .checkbox-label {
        font-size: 0.9rem;
    }
}

/* ======================================
   FEEDBACK MODAL STYLES
   ====================================== */

/* Feedback CTA Button */
.feedback-cta {
    text-align: center;
    margin-top: 3rem;
    padding: 2rem 0;
}

.btn-feedback {
    background: linear-gradient(135deg, #FF9A56 0%, #FF6B35 100%);
    color: white;
    padding: 18px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    box-shadow: 0 8px 20px rgba(255, 154, 86, 0.3);
    transition: all 0.3s ease;
}

.btn-feedback:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 154, 86, 0.4);
}

.btn-feedback i {
    margin-right: 10px;
}

.feedback-subtitle {
    color: #B0B0B0;
    margin-top: 1rem;
    font-size: 0.95rem;
}

/* Feedback Modal */
.feedback-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

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

.feedback-modal-content {
    background: linear-gradient(135deg, 
        rgba(26, 31, 58, 0.98) 0%, 
        rgba(20, 24, 41, 0.98) 100%
    );
    border-radius: 20px;
    width: 90%;
    max-width: 550px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(255, 154, 86, 0.3);
    animation: slideUp 0.4s ease;
}

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

.feedback-modal-header {
    background: linear-gradient(135deg, 
        rgba(255, 154, 86, 0.2) 0%, 
        rgba(138, 43, 226, 0.2) 100%
    );
    padding: 1.5rem 2rem;
    border-bottom: 2px solid rgba(255, 154, 86, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.feedback-modal-header h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.feedback-modal-header h3 i {
    color: #FF9A56;
}

.feedback-close {
    background: none;
    border: none;
    color: #FF9A56;
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.feedback-close:hover {
    background: rgba(255, 154, 86, 0.2);
    transform: rotate(90deg);
}

.feedback-modal-body {
    padding: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    color: #1a1a1a;
    font-weight: 700;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.required {
    color: #FF6B35;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(255, 154, 86, 0.3);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    background: rgba(26, 31, 58, 0.5);
    color: #FFFFFF;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #FF9A56;
    box-shadow: 0 0 0 4px rgba(255, 154, 86, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-group select option {
    background: #1A1F3A;
    color: #FFFFFF;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 8px;
    margin-bottom: 10px;
}

.star-rating-input input[type="radio"] {
    display: none;
}

.star-rating-input label {
    font-size: 2.5rem;
    color: rgba(255, 154, 86, 0.3);
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 0;
}

.star-rating-input label:hover,
.star-rating-input label:hover ~ label {
    color: #FF9A56;
    transform: scale(1.1);
}

.star-rating-input input[type="radio"]:checked ~ label {
    color: #FF9A56;
    text-shadow: 0 0 10px rgba(255, 154, 86, 0.5);
}

.rating-text {
    color: #B0B0B0;
    font-size: 0.9rem;
    font-style: italic;
    min-height: 20px;
}

.feedback-modal-footer {
    padding: 1.5rem 2rem;
    background: rgba(26, 31, 58, 0.5);
    border-top: 2px solid rgba(255, 154, 86, 0.3);
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    border-radius: 0 0 20px 20px;
}

.btn-primary,
.btn-secondary {
    padding: 12px 28px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.btn-primary {
    background: linear-gradient(135deg, #FF9A56 0%, #FF6B35 100%);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 154, 86, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 154, 86, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #E8E8E8;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Testimonials Loading State */
.testimonials-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
}

.loading-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 154, 86, 0.2);
    border-top-color: #FF9A56;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

.testimonials-loading p {
    color: #B0B0B0;
    font-size: 1.1rem;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .feedback-modal-content {
        width: 95%;
        max-height: 95vh;
    }

    .feedback-modal-header {
        padding: 1.2rem 1.5rem;
    }

    .feedback-modal-header h3 {
        font-size: 1.2rem;
    }

    .feedback-modal-body {
        padding: 1.5rem;
    }

    .feedback-modal-footer {
        padding: 1.2rem 1.5rem;
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .star-rating-input label {
        font-size: 2rem;
    }

    .btn-feedback {
        padding: 16px 32px;
        font-size: 1rem;
    }
}

/* ==========================================
   TRACK ORDER SECTION STYLES
   ========================================== */

.track-order-section {
    padding: 80px 0;
    background: linear-gradient(180deg,
        transparent 0%,
        rgba(26, 31, 58, 0.15) 15%,
        rgba(255, 154, 86, 0.08) 50%,
        rgba(26, 31, 58, 0.15) 85%,
        transparent 100%
    );
    backdrop-filter: blur(10px);
    margin-top: -40px;
    padding-top: 120px;
}

/* Track Input */
.track-input-container {
    max-width: 600px;
    margin: 0 auto 3rem auto;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

#order-id-input {
    flex: 1;
    min-width: 250px;
    padding: 1rem 1.5rem;
    border: 2px solid rgba(255, 154, 86, 0.3);
    border-radius: 50px;
    background: rgba(26, 31, 58, 0.8);
    color: #FFFFFF;
    font-size: 1rem;
    transition: all 0.3s ease;
}

#order-id-input:focus {
    outline: none;
    border-color: #FF9A56;
    box-shadow: 0 0 20px rgba(255, 154, 86, 0.3);
}

#order-id-input::placeholder {
    color: #888;
}

.btn-track {
    padding: 1rem 2.5rem;
    background: linear-gradient(135deg, #FF9A56 0%, #8A2BE2 100%);
    color: #FFFFFF;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 154, 86, 0.3);
}

.btn-track:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(255, 154, 86, 0.5);
}

.btn-track i {
    margin-right: 0.5rem;
}

/* Loading State for Track Order */
.track-order-section .loading-state {
    text-align: center;
    padding: 3rem;
}

.track-order-section .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid rgba(255, 154, 86, 0.2);
    border-top-color: #FF9A56;
    border-radius: 50%;
    margin: 0 auto 1rem auto;
    animation: spin 1s linear infinite;
}

.track-order-section .loading-state p {
    color: #B0B0B0;
    font-size: 1.1rem;
}

/* Error Message for Track Order */
.track-order-section .error-message {
    max-width: 600px;
    margin: 2rem auto;
    padding: 1.5rem;
    background: rgba(220, 53, 69, 0.1);
    border: 2px solid rgba(220, 53, 69, 0.3);
    border-radius: 15px;
    text-align: center;
}

.track-order-section .error-message i {
    font-size: 2rem;
    color: #dc3545;
    margin-bottom: 0.5rem;
    display: block;
}

.track-order-section .error-message p {
    color: #ff6b7a;
    font-size: 1rem;
    margin: 0;
}

/* Order Details Container */
.order-details-container {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Order Info Card */
.order-info-card {
    background: rgba(26, 31, 58, 0.9);
    border: 2px solid rgba(255, 154, 86, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.order-info-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.order-info-header h2 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin: 0;
}

.order-id-badge {
    background: linear-gradient(135deg, #FF9A56 0%, #8A2BE2 100%);
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
}

.order-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.info-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.info-item.full-width {
    grid-column: 1 / -1;
}

.info-item i {
    font-size: 1.5rem;
    color: #FF9A56;
    margin-top: 0.2rem;
}

.info-item div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.info-label {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    color: #FFFFFF;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Order Items Card */
.order-items-card {
    background: rgba(26, 31, 58, 0.9);
    border: 2px solid rgba(255, 154, 86, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.order-items-card h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.order-items-card h3 i {
    color: #FF9A56;
    margin-right: 0.5rem;
}

.order-items-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(10, 14, 39, 0.5);
    border-radius: 10px;
    border: 1px solid rgba(255, 154, 86, 0.2);
}

.order-item-name {
    color: #FFFFFF;
    font-weight: 500;
    flex: 1;
}

.order-item-qty {
    color: #B0B0B0;
    margin: 0 1rem;
}

.order-item-price {
    color: #FF9A56;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Order Timeline Card */
.order-timeline-card {
    background: rgba(26, 31, 58, 0.9);
    border: 2px solid rgba(255, 154, 86, 0.3);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.order-timeline-card h2 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.order-timeline-card h3 {
    color: #FFFFFF;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.current-status {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, rgba(255, 154, 86, 0.2) 0%, rgba(138, 43, 226, 0.2) 100%);
    border-radius: 50px;
    margin-bottom: 2rem;
    border: 2px solid rgba(255, 154, 86, 0.4);
}

.current-status i {
    color: #FF9A56;
    font-size: 1.3rem;
}

.current-status span {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Progress Container */
.progress-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 3rem 0;
    position: relative;
    flex-wrap: wrap;
    gap: 1rem 0;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    flex: 1;
    min-width: 80px;
    position: relative;
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(26, 31, 58, 0.8);
    border: 3px solid rgba(255, 154, 86, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #666;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.progress-step.active .step-icon {
    background: linear-gradient(135deg, #FF9A56 0%, #8A2BE2 100%);
    border-color: #FF9A56;
    color: #FFFFFF;
    box-shadow: 0 0 20px rgba(255, 154, 86, 0.5);
    animation: pulseTrack 2s infinite;
}

.progress-step.completed .step-icon {
    background: #4CAF50;
    border-color: #4CAF50;
    color: #FFFFFF;
}

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

.step-label {
    color: #888;
    font-size: 0.85rem;
    text-align: center;
    font-weight: 500;
}

.progress-step.active .step-label,
.progress-step.completed .step-label {
    color: #FFFFFF;
    font-weight: 600;
}

.progress-line {
    flex: 1;
    height: 3px;
    background: rgba(255, 154, 86, 0.2);
    position: relative;
    margin: 0 -10px;
    margin-top: -30px;
    z-index: 1;
}

.progress-line.completed {
    background: linear-gradient(90deg, #4CAF50 0%, #FF9A56 100%);
}

/* Status History Timeline */
.status-history {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid rgba(255, 154, 86, 0.2);
}

.timeline-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeline-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: rgba(10, 14, 39, 0.5);
    border-radius: 10px;
    border-left: 4px solid #FF9A56;
}

.timeline-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #FF9A56 0%, #8A2BE2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    flex-shrink: 0;
}

.timeline-content {
    flex: 1;
}

.timeline-status {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.timeline-time {
    color: #888;
    font-size: 0.85rem;
}

/* Delivery Estimate */
.delivery-estimate {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.2) 0%, rgba(76, 175, 80, 0.1) 100%);
    border: 2px solid rgba(76, 175, 80, 0.4);
    border-radius: 15px;
}

.delivery-estimate i {
    font-size: 2rem;
    color: #4CAF50;
}

.delivery-estimate div {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.estimate-label {
    color: #888;
    font-size: 0.9rem;
    text-transform: uppercase;
}

.estimate-date {
    color: #FFFFFF;
    font-size: 1.2rem;
    font-weight: 600;
}

/* Admin Notes in Track Order */
.track-order-section .admin-notes {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 193, 7, 0.1);
    border: 2px solid rgba(255, 193, 7, 0.3);
    border-radius: 15px;
}

.track-order-section .admin-notes i {
    font-size: 1.5rem;
    color: #FFC107;
    margin-top: 0.2rem;
}

.track-order-section .admin-notes div {
    flex: 1;
}

.notes-label {
    color: #FFC107;
    font-weight: 600;
    display: block;
    margin-bottom: 0.5rem;
}

.notes-text {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive Track Order */
@media (max-width: 768px) {
    .track-input-container {
        flex-direction: column;
    }

    #order-id-input {
        min-width: 100%;
    }

    .btn-track {
        width: 100%;
    }

    .order-info-grid {
        grid-template-columns: 1fr;
    }

    .progress-container {
        flex-direction: column;
        gap: 1.5rem;
    }

    .progress-line {
        display: none;
    }

    .progress-step {
        width: 100%;
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
    }

    .step-label {
        text-align: left;
        font-size: 1rem;
    }
}

/* ==========================================
   LEGAL MODALS (Privacy Policy, Terms & Conditions)
   ========================================== */

.legal-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.legal-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.legal-modal-content {
    background: rgba(26, 31, 58, 0.98);
    border: 2px solid rgba(255, 154, 86, 0.4);
    border-radius: 20px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
}

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

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

.legal-modal-header {
    padding: 2rem;
    border-bottom: 2px solid rgba(255, 154, 86, 0.3);
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    background: rgba(26, 31, 58, 0.98);
    z-index: 1;
}

.legal-modal-header h2 {
    color: #FFFFFF;
    font-size: 1.8rem;
    margin: 0;
    background: linear-gradient(135deg, #FF9A56 0%, #8A2BE2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.legal-modal-close {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(220, 53, 69, 0.2);
    border: 2px solid rgba(220, 53, 69, 0.4);
    color: #ff6b7a;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

.legal-modal-close:hover {
    background: rgba(220, 53, 69, 0.3);
    transform: rotate(90deg);
}

.legal-modal-body {
    padding: 2rem;
    color: #E8E8E8;
    line-height: 1.8;
}

.legal-modal-body h3 {
    color: #FF9A56;
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-modal-body p {
    margin-bottom: 1rem;
    color: #E8E8E8;
}

.legal-modal-body ul {
    margin: 1rem 0 1.5rem 2rem;
    list-style: disc;
}

.legal-modal-body li {
    margin-bottom: 0.5rem;
    color: #E8E8E8;
}

.legal-modal-body strong {
    color: #FF9A56;
    font-weight: 600;
}

/* Responsive for legal modals */
@media (max-width: 768px) {
    .legal-modal.active {
        padding: 1rem;
    }

    .legal-modal-content {
        max-height: 95vh;
    }

    .legal-modal-header {
        padding: 1.5rem;
    }

    .legal-modal-header h2 {
        font-size: 1.4rem;
    }

    .legal-modal-body {
        padding: 1.5rem;
    }

    .legal-modal-body h3 {
        font-size: 1.1rem;
    }
}

/* ========================================
   WEIGHT SELECTION MODAL STYLES
   ======================================== */
.weight-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.weight-modal.active {
    display: flex;
}

.weight-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.weight-modal-content {
    position: relative;
    background: white;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    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;
    }
}

.weight-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 2px solid #f0f0f0;
    background: linear-gradient(135deg, #FF9A56 0%, #ff8a4c 100%);
    border-radius: 20px 20px 0 0;
}

.weight-modal-header h3 {
    margin: 0;
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.weight-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    color: white;
    cursor: pointer;
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.weight-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: rotate(90deg);
}

.weight-modal-body {
    padding: 25px;
}

.weight-product-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
}

.weight-base-price {
    font-size: 1rem;
    color: #666;
    margin: 0 0 25px 0;
}

.weight-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.weight-option {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: white;
}

.weight-option:hover {
    border-color: #FF9A56;
    background: #fff8f4;
    transform: translateX(5px);
}

.weight-option.selected {
    border-color: #FF9A56;
    background: linear-gradient(135deg, #fff8f4 0%, #ffede5 100%);
    box-shadow: 0 4px 15px rgba(255, 154, 86, 0.2);
}

.weight-option-left {
    display: flex;
    align-items: center;
    gap: 15px;
}

.weight-icon {
    width: 40px;
    height: 40px;
    background: #FF9A56;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.weight-option-info {
    display: flex;
    flex-direction: column;
}

.weight-option-weight {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
}

.weight-option-price {
    font-size: 0.95rem;
    color: #666;
}

.weight-option-right {
    font-size: 1.3rem;
    font-weight: 700;
    color: #FF9A56;
}

.weight-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: #f8f8f8;
    border-radius: 12px;
    margin-top: 20px;
}

.weight-subtotal span:first-child {
    font-weight: 600;
    color: #333;
}

.weight-selected-text {
    font-weight: 700;
    color: #FF9A56;
    font-size: 1.1rem;
}

.weight-modal-footer {
    display: flex;
    gap: 15px;
    padding: 20px 25px;
    border-top: 2px solid #f0f0f0;
}

.weight-modal-footer .btn {
    flex: 1;
}

/* Mobile Styles for Weight Modal */
@media (max-width: 768px) {
    .weight-modal-content {
        max-width: 95%;
        max-height: 85vh;
    }

    .weight-modal-header {
        padding: 15px 20px;
    }

    .weight-modal-header h3 {
        font-size: 1.2rem;
    }

    .weight-modal-body {
        padding: 20px;
    }

    .weight-product-name {
        font-size: 1.1rem;
    }

    .weight-option {
        padding: 15px;
    }

    .weight-icon {
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }

    .weight-option-weight {
        font-size: 1rem;
    }

    .weight-option-right {
        font-size: 1.2rem;
    }

    .weight-modal-footer {
        flex-direction: column;
        padding: 15px 20px;
    }

    .weight-modal-footer .btn {
        width: 100%;
    }
}

