        :root {
            --primary: #ff4757;
            --primary-dark: #e63946;
            --secondary: #ffa500;
            --accent: #2ecc71;
            --dark: #1a1a2e;
            --dark-light: #16213e;
            --light: #f8f9fa;
            --glass: rgba(255, 255, 255, 0.95);
            --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
            --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
            --gradient-hero: linear-gradient(135deg, #ff4757 0%, #ff6b81 50%, #ffa500 100%);
            --shadow-sm: 0 2px 10px rgba(0,0,0,0.05);
            --shadow-md: 0 10px 30px rgba(0,0,0,0.1);
            --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
            --shadow-glow: 0 0 30px rgba(255, 71, 87, 0.3);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(135deg, #fff5f7 0%, #fff9e8 100%);
            color: var(--dark);
            overflow-x: hidden;
            position: relative;
        }

        /* Animated Background Particles */
        .bg-particles {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            pointer-events: none;
            overflow: hidden;
        }

        .particle {
            position: absolute;
            border-radius: 50%;
            animation: float 20s infinite;
            opacity: 0.1;
        }

        .particle:nth-child(1) { width: 80px; height: 80px; background: var(--primary); top: 10%; left: 10%; animation-delay: 0s; }
        .particle:nth-child(2) { width: 60px; height: 60px; background: var(--secondary); top: 60%; left: 80%; animation-delay: 2s; }
        .particle:nth-child(3) { width: 100px; height: 100px; background: var(--accent); top: 80%; left: 20%; animation-delay: 4s; }
        .particle:nth-child(4) { width: 50px; height: 50px; background: var(--primary); top: 30%; left: 70%; animation-delay: 1s; }
        .particle:nth-child(5) { width: 70px; height: 70px; background: var(--secondary); top: 50%; left: 50%; animation-delay: 3s; }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            25% { transform: translateY(-50px) rotate(90deg); }
            50% { transform: translateY(-100px) rotate(180deg); }
            75% { transform: translateY(-50px) rotate(270deg); }
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar { width: 10px; }
        ::-webkit-scrollbar-track { background: #f1f1f1; }
        ::-webkit-scrollbar-thumb { 
            background: linear-gradient(180deg, var(--primary), var(--secondary));
            border-radius: 10px;
        }
        ::-webkit-scrollbar-thumb:hover { background: var(--primary-dark); }

        /* Glass Effect */
        .glass {
            background: var(--glass);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(255,255,255,0.5);
        }

        /* Premium Button */
        .btn-premium {
            background: var(--gradient-hero);
            color: white;
            padding: 10px 30px;
            border-radius: 50px;
            border: none;
            font-weight: 700;
            font-size: 0.95rem;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            box-shadow: 0 10px 30px rgba(255, 71, 87, 0.3);
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn-premium::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
            transition: 0.5s;
            z-index: -1;
        }

        .btn-premium:hover::before {
            left: 100%;
        }

        .btn-premium:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 71, 87, 0.5);
        }

        .btn-premium:active {
            transform: translateY(-1px) scale(1.02);
        }

        /* Header */
        header {
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 2000;
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            padding: 20px 0;
        }

        header.scrolled {
            background: rgba(255, 255, 255, 0.98);
            backdrop-filter: blur(20px);
            padding: 15px 0;
            box-shadow: 0 5px 30px rgba(0,0,0,0.1);
        }

        nav {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 0 30px;
        }

        .logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.5rem;
            font-weight: 800;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: flex;
            align-items: center;
            gap: 12px;
            cursor: pointer;
            transition: 0.3s;
        }

        .logo:hover {
            transform: scale(1.05);
        }

        .logo i {
            font-size: 2rem;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: rotate 3s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .nav-links {
            display: flex;
            gap: 30px;
            list-style: none;
            align-items: center;
        }

        .nav-links a {
            text-decoration: none;
            color: var(--dark);
            font-weight: 600;
            font-size: 0.95rem;
            position: relative;
            transition: 0.3s;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--gradient-hero);
            transition: 0.3s;
            border-radius: 10px;
        }

        .nav-links a:hover::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: var(--primary);
            transform: translateY(-2px);
        }

        .nav-actions {
            display: flex;
            align-items: center;
            gap: 25px;
        }

        .cart-trigger {
            position: relative;
            cursor: pointer;
            font-size: 1.5rem;
            color: var(--dark);
            transition: 0.3s;
        }

        .cart-trigger:hover {
            color: var(--primary);
            transform: scale(1.15) rotate(10deg);
        }

        .cart-badge {
            position: absolute;
            top: -10px;
            right: -12px;
            background: var(--gradient-hero);
            color: white;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            font-size: 11px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            box-shadow: 0 2px 10px rgba(255, 71, 87, 0.5);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        .menu-toggle {
            display: none;
            font-size: 1.8rem;
            cursor: pointer;
            color: var(--dark);
            z-index: 2002;
            transition: 0.3s;
        }

        .menu-toggle:hover {
            color: var(--primary);
        }

        /* Hero Section */
        .hero {
            min-height: 80vh;
            display: flex;
            align-items: center;
            padding: 60px 20px 40px;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(255,71,87,0.1) 0%, transparent 70%);
            border-radius: 50%;
            animation: float 20s ease-in-out infinite;
        }

        .hero-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .hero-text {
            animation: fadeInUp 1s ease-out;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, rgba(255,71,87,0.1), rgba(255,107,129,0.1));
            padding: 12px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            color: var(--primary);
            margin-bottom: 25px;
            border: 2px solid rgba(255,71,87,0.2);
            animation: slideInLeft 1s ease-out 0.2s both;
        }

        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-badge i {
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .hero-text h1 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.8rem, 4vw, 3rem);
            font-weight: 900;
            line-height: 1.1;
            margin-bottom: 20px;
            color: var(--dark);
            animation: fadeInUp 1s ease-out 0.4s both;
        }

        .hero-text h1 .gradient-text {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
            display: inline-block;
        }

        .hero-text h1 .gradient-text::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 0;
            width: 100%;
            height: 8px;
            background: var(--gradient-hero);
            opacity: 0.3;
            border-radius: 10px;
        }

        .hero-text p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: #666;
            margin-bottom: 30px;
            max-width: 600px;
            animation: fadeInUp 1s ease-out 0.6s both;
        }

        .hero-btns {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
            animation: fadeInUp 1s ease-out 0.8s both;
        }

        .btn-secondary {
            background: white;
            color: var(--dark);
            padding: 10px 30px;
            border-radius: 50px;
            border: 2px solid var(--dark);
            font-weight: 700;
            cursor: pointer;
            transition: 0.4s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            text-decoration: none;
        }

        .btn-secondary:hover {
            background: var(--dark);
            color: white;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        .hero-stats {
            display: flex;
            gap: 30px;
            margin-top: 30px;
            animation: fadeInUp 1s ease-out 1s both;
        }

        .stat-item {
            text-align: center;
        }

        .stat-item h3 {
            font-size: 1.8rem;
            font-weight: 800;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 5px;
        }

        .stat-item p {
            font-size: 0.9rem;
            color: #666;
            font-weight: 600;
        }

        .hero-image {
            position: relative;
            animation: fadeInRight 1s ease-out 0.5s both;
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .hero-image-main {
            width: 100%;
            max-width: 600px;
            height: auto;
            border-radius: 30px;
            box-shadow: var(--shadow-lg);
            position: relative;
            z-index: 2;
            animation: floatImage 6s ease-in-out infinite;
        }

        @keyframes floatImage {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-20px); }
        }

        .hero-image::before {
            content: '';
            position: absolute;
            top: -30px;
            right: -30px;
            width: 300px;
            height: 300px;
            background: var(--gradient-2);
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            z-index: 1;
        }

        .hero-image::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 250px;
            height: 250px;
            background: var(--gradient-3);
            border-radius: 50%;
            filter: blur(80px);
            opacity: 0.3;
            z-index: 1;
        }

        /* Floating Cards on Hero */
        .floating-card {
            position: absolute;
            background: white;
            padding: 20px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
            display: flex;
            align-items: center;
            gap: 15px;
            animation: floatCard 4s ease-in-out infinite;
            z-index: 3;
        }

        @keyframes floatCard {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-15px); }
        }

        .floating-card-1 {
            top: 10%;
            right: -10%;
            animation-delay: 0s;
        }

        .floating-card-2 {
            bottom: 15%;
            left: -5%;
            animation-delay: 1s;
        }

        .floating-card i {
            font-size: 2rem;
            color: white;
            background: var(--gradient-hero);
            padding: 15px;
            border-radius: 15px;
        }

        .floating-card-content h4 {
            font-size: 1rem;
            margin-bottom: 5px;
            color: var(--dark);
        }

        .floating-card-content p {
            font-size: 0.85rem;
            color: #888;
        }

        /* Categories Section */
        .categories {
            padding: 60px 20px;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .categories::before {
            content: '';
            position: absolute;
            top: 0;
            left: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(46,204,113,0.05) 0%, transparent 70%);
        }

        .section-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
        }

        .section-badge {
            display: inline-block;
            background: linear-gradient(135deg, rgba(255,71,87,0.1), rgba(255,107,129,0.1));
            color: var(--primary);
            padding: 10px 25px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 20px;
            border: 2px solid rgba(255,71,87,0.2);
        }

        .section-header h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: clamp(1.5rem, 3vw, 2.4rem);
            font-weight: 900;
            margin-bottom: 12px;
            color: var(--dark);
        }

        .section-header p {
            font-size: 0.95rem;
            color: #666;
            max-width: 700px;
            margin: 0 auto;
        }

        .category-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .cat-card {
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            position: relative;
            cursor: pointer;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            box-shadow: var(--shadow-md);
        }

        .cat-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
            z-index: 1;
            transition: 0.5s;
        }

        .cat-card:hover::before {
            background: linear-gradient(to top, rgba(255,71,87,0.8), rgba(255,71,87,0.3));
        }

        .cat-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        .cat-card:hover img {
            transform: scale(1.15) rotate(2deg);
        }

        .cat-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
        }

        .cat-overlay {
            position: absolute;
            inset: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: flex-end;
            padding: 22px;
            color: white;
            z-index: 2;
        }

        .cat-overlay h3 {
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 6px;
            transition: 0.3s;
        }

        .cat-overlay p {
            opacity: 0;
            transform: translateY(20px);
            transition: 0.3s;
            text-align: center;
        }

        .cat-card:hover .cat-overlay p {
            opacity: 1;
            transform: translateY(0);
        }

        .cat-card:hover .cat-overlay h3 {
            transform: translateY(-5px);
        }

        /* Products Section */
        .products-section {
            padding: 60px 20px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
        }

        .filter-tabs {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-bottom: 40px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 10px 20px;
            border-radius: 50px;
            border: 2px solid #eee;
            background: white;
            cursor: pointer;
            font-weight: 600;
            font-size: 0.85rem;
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            color: var(--dark);
        }

        .filter-btn:hover {
            border-color: var(--primary);
            transform: translateY(-3px);
            box-shadow: var(--shadow-md);
        }

        .filter-btn.active {
            background: var(--gradient-hero);
            color: white;
            border-color: transparent;
            box-shadow: var(--shadow-glow);
        }

        .product-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 20px;
        }

        .product-card {
            background: white;
            border-radius: 20px;
            padding: 12px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
        }

        .product-card::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,71,87,0.05) 0%, transparent 70%);
            transform: scale(0);
            transition: 0.5s;
            pointer-events: none;
        }

        .product-card:hover::before {
            transform: scale(1);
        }

        .product-card:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-10px);
            border-color: var(--primary);
        }

        .img-container {
            width: 100%;
            height: 300px;
            border-radius: 15px;
            overflow: hidden;
            margin-bottom: 12px;
            position: relative;
            background: #f8f9fa;
        }

        .img-container img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: 0.5s;
        }

        .product-card:hover .img-container img {
            transform: scale(1.1) rotate(2deg);
        }

        .product-card .tag {
            position: absolute;
            top: 20px;
            left: 20px;
            background: var(--gradient-hero);
            color: white;
            padding: 6px 16px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 800;
            z-index: 1;
            box-shadow: var(--shadow-md);
            animation: slideInLeft 0.5s ease-out;
        }

        .stock-badge {
            position: absolute;
            top: 20px;
            right: 20px;
            background: rgba(255, 255, 255, 0.9);
            color: var(--dark);
            padding: 6px 12px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 700;
            z-index: 1;
            box-shadow: var(--shadow-md);
        }

        .stock-badge.low-stock { background: #fff3cd; color: #856404; }
        .stock-badge.out-of-stock { background: #f8d7da; color: #721c24; }

        .product-card h4 {
            font-size: 1.1rem;
            margin-bottom: 6px;
            color: var(--dark);
            font-weight: 700;
        }

        .product-rating {
            display: flex;
            align-items: center;
            gap: 5px;
            margin-bottom: 10px;
        }

        .product-rating i {
            color: #ffa500;
            font-size: 0.8rem;
        }

        .product-rating span {
            color: #888;
            font-size: 0.8rem;
            margin-left: 5px;
        }

        .price-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 10px;
            padding-top: 10px;
            border-top: 2px solid #f0f0f0;
        }

        .price {
            font-size: 1.1rem;
            font-weight: 800;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .product-actions {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-top: 12px;
            gap: 10px;
        }

        .qty-control {
            display: flex;
            align-items: center;
            gap: 8px;
            background: #f8f9fa;
            padding: 6px 12px;
            border-radius: 50px;
            border: 2px solid #eee;
            position: relative;
            z-index: 5;
        }

        .qty-btn-mini {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: none;
            background: white;
            cursor: pointer;
            font-weight: bold;
            color: var(--dark);
            box-shadow: var(--shadow-sm);
            transition: 0.3s;
            position: relative;
            z-index: 5;
        }

        .qty-btn-mini:hover {
            background: var(--primary);
            color: white;
            transform: scale(1.1);
        }

        .qty-val {
            font-weight: 700;
            font-size: 1rem;
            min-width: 30px;
            text-align: center;
        }

        .add-cart-btn {
            flex: 1;
            padding: 8px 20px;
            border-radius: 50px;
            border: none;
            background: var(--gradient-hero);
            color: white;
            cursor: pointer;
            font-weight: 700;
            transition: 0.3s;
            font-size: 0.9rem;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            position: relative;
            z-index: 5;
        }

        .add-cart-btn:hover {
            transform: scale(1.05);
            box-shadow: var(--shadow-glow);
        }

        .buy-now-btn {
            padding: 8px 20px;
            border-radius: 50px;
            border: 2px solid var(--accent);
            background: var(--accent);
            color: white;
            cursor: pointer;
            font-size: 0.9rem;
            font-weight: 700;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
            position: relative;
            z-index: 5;
        }

        .buy-now-btn:hover {
            background: #27ae60;
            transform: scale(1.05);
            box-shadow: 0 10px 30px rgba(46, 204, 113, 0.3);
        }

        /* Testimonials */
        .testimonials {
            padding: 60px 20px;
            background: white;
            position: relative;
            overflow: hidden;
        }

        .testimonials::before {
            content: '';
            position: absolute;
            bottom: -50%;
            right: -30%;
            width: 80%;
            height: 150%;
            background: radial-gradient(circle, rgba(255,165,0,0.05) 0%, transparent 70%);
        }

        .testimonial-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 25px;
            position: relative;
            z-index: 1;
        }

        .testimonial-card {
            background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
            padding: 20px;
            border-radius: 20px;
            position: relative;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 2px solid #eee;
            box-shadow: var(--shadow-sm);
        }

        .testimonial-card::before {
            content: '"';
            position: absolute;
            top: 20px;
            right: 30px;
            font-size: 8rem;
            color: rgba(255, 71, 87, 0.05);
            font-family: Georgia, serif;
            line-height: 1;
        }

        .testimonial-card:hover {
            transform: translateY(-10px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary);
        }

        .testimonial-header {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 15px;
        }

        .testimonial-img {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            object-fit: cover;
            border: 3px solid var(--primary);
            box-shadow: var(--shadow-md);
        }

        .user-info h5 {
            font-size: 0.95rem;
            margin-bottom: 3px;
            color: var(--dark);
            font-weight: 700;
        }

        .user-info span {
            font-size: 0.8rem;
            color: #888;
            font-weight: 500;
        }

        .stars {
            color: #ffa500;
            font-size: 0.9rem;
            margin-bottom: 12px;
            display: flex;
            gap: 5px;
        }

        .stars i {
            animation: starPulse 1s ease-in-out infinite;
        }

        .stars i:nth-child(1) { animation-delay: 0s; }
        .stars i:nth-child(2) { animation-delay: 0.1s; }
        .stars i:nth-child(3) { animation-delay: 0.2s; }
        .stars i:nth-child(4) { animation-delay: 0.3s; }
        .stars i:nth-child(5) { animation-delay: 0.4s; }

        @keyframes starPulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.2); }
        }

        .quote-text {
            color: #555;
            line-height: 1.6;
            font-style: italic;
            font-size: 0.9rem;
            position: relative;
            z-index: 1;
        }

        /* About Section */
        .about-container {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .about-img {
            position: relative;
        }

        .about-img img {
            width: 100%;
            border-radius: 30px;
            box-shadow: var(--shadow-lg);
        }

        .about-img::before {
            content: '';
            position: absolute;
            top: -20px;
            left: -20px;
            width: 100%;
            height: 100%;
            border: 3px solid var(--primary);
            border-radius: 30px;
            z-index: -1;
        }

        .about-text h2 {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 2rem;
            margin-bottom: 18px;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
        }

        .about-text p {
            color: #666;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 0.95rem;
        }

        .stats-box {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
            margin-top: 25px;
        }

        .stat-card {
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            padding: 20px 16px;
            border-radius: 20px;
            text-align: center;
            border: 2px solid #eee;
            transition: 0.3s;
        }

        .stat-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--shadow-md);
            border-color: var(--primary);
        }

        .stat-card h3 {
            font-size: 1.8rem;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 6px;
            font-weight: 900;
        }

        .stat-card p {
            font-size: 0.85rem;
            font-weight: 600;
            color: #666;
        }

        /* Contact Section */
        .contact-container {
            padding: 60px 20px;
            max-width: 1200px;
            margin: 0 auto;
        }

        .contact-wrapper {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 0;
            background: white;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 2px solid #eee;
        }

        .contact-info {
            background: var(--gradient-hero);
            padding: 30px;
            color: white;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

        .contact-info::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
        }

        .contact-info h2 {
            font-size: 1.8rem;
            margin-bottom: 25px;
            font-weight: 900;
            position: relative;
            z-index: 1;
        }

        .info-item {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 20px;
            position: relative;
            z-index: 1;
        }

        .info-item i {
            font-size: 1.2rem;
            background: rgba(255,255,255,0.2);
            width: 48px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            backdrop-filter: blur(10px);
        }

        .info-item h4 {
            font-size: 0.95rem;
            margin-bottom: 3px;
        }

        .contact-form {
            padding: 30px;
        }

        .form-group {
            margin-bottom: 16px;
        }

        .form-group label {
            display: block;
            margin-bottom: 6px;
            font-weight: 600;
            font-size: 0.9rem;
            color: var(--dark);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            width: 100%;
            padding: 12px 16px;
            border: 2px solid #eee;
            border-radius: 10px;
            font-family: inherit;
            transition: 0.3s;
            font-size: 0.9rem;
            background: white;
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 4px rgba(255, 71, 87, 0.1);
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
            color: white;
            padding: 50px 20px 30px;
            position: relative;
            overflow: hidden;
        }

        footer::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -20%;
            width: 100%;
            height: 150%;
            background: radial-gradient(circle, rgba(255,71,87,0.1) 0%, transparent 70%);
        }

        .footer-grid {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
            position: relative;
            z-index: 1;
        }

        .footer-logo {
            font-family: 'Space Grotesk', sans-serif;
            font-size: 1.6rem;
            font-weight: 800;
            margin-bottom: 15px;
            display: block;
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .footer-links h4 {
            margin-bottom: 18px;
            font-size: 1rem;
            font-weight: 700;
        }

        .footer-links ul {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #a4a4a4;
            text-decoration: none;
            transition: 0.3s;
            display: inline-block;
        }

        .footer-links a:hover {
            color: white;
            transform: translateX(5px);
        }

        .newsletter-form {
            display: flex;
            gap: 8px;
            margin-top: 12px;
        }

        .newsletter-form input {
            flex: 1;
            padding: 12px 16px;
            border-radius: 50px;
            border: 2px solid rgba(255,255,255,0.1);
            background: rgba(255,255,255,0.05);
            color: white;
            font-family: inherit;
        }

        .newsletter-form input::placeholder {
            color: rgba(255,255,255,0.5);
        }

        .newsletter-form button {
            padding: 12px 24px;
            border-radius: 50px;
            border: none;
            background: var(--gradient-hero);
            color: white;
            cursor: pointer;
            font-weight: 600;
            transition: 0.3s;
        }

        .newsletter-form button:hover {
            transform: scale(1.05);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 25px;
            text-align: center;
            color: #a4a4a4;
            font-size: 0.85rem;
            position: relative;
            z-index: 1;
        }

        /* Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            right: -400px;
            top: 0;
            width: 400px;
            height: 100%;
            background: white;
            z-index: 3000;
            box-shadow: -10px 0 50px rgba(0,0,0,0.2);
            transition: 0.5s cubic-bezier(0.77, 0, 0.175, 1);
            padding: 20px;
            display: flex;
            flex-direction: column;
        }

        .cart-sidebar.active {
            right: 0;
        }

        .cart-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
            padding-bottom: 15px;
            border-bottom: 2px solid #eee;
        }

        .cart-header h3 {
            font-size: 1.4rem;
            font-weight: 800;
        }

        .close-cart {
            cursor: pointer;
            font-size: 1.4rem;
            color: #888;
            transition: 0.3s;
        }

        .close-cart:hover {
            color: var(--primary);
            transform: rotate(90deg);
        }

        #cartItems {
            flex: 1;
            overflow-y: auto;
            padding-right: 10px;
        }

        #cartItems::-webkit-scrollbar {
            width: 6px;
        }

        #cartItems::-webkit-scrollbar-thumb {
            background: var(--primary);
            border-radius: 10px;
        }

        .cart-item {
            display: flex;
            gap: 12px;
            margin-bottom: 15px;
            padding: 14px;
            background: #f8f9fa;
            border-radius: 15px;
            align-items: center;
            transition: 0.3s;
        }

        .cart-item:hover {
            background: #f0f0f0;
            transform: translateX(-5px);
        }

        .cart-item img {
            width: 60px;
            height: 60px;
            border-radius: 10px;
            object-fit: cover;
        }

        .cart-item-info {
            flex: 1;
        }

        .cart-item-info h5 {
            font-size: 0.85rem;
            margin-bottom: 4px;
            color: var(--dark);
        }

        .cart-item-info span {
            font-size: 0.8rem;
            color: var(--primary);
            font-weight: 700;
        }

        .remove-item {
            cursor: pointer;
            color: #ccc;
            transition: 0.3s;
            font-size: 1rem;
        }

        .remove-item:hover {
            color: var(--primary);
            transform: scale(1.2);
        }

        .cart-footer {
            border-top: 2px solid #eee;
            padding-top: 20px;
        }

        .total-row {
            display: flex;
            justify-content: space-between;
            font-size: 1.3rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .total-row span:last-child {
            background: var(--gradient-hero);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        /* Checkout Modal */
        .checkout-modal {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.7);
            z-index: 4000;
            display: none;
            justify-content: center;
            align-items: center;
            backdrop-filter: blur(10px);
            opacity: 0;
            transition: opacity 0.3s;
        }

        .checkout-modal.active {
            display: flex;
            opacity: 1;
        }

        .checkout-content {
            background: white;
            width: 90%;
            max-width: 550px;
            border-radius: 20px;
            padding: 25px;
            position: relative;
            transform: scale(0.8);
            transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            max-height: 90vh;
            overflow-y: auto;
        }

        .checkout-modal.active .checkout-content {
            transform: scale(1);
        }

        .checkout-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
            border-bottom: 2px solid #eee;
            padding-bottom: 15px;
        }

        .checkout-header h3 {
            font-size: 1.4rem;
            font-weight: 800;
        }

        #checkoutOrderSummary {
            background: #f8f9fa;
            padding: 14px;
            border-radius: 15px;
            margin-bottom: 20px;
            max-height: 180px;
            overflow-y: auto;
            border: 2px solid #eee;
        }

        /* Fix image size in checkout summary */
        #checkoutOrderSummary img {
            width: 50px;
            height: 50px;
            width: 50px !important;
            height: 50px !important;
            max-width: 50px !important;
            object-fit: cover;
            border-radius: 8px;
        }

        #checkoutOrderSummary .cart-item {
            background: white;
            padding: 10px;
            margin-bottom: 10px;
            border: 1px solid #eee;
        }

        .payment-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 10px;
            margin: 15px 0 20px;
        }

        .payment-card {
            border: 2px solid #eee;
            border-radius: 15px;
            padding: 14px 12px;
            text-align: center;
            cursor: pointer;
            transition: 0.3s;
        }

        .payment-card i {
            font-size: 1.5rem;
            margin-bottom: 6px;
            color: #666;
        }

        .payment-card:hover {
            border-color: var(--secondary);
            background: #fffdf5;
            transform: translateY(-5px);
        }

        .payment-card.selected {
            border-color: var(--primary);
            background: #fff0f1;
            color: var(--primary);
        }

        .payment-card.selected i {
            color: var(--primary);
        }

        /* Page Sections */
        .page-section {
            display: none;
            animation: fadeIn 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
        }

        .page-section.active {
            display: block;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Loading Screen */
        #loader {
            position: fixed;
            inset: 0;
            background: white;
            z-index: 9999;
            display: flex;
            justify-content: center;
            align-items: center;
            transition: 0.5s;
        }

        .spinner {
            width: 45px;
            height: 45px;
            border: 4px solid #f0f0f0;
            border-top: 4px solid var(--primary);
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            100% {
                transform: rotate(360deg);
            }
        }

        /* Mobile Responsive */
        @media (max-width: 1024px) {
            nav {
                padding: 0 40px;
            }

            .hero-container,
            .about-container {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .hero {
                padding: 100px 40px 60px;
                min-height: auto;
            }

            .hero-image {
                order: -1;
            }

            .floating-card {
                display: none;
            }
        }

        @media (max-width: 768px) {
            nav {
                padding: 0 20px;
            }

            .menu-toggle {
                display: block;
            }

            .nav-links {
                position: absolute;
                top: 100%;
                right: 20px;
                left: auto;
                width: 250px;
                height: auto;
                background: rgba(255, 255, 255, 0.95);
                backdrop-filter: blur(20px);
                border-radius: 20px;
                padding: 20px;
                box-shadow: 0 10px 40px rgba(0,0,0,0.15);
                border: 1px solid rgba(255,255,255,0.5);
                flex-direction: column;
                align-items: stretch;
                opacity: 0;
                visibility: hidden;
                transform: translateY(-10px) scale(0.95);
                transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
                z-index: 2001;
                margin-top: 15px;
            }

            .nav-links.active {
                opacity: 1;
                visibility: visible;
                transform: translateY(0) scale(1);
            }

            .nav-links li {
                margin: 5px 0;
                width: 100%;
                opacity: 1;
                transform: none;
            }

            .nav-links a {
                font-size: 1rem;
                color: var(--dark);
                display: block;
                padding: 12px 20px;
                border-radius: 12px;
                transition: 0.3s;
                font-weight: 600;
            }

            .nav-links a:hover {
                background: #f8f9fa;
                color: var(--primary);
                padding-left: 25px;
                box-shadow: var(--shadow-sm);
            }

            .nav-links a::after {
                display: none;
            }

            .hero,
            .categories,
            .products-section,
            .testimonials,
            .contact-container {
                padding: 60px 20px;
            }

            .hero-text h1 {
                font-size: 1.6rem;
            }

            .hero-btns {
                flex-direction: column;
            }

            .hero-stats {
                flex-direction: column;
                gap: 12px;
            }

            .category-grid,
            .testimonial-grid {
                grid-template-columns: 1fr;
            }

            /* Mobile Product Grid - 2 Columns & Compact Size */
            .product-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .product-card {
                padding: 12px;
                border-radius: 15px;
            }

            .img-container {
                height: 160px;
                margin-bottom: 8px;
            }

            .product-card h4 {
                font-size: 0.8rem;
                margin-bottom: 3px;
            }

            .product-rating {
                font-size: 0.7rem;
                margin-bottom: 6px;
            }

            .price {
                font-size: 0.95rem;
            }

            .product-card .tag {
                font-size: 0.6rem;
                padding: 4px 10px;
                top: 12px;
                left: 12px;
            }

            .product-actions {
                margin-top: 6px;
            }

            .qty-control {
                padding: 4px 8px;
            }

            /* Stack buttons on mobile */
            .product-card > div:last-child {
                flex-direction: column;
            }

            .cart-sidebar {
                width: 100%;
                right: -100%;
            }

            .contact-wrapper {
                grid-template-columns: 1fr;
            }

            .contact-info {
                padding: 40px 30px;
            }

            .contact-form {
                padding: 40px 30px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                text-align: center;
                gap: 40px;
            }

            .footer-links a:hover {
                transform: none;
            }

            .newsletter-form {
                flex-direction: column;
            }

            .payment-grid {
                grid-template-columns: 1fr;
            }

            .stats-box {
                grid-template-columns: 1fr;
            }

            .about-container {
                padding: 80px 20px;
            }

            .filter-tabs {
                gap: 10px;
            }

            .filter-btn {
                padding: 8px 15px;
                font-size: 0.8rem;
            }

            .section-header h2 {
                font-size: 1.4rem;
            }

            .section-header p {
                font-size: 0.85rem;
            }
            
            .cat-card {
                height: 180px;
            }

            .product-card h4 {
                font-size: 0.9rem;
            }
            
            .admin-table {
                border: none;
                background: transparent;
                box-shadow: none;
            }
            .admin-table thead { display: none; }
            .admin-table tbody, .admin-table tr, .admin-table td {
                display: block;
                width: 100%;
            }
            .admin-table tr {
                margin-bottom: 20px;
                background: white;
                border-radius: 15px;
                padding: 20px;
                box-shadow: 0 5px 15px rgba(0,0,0,0.05);
                border: 1px solid #eee;
            }
            .admin-table td {
                text-align: right;
                padding: 10px 0;
                border-bottom: 1px solid #f0f0f0;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            .admin-table td:last-child {
                border-bottom: none;
                justify-content: flex-end;
                gap: 10px;
            }
            .admin-table td::before {
                content: attr(data-label);
                font-weight: 700;
                color: #666;
            }

            /* Mobile Dashboard Fixes */
            #admin-dashboard-page {
                padding: 20px !important;
            }

            .dashboard-header {
                flex-direction: column;
                align-items: stretch;
                text-align: center;
                padding: 20px;
            }

            .dashboard-header > div:last-child {
                width: 100%;
                flex-direction: column;
            }

            .dashboard-header button {
                width: 100%;
                justify-content: center;
            }

            .table-container {
                padding: 15px;
            }

            .table-container > div:first-child {
                flex-direction: column;
                align-items: stretch !important;
                gap: 15px;
            }

            .table-container button {
                width: 100%;
                justify-content: center;
            }
        }

        /* Admin Styles */
        .admin-table {
            width: 100%;
            border-collapse: collapse;
            margin-top: 15px;
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .admin-table th, .admin-table td {
            padding: 12px;
            text-align: left;
            border-bottom: 1px solid #eee;
        }
        .admin-table th {
            background: var(--dark);
            color: white;
        }
        .action-btn {
            padding: 6px 10px;
            border-radius: 6px;
            border: none;
            cursor: pointer;
            color: white;
            margin-right: 3px;
            transition: 0.3s;
            font-size: 0.8rem;
        }
        .btn-edit { background: var(--secondary); }
        .btn-delete { background: var(--primary); }
        .btn-edit:hover, .btn-delete:hover { opacity: 0.8; transform: scale(1.05); }

        .admin-panel {
            background: white;
            padding: 20px;
            border-radius: 20px;
            box-shadow: var(--shadow-lg);
        }
        .admin-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 15px;
            flex-wrap: wrap;
            gap: 10px;
        }

        #admin-dashboard .contact-container {
            padding-top: 40px;
            min-height: 100vh;
        }

        /* Admin Specific Styles */
        .login-card {
            background: white; padding: 20px; border-radius: 15px;
            box-shadow: var(--shadow-lg); width: 100%; max-width: 360px; text-align: center;
            margin: 0 auto;
        }
        .login-card h2 {
            font-size: 1.2rem; margin-bottom: 15px;
        }
        .login-card .form-group {
            margin-bottom: 12px;
        }
        .dashboard-header {
            display: flex; justify-content: space-between; align-items: center;
            margin-bottom: 20px; background: white; padding: 15px 20px;
            border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05);
            flex-wrap: wrap; gap: 10px;
        }
        .table-container { background: white; padding: 20px; border-radius: 15px; box-shadow: 0 5px 20px rgba(0,0,0,0.05); overflow-x: auto; }
        .admin-table { width: 100%; border-collapse: collapse; }
        .admin-table th, .admin-table td { padding: 15px; text-align: left; border-bottom: 1px solid #eee; }
        .admin-table th { background: var(--dark); color: white; border-radius: 5px; }
        .admin-table td img { width: 50px; height: 50px; border-radius: 10px; object-fit: cover; }
        
        .admin-modal {
            position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 5000;
            display: none; align-items: center; justify-content: center;
        }
        .admin-modal.active { display: flex; }
        .admin-modal-content {
            background: white; padding: 20px; border-radius: 15px; width: 90%; max-width: 500px; max-height: 90vh; overflow-y: auto;
        }
        #admin-login-page.active {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .bank-option,
        .ewallet-option {
            border: 2px solid #ddd;
            padding: 15px;
            border-radius: 10px;
            cursor: pointer;
            text-align: center;
            transition: all 0.3s ease;
            background: white;
        }

        .bank-option:hover,
        .ewallet-option:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(255, 71, 87, 0.15);
            border-color: #ff4757;
        }

        .bank-option.selected,
        .ewallet-option.selected {
            border: 2px solid #ff4757;
            background: #fff5f5;
        }

        .bank-selection,
        .ewallet-selection {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 10px;
        }

        #bankInfo,
        #ewalletInfo {
            margin-top: 10px;
            animation: slideDown 0.3s ease;
        }

        @keyframes slideDown {
            from {
                opacity: 0;
                transform: translateY(-10px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        /* Virtual Account Animations */
        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        @keyframes pulse {
            0%, 100% {
                box-shadow: 0 0 0 0 rgba(255, 71, 87, 0.7);
            }
            50% {
                box-shadow: 0 0 0 10px rgba(255, 71, 87, 0);
            }
        }

        /* Virtual Account Styling */
        .virtual-account-container {
            background: linear-gradient(135deg, #fff5f7, #fff);
            padding: 12px;
            border-radius: 10px;
            border: 1px solid var(--primary);
            animation: slideIn 0.5s ease;
        }

        .va-number-display {
            background: white;
            padding: 8px 12px;
            border-radius: 8px;
            border: 1px dashed var(--primary);
            margin: 8px 0;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .va-number {
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--primary);
            letter-spacing: 1px;
            word-spacing: 2px;
            font-family: 'Courier New', monospace;
            margin: 0;
        }

        .copy-btn {
            background: var(--primary);
            color: white;
            border: none;
            padding: 5px 12px;
            border-radius: 50px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
            font-size: 0.75rem;
        }

        .copy-btn:hover {
            background: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 3px 10px rgba(255, 71, 87, 0.2);
        }

        .copy-btn:active {
            transform: translateY(0);
        }

        .va-info-box {
            background: #f0f8ff;
            padding: 8px 12px;
            border-radius: 8px;
            border-left: 3px solid #0052cc;
            margin: 10px 0;
            font-size: 0.8rem;
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            align-items: center;
        }

        .va-info-box strong {
            display: inline-block;
            margin-right: 5px;
            margin-bottom: 0;
        }

        .payment-instructions {
            background: white;
            padding: 12px;
            border-radius: 8px;
            border: 1px solid #eee;
            margin-top: 10px;
        }

        .payment-instructions h6 {
            margin: 0 0 8px 0;
            color: var(--dark);
            font-size: 0.9rem;
            font-weight: 700;
        }

        .instruction-step {
            margin-bottom: 5px;
            font-size: 0.8rem;
            color: #555;
            line-height: 1.4;
        }

        .payment-note {
            background: #fffacd;
            padding: 8px;
            border-radius: 6px;
            margin-top: 10px;
            border-left: 3px solid #ffa500;
        }

        .payment-note p {
            font-size: 0.75rem;
            color: #d97706;
            margin: 0;
            font-weight: 600;
        }

        /* Responsive untuk mobile */
        @media (max-width: 768px) {
            .bank-selection,
            .ewallet-selection {
                grid-template-columns: repeat(2, 1fr);
            }

            .va-number {
                font-size: 1.1rem;
                letter-spacing: 1px;
            }
        }

        /* Small Mobile Devices (Phones) */
        @media (max-width: 480px) {
            .product-grid {
                grid-template-columns: 1fr; /* 1 Kolom agar gambar produk lebih jelas */
            }

            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-btns {
                flex-direction: column;
                width: 100%;
            }

            .hero-btns .btn-secondary,
            .hero-btns .btn-premium {
                width: 100%;
                justify-content: center;
            }

            .checkout-content {
                padding: 25px 20px;
                width: 95%; /* Modal hampir full screen */
            }

            .cart-sidebar {
                width: 100%; /* Sidebar full width */
                padding: 20px;
            }

            .va-number {
                font-size: 1rem;
                letter-spacing: 1px;
            }

            .payment-instructions {
                padding: 10px;
            }
        }
