  /* Hot Deal Css */
     
        :root {
            --primary-red: #ff3a3a;
            --dark-red: #1E1F29;
            --black: #242020;
            --dark-gray: #2B2D42;
            --light-gray: #fefefe;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }
        
        body {
            background-color: #f5f5f5;
        }
        
        /* 3D Hot Deal Section */
        .hot-deal-section {
            background: linear-gradient(135deg, var(--black) 0%, var(--dark-red) 100%);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
            margin-bottom: 50px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
            transform-style: preserve-3d;
            perspective: 1000px;
        }
        
        .hot-deal-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
            transform: rotate(30deg);
            animation: shine 6s infinite linear;
        }
        
        @keyframes shine {
            0% { transform: rotate(30deg) translate(-10%, -10%); }
            100% { transform: rotate(30deg) translate(10%, 10%); }
        }
        
        .hot-deal-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
            position: relative;
            z-index: 2;
            text-align: center;
        }
        
        .hot-deal-title {
            font-size: 3rem;
            font-weight: 700;
            color: white;
            text-transform: uppercase;
            margin-bottom: 20px;
            text-shadow: 0 5px 15px rgba(0,0,0,0.3);
            letter-spacing: 2px;
        }
        
        .hot-deal-subtitle {
            font-size: 1.5rem;
            color: var(--light-gray);
            margin-bottom: 40px;
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            margin-bottom: 40px;
        }
        
        .countdown-item {
            margin: 0 15px;
            perspective: 1000px;
        }
        
        .countdown-box {
            width: 100px;
            height: 100px;
            background: #D10024;
            border-radius: 10px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            position: relative;
            transform-style: preserve-3d;
            box-shadow: 0 10px 25px rgba(0,0,0,0.2);
            transition: all 0.5s ease;
        }
        
        .countdown-box::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 50%;
            background: rgba(255,255,255,0.1);
            border-radius: 10px 10px 0 0;
        }
        
        .countdown-value {
            font-size: 2.5rem;
            font-weight: 700;
            color: white;
            margin-bottom: 5px;
        }
        
        .countdown-label {
            font-size: 0.9rem;
            color: var(--light-gray);
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        
        .hot-deal-btn {
            display: inline-block;
            padding: 15px 40px;
            background-color: var(--primary-red);
            color: white;
            border-radius: 30px;
            font-weight: 600;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 1px;
            transition: all 0.3s ease;
            box-shadow: 0 5px 15px rgba(209, 0, 36, 0.4);
            border: none;
            cursor: pointer;
            position: relative;
            overflow: hidden;
        }
        
        .hot-deal-btn:hover {
            background-color: white;
            color: var(--dark-red);
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(209, 0, 36, 0.6);
        }
        
        .hot-deal-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: 0.5s;
        }
        
        .hot-deal-btn:hover::before {
            left: 100%;
        }
        
        @media (max-width: 767px) {
            .hot-deal-title {
                font-size: 2rem;
            }
            
            .hot-deal-subtitle {
                font-size: 1.2rem;
            }
            
            .countdown-box {
                width: 70px;
                height: 70px;
            }
            
            .countdown-value {
                font-size: 1.8rem;
            }
        }