        :root {
            --primary-red: #E63946;
            --festive-green: #2A9D8F;
            --snow-white: #FFFFFF;
            --dark-text: #111111;
            --bg-gray: #F8F9FA;
            --bg-pink: #FFF5F5;
            --shadow: 0 10px 30px rgba(0,0,0,0.1);
            --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Plus Jakarta Sans', sans-serif;
        }

        body {
            background-color: var(--snow-white);
            color: var(--dark-text);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, .festive-font {
            font-family: 'Montserrat', sans-serif;
            text-transform: uppercase;
        }

        /* --- Animations --- */
        @keyframes float {
            0% { transform: translateY(0px) rotate(0deg); }
            50% { transform: translateY(-10px) rotate(1deg); }
            100% { transform: translateY(0px) rotate(0deg); }
        }

        @keyframes ticker {
            0% { transform: translateX(0); }
            100% { transform: translateX(-50%); }
        }

        @keyframes ribbonBounce {
            0%, 100% { transform: rotate(45deg) scale(1); }
            50% { transform: rotate(45deg) scale(1.15); }
        }

        /* --- Top Strip --- */
        .top-strip {
            background: var(--dark-text);
            color: white;
            padding: 10px 0;
            overflow: hidden;
            white-space: nowrap;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 1px;
        }

        .ticker-wrap {
            display: inline-block;
            animation: ticker 25s linear infinite;
        }

        /* --- Header --- */
        header {
            background: white;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(0,0,0,0.05);
        }

        .header-main {
            max-width: 1400px;
            margin: 0 auto;
            padding: 15px 5%;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 1.6rem;
            font-weight: 900;
            color: var(--primary-red);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
            cursor: pointer;
        }

        nav {
            display: flex;
            gap: 25px;
        }

        nav a {
            text-decoration: none;
            color: var(--dark-text);
            font-weight: 700;
            font-size: 0.9rem;
            transition: var(--transition);
            cursor: pointer;
        }

        nav a:hover { color: var(--primary-red); }

        .search-bar {
            background: var(--bg-gray);
            border-radius: 50px;
            padding: 8px 20px;
            display: flex;
            align-items: center;
            width: 250px;
        }

        .search-bar input {
            border: none;
            background: transparent;
            outline: none;
            width: 100%;
            font-size: 0.85rem;
        }

        .header-actions {
            display: flex;
            gap: 20px;
            align-items: center;
        }

        .icon-btn {
            position: relative;
            background: none;
            border: none;
            cursor: pointer;
            font-size: 1.3rem;
        }

        .badge {
            position: absolute;
            top: -5px;
            right: -8px;
            background: var(--primary-red);
            color: white;
            font-size: 0.6rem;
            padding: 2px 6px;
            border-radius: 20px;
            font-weight: 900;
        }

        /* --- Hero --- */
        .hero {
            position: relative;
            background: linear-gradient(rgba(230, 57, 70, 0.05), rgba(42, 157, 143, 0.05)), url('https://img.fantaskycdn.com/65816cb356eacfbc2e9d16d91ecc660a_900x.jpeg');
            background-size: cover;
            background-position: center;
            padding: 120px 5%;
            display: flex;
            align-items: center;
            gap: 60px;
            min-height: 85vh;
        }

        .hero-content { flex: 1; max-width: 650px; z-index: 2; }

        .hero h1 {
            font-size: 5rem;
            line-height: 0.95;
            color: var(--primary-red);
            margin-bottom: 25px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }

        .countdown {
            display: flex;
            gap: 15px;
            margin: 40px 0;
        }

        .time-box {
            background: var(--dark-text);
            color: white;
            padding: 15px;
            border-radius: 15px;
            min-width: 85px;
            text-align: center;
        }

        .time-box span { font-size: 2rem; font-weight: 900; display: block; }
        .time-box label { font-size: 0.7rem; opacity: 0.7; font-weight: 700; }

        .hero-btns { display: flex; gap: 20px; }
        
        .btn {
            padding: 18px 40px;
            border-radius: 50px;
            font-weight: 800;
            text-transform: uppercase;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        .btn-red { background: var(--primary-red); color: white; }
        .btn-outline { background: transparent; border: 2px solid var(--primary-red); color: var(--primary-red); }
        .btn:hover { transform: translateY(-5px); box-shadow: 0 10px 20px rgba(230, 57, 70, 0.3); }

        .hero-visual {
            flex: 1;
            position: relative;
            height: 500px;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .stacked-card {
            position: absolute;
            width: 320px;
            height: 400px;
            background: white;
            border-radius: 30px;
            box-shadow: var(--shadow);
            padding: 40px;
            text-align: center;
            display: flex;
            flex-direction: column;
            justify-content: center;
            animation: float 4s ease-in-out infinite;
        }

        .card-1 { transform: rotate(-8deg) translateX(-40px); z-index: 1; background: var(--festive-green); color: white; }
        .card-2 { transform: rotate(4deg); z-index: 3; border: 5px solid var(--primary-red); animation-delay: 0.5s; }
        .card-3 { transform: rotate(15deg) translateX(40px); z-index: 2; background: var(--primary-red); color: white; animation-delay: 1s; }

        /* --- Sections --- */
        section { padding: 100px 5%; }
        .section-header { text-align: center; margin-bottom: 60px; }
        .section-header h2 { font-size: 2.8rem; margin-bottom: 10px; }

        /* --- Deal Cards --- */
        .deals-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 35px;
            max-width: 1400px;
            margin: 0 auto;
        }

        .deal-card {
            background: white;
            border-radius: 25px;
            overflow: hidden;
            position: relative;
            box-shadow: 0 5px 20px rgba(0,0,0,0.03);
            transition: var(--transition);
            border: 1px solid #f0f0f0;
        }

        .deal-card:hover { transform: translateY(-15px); box-shadow: var(--shadow); }

        .ribbon {
            position: absolute;
            top: 15px;
            right: -35px;
            background: var(--primary-red);
            color: white;
            padding: 5px 45px;
            transform: rotate(45deg);
            font-size: 0.75rem;
            font-weight: 900;
            z-index: 10;
            animation: ribbonBounce 2s infinite ease-in-out;
        }

        .card-img-wrap { height: 250px; overflow: hidden; position: relative; }
        .card-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
        .deal-card:hover .card-img-wrap img { transform: scale(1.1); }

        .card-info { padding: 30px; }
        .card-info h3 { font-size: 1.2rem; margin-bottom: 8px; }
        .card-info p { font-size: 0.9rem; color: #666; margin-bottom: 20px; line-height: 1.5; }

        .price-row { display: flex; justify-content: space-between; align-items: center; }
        .price { font-size: 1.4rem; font-weight: 900; color: var(--primary-red); }
        .old-price { text-decoration: line-through; font-size: 0.9rem; color: #aaa; margin-left: 8px; }

        /* --- Category Tiles --- */
        .cat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 25px; }
        
        .cat-box {
            background: white;
            border-radius: 20px;
            padding: 40px 20px;
            text-align: center;
            border: 2px solid #f0f0f0;
            cursor: pointer;
            transition: var(--transition);
            position: relative;
        }

        .cat-box::after {
            content: '';
            position: absolute;
            top: 0; right: 0;
            border-style: solid;
            border-width: 0 40px 40px 0;
            border-color: transparent var(--festive-green) transparent transparent;
            opacity: 0.2;
        }

        .cat-box:hover { border-color: var(--festive-green); transform: translateY(-10px); background: var(--bg-pink); }
        .cat-box .icon { font-size: 3rem; margin-bottom: 15px; display: block; }

        /* --- Flash Deals --- */
        .flash-section { background: var(--festive-green); color: white; }
        .flash-scroller { display: flex; overflow-x: auto; gap: 30px; padding: 20px 0; scrollbar-width: none; }
        .flash-scroller::-webkit-scrollbar { display: none; }

        .flash-item {
            min-width: 400px;
            background: white;
            color: var(--dark-text);
            border-radius: 25px;
            padding: 25px;
            display: flex;
            gap: 20px;
            align-items: center;
        }

        /* --- Auth Modals --- */
        .modal-overlay {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.8);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 2000;
        }

        .modal {
            background: white;
            padding: 50px;
            border-radius: 30px;
            width: 100%;
            max-width: 450px;
            text-align: center;
            position: relative;
        }

        .modal h2 { margin-bottom: 30px; }
        .modal input {
            width: 100%;
            padding: 15px 20px;
            margin-bottom: 15px;
            border-radius: 10px;
            border: 1px solid #ddd;
            outline: none;
        }

        /* --- Cart Sidebar --- */
        .cart-sidebar {
            position: fixed;
            top: 0; right: -400px;
            width: 400px; height: 100%;
            background: white;
            z-index: 3000;
            box-shadow: -10px 0 30px rgba(0,0,0,0.1);
            transition: 0.5s;
            padding: 40px;
            display: flex;
            flex-direction: column;
        }

        .cart-sidebar.open { right: 0; }

        .cart-items { flex: 1; overflow-y: auto; margin: 30px 0; }
        .cart-item { display: flex; gap: 15px; margin-bottom: 20px; align-items: center; }

        /* --- Footer --- */
        footer { background: var(--dark-text); color: white; padding: 100px 5% 40px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 60px; max-width: 1400px; margin: 0 auto; }
        .footer-col h4 { color: var(--primary-red); margin-bottom: 30px; font-size: 1.2rem; }
        .footer-col p { opacity: 0.7; line-height: 1.8; margin-bottom: 20px; }
        .footer-col ul { list-style: none; }
        .footer-col li { margin-bottom: 15px; opacity: 0.6; cursor: pointer; transition: 0.3s; }
        .footer-col li:hover { opacity: 1; color: var(--primary-red); padding-left: 5px; }

        /* --- Page Switching --- */
        .page-content { display: none; }
        .page-content.active { display: block; animation: fadeIn 0.5s ease; }

        @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

        /* --- Quick View --- */
        .quick-view-modal {
            position: fixed;
            top: 0; left: 0; width: 100%; height: 100%;
            background: rgba(0,0,0,0.9);
            display: none;
            z-index: 4000;
            justify-content: center;
            align-items: center;
        }
        .qv-content { background: white; width: 90%; max-width: 1000px; border-radius: 30px; overflow: hidden; display: flex; position: relative; }
        .qv-left { flex: 1; height: 500px; }
        .qv-left img { width: 100%; height: 100%; object-fit: cover; }
        .qv-right { flex: 1; padding: 50px; }

        /* HAMBURGER */
.hamburger {
    display: none;
    font-size: 1.8rem;
    background: none;
    border: none;
    cursor: pointer;
}

/* MOBILE NAV */
@media (max-width: 768px) {

    .hamburger {
        display: block;
    }

    nav {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: white;
        flex-direction: column;
        align-items: center;
        gap: 20px;
        padding: 20px 0;
        display: none;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    nav.active {
        display: flex;
    }

    .search-bar {
        width: 100%;
        margin-top: 10px;
    }

    .header-main {
        flex-wrap: wrap;
    }
}
    