        /* ===== RESET & BASE ===== */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background: #0a0a0f;
            color: #ffffff;
            min-height: 100vh;
        }
        
        /* ===== SCROLLBAR ===== */
        ::-webkit-scrollbar { width: 8px; }
        ::-webkit-scrollbar-track { background: #0a0a0f; }
        ::-webkit-scrollbar-thumb { background: #6c5ce7; border-radius: 10px; }
        
        /* ===== ANNOUNCEMENT BAR ===== */
        .announcement {
            background: linear-gradient(90deg, #6c5ce7, #a29bfe);
            color: white;
            text-align: center;
            padding: 10px 16px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: 0.5px;

            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap; /* Allows wrapping on small screens */
            gap: 8px;
        }

        .separator {
            opacity: 0.7;
        }

        /* Mobile adjustments */
        @media (max-width: 480px) {
            .announcement {
                font-size: 12px;
                padding: 8px 12px;
                gap: 4px;
            }

            /* Hide the "|" when the text wraps */
            .separator {
                display: none;
            }
        }
        
        /* ===== NAVBAR ===== */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 40px;
            background: rgba(10, 10, 15, 0.95);
            backdrop-filter: blur(10px);
            position: sticky;
            top: 0;
            z-index: 1000;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }
        
        .logo img {
            height: 70px;   /* Desktop */
            width: auto;
            border-radius: 7px;
            cursor: pointer;
        }
        
        @media (max-width: 768px) {
            .logo img {
                height: 34px;   /* Mobile */
            }
        }
        
        .logo:hover img {
            transform: scale(1.03);
        }
        
        .nav-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }
        
        .nav-actions input {
            padding: 10px 18px;
            border-radius: 30px;
            border: 1px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05);
            color: white;
            width: 250px;
            font-size: 14px;
            transition: all 0.3s;
        }
        
        .nav-actions input:focus {
            outline: none;
            border-color: #6c5ce7;
            background: rgba(108, 92, 231, 0.1);
            box-shadow: 0 0 20px rgba(108, 92, 231, 0.15);
        }
        
        .nav-actions input::placeholder { color: rgba(255,255,255,0.4); }
        
        /* ===== HERO SECTION ===== */
        .hero {
            display: grid;
            padding: 30px 40px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .hero-main {
            background: linear-gradient(135deg, #1a1a2e, #16213e);
            border-radius: 20px;
            padding: 40px;
            position: relative;
            overflow: hidden;
            min-height: 350px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        
        .hero-main::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(108,92,231,0.2), transparent);
            border-radius: 50%;
        }
        
        .hero-main h1 {
            font-size: 42px;
            font-weight: 800;
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        
        .hero-main h1 span { color: #6c5ce7; }
        
        .hero-main p {
            color: rgba(255,255,255,0.7);
            font-size: 18px;
            position: relative;
            z-index: 1;
            max-width: 400px;
        }

        .hero-content {
            position: relative;
            z-index: 1;
            transition: opacity 0.5s ease, transform 0.5s ease;
        }
        
        .hero-content.slide-out {
            opacity: 0;
            transform: translateY(25px);
        }
        
        .hero-content.slide-in {
            opacity: 1;
            transform: translateY(0);
        }
        
        /* ===== CATEGORY PILLS ===== */
        .categories {
            display: flex;
            gap: 12px;
            padding: 10px 40px;
            max-width: 1400px;
            margin: 0 auto;
            overflow-x: auto;
            flex-wrap: nowrap;
            scrollbar-width: none;
        }
        
        .categories::-webkit-scrollbar { display: none; }
        
        .category-pill {
            padding: 10px 24px;
            border-radius: 30px;
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.08);
            color: rgba(255,255,255,0.7);
            font-size: 14px;
            font-weight: 500;
            cursor: pointer;
            white-space: nowrap;
            transition: all 0.3s;
            user-select: none;
        }
        
        .category-pill:hover,
        .category-pill.active {
            background: #6c5ce7;
            color: white;
            border-color: #6c5ce7;
            transform: scale(1.02);
        }
        
        /* ===== PRODUCT GRID ===== */
        .products-section {
            padding: 20px 40px 60px;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .products-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 20px;
            margin-bottom: 28px;
            flex-wrap: wrap;
        }
        
        .products-title h2 {
            margin: 0;
            font-size: clamp(1.75rem, 4vw, 2.25rem);
            font-weight: 700;
            line-height: 1.2;
        }
        
        .products-title h2 span {
            color: #6c5ce7;
        }
        
        .products-subtitle {
            margin-top: 6px;
            color: rgba(255, 255, 255, 0.6);
            font-size: 0.95rem;
        }
        
        .product-count {
            background: rgba(108, 92, 231, 0.12);
            border: 1px solid rgba(108, 92, 231, 0.25);
            color: #b8b0ff;
            padding: 8px 14px;
            border-radius: 999px;
            font-size: 0.9rem;
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.3s ease;
        }
        
        .product-count:hover {
            transform: translateY(-2px);
            background: rgba(108, 92, 231, 0.18);
        }
        
        /* Mobile layout */
        @media (max-width: 768px) {
            .products-header {
                flex-direction: column;
                align-items: flex-start;
            }
        
            .product-count {
                align-self: flex-start;
            }
        }
        
        .product-count {
            color: rgba(255,255,255,0.5);
            font-size: 14px;
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
            gap: 14px;
        }

        @media (min-width: 600px) {
            .product-grid {
                grid-template-columns: repeat(3, 1fr);
            }
        }
        
        @media (min-width: 900px) {
            .product-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        
        @media (min-width: 1200px) {
            .product-grid {
                grid-template-columns: repeat(5, 1fr);
            }
        }
        
        @media (min-width: 1500px) {
            .product-grid {
                grid-template-columns: repeat(6, 1fr);
            }
        }
        
        /* ===== PRODUCT CARD ===== */
        .product-card {
            background: rgba(255,255,255,0.03);
            border-radius: 10px;
            padding: 10px;
            border: 1px solid rgba(255,255,255,0.06);
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .product-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(108,92,231,0.05), transparent);
            opacity: 0;
            transition: opacity 0.3s;
        }
        
        .product-card:hover {
            transform: translateY(-8px);
            border-color: rgba(108,92,231,0.3);
            box-shadow: 0 20px 40px rgba(0,0,0,0.4);
        }
        
        .product-card:hover::before { opacity: 1; }
        
        .product-image {
            width: 100%;
            aspect-ratio: 1/1;
            object-fit: contain;
            border-radius: 12px;
            background: rgba(255,255,255,0.02);
            margin-bottom: 16px;
            transition: all 0.5s;
            image-rendering: auto;
        }
        
        .product-card:hover .product-image {
            transform: scale(1.04);
        }

        .product-tags {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 10;
        
            display: flex;
            gap: 1px;
            align-items: flex-end;
        }
        
        .product-tag {
            background: #6c5ce7;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.5px;
            text-transform: uppercase;

            transition: transform 0.3s ease;
            transform-origin: center;
        }

        @media (max-width: 768px) {
            .product-tags {
                flex-direction: column;
                align-items: flex-end;
            }
        }
        
        .product-card:hover .product-tag {
            transform: scale(1.05) translateY(-2px);
        }

        .product-tag.hot { background: #e17055; }
        .product-tag.new { background: #00b894; }
        
        .product-name {
            font-size: 14px;
            font-weight: 600;
            margin-bottom: 6px;
            line-height: 1.3;
            color: #fff;

            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        
        .product-category {
            font-size: 13px;
            color: rgba(255,255,255,0.4);
            margin-bottom: 10px;
        }
        
        .product-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .product-price {
            font-size: 22px;
            font-weight: 700;
            color: #6c5ce7;
        }
        
        .product-price small {
            font-size: 14px;
            font-weight: 400;
            color: rgba(255,255,255,0.3);
            text-decoration: line-through;
            margin-left: 8px;
        }
        
        .discount-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 11;
        
            background: #e63946;
            color: #fff;
            font-size: 11px;
            font-weight: 700;
            padding: 4px 8px;
            border-radius: 6px;
            letter-spacing: 0.3px;
        }

/* ===== PRODUCT MODAL ===== */

.product-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(6px);

    display: none;
    justify-content: center;
    align-items: center;

    padding: 20px;
    z-index: 9999;
}

.product-modal.show {
    display: flex;
}

.product-modal-header {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 16px;
}

.product-modal-content {
    width: min(900px, 100%);
    background: #151515;
    border-radius: 18px;
    padding: 24px;
    position: relative;
    border: 1px solid rgba(255,255,255,0.08);
}

.whatsapp-btn {
    width: 100%;
    margin-top: 16px;
    padding: 12px 16px;
    border-radius: 10px;
    border: none;
    background: #25D366;
    color: white;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: 0.2s ease;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    background: #1ebe5d;
}

.product-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;

    width: 34px;
    height: 34px;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;

    background: rgba(255, 255, 255, 0.05);
    color: #cfd3ff;

    font-size: 18px;
    font-weight: 300;
    line-height: 1;

    cursor: pointer;

    transition: all 0.2s ease;
    backdrop-filter: blur(6px);
}

.product-modal-close:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.18);
    transform: scale(1.05);
    color: #ffffff;
}

.product-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.product-modal-image-wrap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.product-modal-image {
    width: 100%;
    max-height: 400px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.image-slider {
    position: relative;
    width: 100%;
    max-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* arrows */
.img-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    border: none;
    color: #fff;
    font-size: 20px;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    cursor: pointer;
    z-index: 5;
}

.img-nav:hover {
    background: rgba(0,0,0,0.6);
}

.img-nav.prev {
    left: 10px;
}

.img-nav.next {
    right: 10px;
}

/* dots */
.image-dots {
    display: flex;
    gap: 6px;
    margin-top: 10px;
}

.image-dots span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: 0.2s;
}

.image-dots span.active {
    background: #fff;
    transform: scale(1.2);
}

.product-modal-details h2 {
    margin-bottom: 10px;
}

#modalCategory {
    opacity: 0.7;
    margin-bottom: 12px;
}

.modal-price {
    font-size: 28px;
    font-weight: bold;
    color: #6c5ce7;
    margin-bottom: 16px;
}

.product-modal-badges {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.product-modal-badges span {
    display: inline-block;
}

@media (max-width: 768px) {
    .product-modal-grid {
        grid-template-columns: 1fr;
    }

    .product-modal-image {
        max-height: 280px;
    }
}
        
        /* ===== LOAD MORE ===== */
        .load-more-wrap {
            text-align: center;
            margin-top: 40px;
        }
        
        .load-more-btn {
            background: rgba(255,255,255,0.05);
            border: 1px solid rgba(255,255,255,0.1);
            color: white;
            padding: 14px 48px;
            border-radius: 50px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }
        
        .load-more-btn:hover {
            background: #6c5ce7;
            border-color: #6c5ce7;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(108,92,231,0.3);
        }
        
        .load-more-btn:disabled {
            opacity: 0.4;
            cursor: not-allowed;
            transform: none;
        }
        
        /* ===== FOOTER ===== */
        .footer {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding: 40px 40px 20px;
            max-width: 1400px;
            margin: 0 auto;
            text-align: center;
            color: rgba(255,255,255,0.3);
            font-size: 14px;
        }
        
        /* ===== SKELETON LOADING ===== */
        .skeleton {
            background: linear-gradient(
                90deg,
                rgba(255,255,255,0.05) 25%,
                rgba(255,255,255,0.12) 50%,
                rgba(255,255,255,0.05) 75%
            );
            border-radius: 10px;
            padding: 20px;
            border: 1px solid rgba(255,255,255,0.03);
            animation: pulse 1.5s ease-in-out infinite;
        }
        
        .skeleton .s-image {
            width: 100%;
            aspect-ratio: 1/1;
            background: rgba(255,255,255,0.05);
            border-radius: 12px;
            margin-bottom: 16px;
        }
        
        .skeleton .s-line {
            height: 16px;
            background: rgba(255,255,255,0.05);
            border-radius: 8px;
            margin-bottom: 8px;
        }
        
        .skeleton .s-line.short { width: 60%; }
        .skeleton .s-line.medium { width: 40%; }
        
        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }
        
        /* ===== RESPONSIVE ===== */
        @media (max-width: 1024px) {
            .hero {
                grid-template-columns: 1fr;
                padding: 20px;
            }
            
            .navbar { padding: 16px 20px; }
            .nav-actions input { width: 180px; }
        }
        
        @media (max-width: 768px) {
            .hero-main h1 { font-size: 28px; }
            .product-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
            .products-section { padding: 20px; }
            .categories { padding: 10px 20px; }
            .navbar { flex-wrap: wrap; gap: 12px; }
            .nav-actions { width: 100%; }
            .nav-actions input { width: 100%; }
            .hero { padding: 16px; }
        }
        
        @media (max-width: 480px) {
            .product-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
            .product-card { padding: 12px; }
            .product-price { font-size: 18px; }
            .add-btn { padding: 6px 12px; font-size: 11px; }
        }


/* WHATSAPP STICKY BUTTON */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(0,0,0,0.25);
    z-index: 99;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float img {
    width: 28px;
    height: 28px;
}

.whatsapp-float:hover {
    transform: scale(1.08);
    box-shadow: 0 15px 35px rgba(0,0,0,0.35);
}