
        body {
            font-family: 'Poppins', sans-serif;
            background: #f8f9fa;
        }

        .navbar-brand {
            font-weight: 700;
            font-size: 1.5rem;
            color: #0077ff !important;
        }

        .search-box input {
            border-radius: 20px 0 0 20px;
        }

        .search-box button {
            border-radius: 0 20px 20px 0;
        }

        .product-card {
            border-radius: 15px;
            overflow: hidden;
            transition: 0.3s;
            background: #fff;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
        }

        .product-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
        }

        .product-card img {
            height: 220px;
            object-fit: cover;
        }

        .product-card .card-body {
            text-align: center;
        }

        .rating {
            color: #ffc107;
        }

        .footer {
            background: #212529;
            color: #ddd;
            padding: 40px 0;
        }

        .footer a {
            color: #bbb;
            text-decoration: none;
        }

        .footer a:hover {
            color: #fff;
        }

        .footer .left p {
    text-align: left;
}

        .badge-discount {
            position: absolute;
            top: 12px;
            right: 12px;
            background: linear-gradient(135deg, #0077ff 0%, #0056cc 100%);
            color: #fff;
            padding: 6px 14px;
            border-radius: 20px;
            font-size: 0.85rem;
            font-weight: 600;
            z-index: 10;
            box-shadow: 0 2px 8px rgba(0, 119, 255, 0.3);
            letter-spacing: 0.5px;
            transition: all 0.3s ease;
        }

        .badge-discount:hover {
            transform: scale(1.05);
            box-shadow: 0 4px 12px rgba(0, 119, 255, 0.4);
        }

        /* Submenu Styling */
        .submenu-wrapper {
            min-width: 400px;
            padding: 20px;
            border: none;
            border-radius: 8px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        .submenu-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 15px;
        }

        .submenu-item {
            display: block;
            padding: 12px;
            text-align: center;
            color: #333;
            text-decoration: none;
            border-radius: 6px;
            background-color: #f8f9fa;
            transition: all 0.3s ease;
            font-size: 0.95rem;
            font-weight: 500;
        }

        .submenu-item:hover {
            background-color: #e3f2fd;
            color: #0077ff;
            transform: translateY(-2px);
            box-shadow: 0 2px 8px rgba(0, 119, 255, 0.2);
        }

        /* Mobile View - 2 items per line */
        @media (max-width: 768px) {
            .submenu-wrapper {
                min-width: auto;
                width: auto;
            }

            .submenu-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .submenu-item {
                padding: 10px;
                font-size: 0.9rem;
            }
        }

        /* Extra small devices */
        @media (max-width: 576px) {
            .submenu-wrapper {
                padding: 15px;
            }

            .submenu-grid {
                gap: 10px;
            }

            .submenu-item {
                padding: 8px;
                font-size: 0.85rem;
            }
        }

        /* Hero Button */
        .btn-gold {
            background: linear-gradient(135deg, #f5c518 0%, #e0a800 100%);
            color: #1a1a1a;
            font-weight: 700;
            border: none;
            padding: 12px 32px;
            border-radius: 30px;
            font-size: 1rem;
            letter-spacing: 0.5px;
            box-shadow: 0 4px 16px rgba(245, 197, 24, 0.55);
            transition: all 0.3s ease;
        }

        .btn-gold:hover,
        .btn-gold:focus {
            background: linear-gradient(135deg, #ffe066 0%, #f5c518 100%);
            color: #1a1a1a;
            box-shadow: 0 6px 22px rgba(245, 197, 24, 0.75);
            transform: translateY(-2px);
        }

        /* Hero Section */
        .hero {
            min-height: 480px;
            position: relative;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: rgba(0, 0, 0, 0.45);
        }

        .hero-content {
            position: relative;
            z-index: 1;
            color: #fff;
            text-align: center;
        }

        .hero-content h1 {
            font-size: 2.8rem;
            font-weight: 700;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
        }

        .hero-content .lead {
            font-size: 1.2rem;
            text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 320px;
            }

            .hero-content h1 {
                font-size: 1.8rem;
            }

            .hero-content .lead {
                font-size: 1rem;
            }
        }