/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f4f7f6;
    overflow-x: hidden;
}

/* Header */
/* Header */
header {
    background: linear-gradient(to right, #FFC100, #FF7400, #FF0000);
    color: white;
    padding: 1.2rem 1.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: bold;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: transform 0.3s ease;
    display: inline-block;
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    transform: translateY(-3px);
    border-bottom-color: white;
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

/* ---------- RESPONSIVE NAVBAR ---------- */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 220px;
        height: calc(100vh - 70px);
        background: linear-gradient(to bottom, #FF7400, #FF0000);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1.8rem;
        padding-top: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .navbar-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}


/* ---------- RESPONSIVE NAVBAR ---------- */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        right: -100%;
        width: 220px;
        height: calc(100vh - 70px);
        background: linear-gradient(to bottom, #FF7400, #FF0000);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        gap: 1.8rem;
        padding-top: 2rem;
        transition: right 0.3s ease;
        z-index: 999;
    }

    .nav-menu.active {
        right: 0;
    }

    .hamburger {
        display: block;
    }

    .navbar-right {
        display: flex;
        align-items: center;
        gap: 1rem;
    }
}



        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #e2a576de 0%, #dbc066 100%);
            padding: 5rem 2rem;
            text-align: center;
            animation: fadeIn 1s ease;
        }

        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }

        .hero h1 {
            font-size: 3.5rem;
            color: #333;
            margin-bottom: 1rem;
            animation: slideUp 0.8s ease;
        }

        @keyframes slideUp {
            from {
                transform: translateY(30px);
                opacity: 0;
            }
            to {
                transform: translateY(0);
                opacity: 1;
            }
        }

        .hero p {
            font-size: 1.3rem;
            color: #666;
            margin-bottom: 2rem;
            animation: slideUp 1s ease;
        }

        .cta-button {
            background: linear-gradient(to right,#FF0000);
            color: white;
            padding: 1rem 3rem;
            border: none;
            border-radius: 50px;
            font-size: 1.1rem;
            cursor: pointer;
            transition: all 0.3s ease;
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
            }
            50% {
                transform: scale(1.05);
            }
        }

        .cta-button:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, #e2a576de 0%, #dbc066 100%);
            box-shadow: 0 10px 20px rgba(0,0,0,0.2);}

        /* Categories Section */
        .categories {
            padding: 4rem 2rem;
            max-width: 1200px;
            margin: 0 auto;
        }

        .categories h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .category-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 2rem;
        }

        .category-card {
            background: white;
            padding: 2rem;
            border-radius: 15px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            animation: fadeInUp 0.6s ease;
            animation-fill-mode: both;
        }

        .category-card:nth-child(1) { animation-delay: 0.1s; }
        .category-card:nth-child(2) { animation-delay: 0.2s; }
        .category-card:nth-child(3) { animation-delay: 0.3s; }
        .category-card:nth-child(4) { animation-delay: 0.4s; }
        .category-card:nth-child(5) { animation-delay: 0.5s; }
        .category-card:nth-child(6) { animation-delay: 0.6s; }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .category-card:hover {
            transform: translateY(-10px);
            background: linear-gradient(135deg, #e2a576de 0%, #dbc066 100%);
        }

        .category-icon {
            font-size: 3rem;
            margin-bottom: 1rem;
        }

        .category-card h3 {
            color: #333;
            font-size: 1.5rem;
            margin-bottom: 0.5rem;
        }

        .category-card p {
            color: #666;
        }

        /* Footer */
        footer {
            background: linear-gradient(135deg, #e2a576de 0%, #dbc066 100%);
            color: white;
            text-align: center;
            padding: 2rem;
            margin-top: 4rem;
        }

        footer p {
            margin: 0.5rem 0;
        }

        /* Products Section */
        .products {
            padding: 4rem 2rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .products h2 {
            text-align: center;
            font-size: 2.5rem;
            margin-bottom: 3rem;
            color: #333;
        }

        .price-section {
            margin-bottom: 4rem;
        }

        .section-title {
            font-size: 2rem;
            color: #333;
            margin-bottom: 2rem;
            padding-bottom: 0.5rem;
            border-bottom: 3px solid #667eea;
        }

        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 2rem;
        }

        .product-card {
            background: white;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 15px #e2a576de 0%, #dbc066 100%;
            transition: all 0.3s ease;
            animation: fadeInUp 0.6s ease;
        }

        .product-card.premium {
            border: 3px solid #ffa200;
            box-shadow: 0 0 12px 2px #FFD70044;
            background: linear-gradient(135deg, #fffbe6 0%, #ffffff 100%);
        }

.product-card.premium .price {
    font-size: 1.8rem;
    font-weight: bold;
    background: linear-gradient(to right, #ff8400, #FF7400, #FF0000);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    display: inline-block;
}

.product-card.premium .fake-price {
    font-size: 1.1rem;
    color: #111;
    text-decoration: line-through;
    text-decoration-color: #FF0000;
    margin-left: 12px;
    vertical-align: middle;
    font-weight: 500;
    opacity: 0.7;
        }

        .mrp{
            display: flex;
            gap: 8px;
        }

        .price2{
            font-size: 1.9rem;
    color: #111;
    text-decoration: line-through;
    text-decoration-color: #FF0000;
    margin-left: 12px;
    vertical-align: middle;
    font-weight: 500;
    opacity: 0.7;
        }

        .product-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }

        .product-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .product-card:hover img {
            transform: scale(1.1);
        }

        .product-info {
            padding: 1.5rem;
        }

        .product-info h4 {
            font-size: 1.3rem;
            color: #333;
            margin-bottom: 0.5rem;
        }

        .product-desc {
            color: #666;
            font-size: 0.9rem;
            margin-bottom: 1rem;
        }

        .price {
            font-size: 1.8rem;
            color: #667eea;
            font-weight: bold;
            margin-bottom: 1rem;
        }

        .button-group {
            display: flex;
            gap: 0.5rem;
        }

        .buy-btn, .cart-btn {
            flex: 1;
            padding: 0.8rem;
            border: none;
            border-radius: 8px;
            font-size: 0.9rem;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .buy-btn {
    background: linear-gradient(to right,#FFC100,#FF7400,#FF0000);
            color: white;
        }

        .buy-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.4);
        }

        .cart-btn {
            background: #f0f0f0;
            color: #333;
        }

        .cart-btn:hover {
            background: #e0e0e0;
            transform: scale(1.05);
        }

        a{
            text-decoration: none;
        }