
:root {

  /* New Soft Fiery Theme */
  --flame-red: #FF6B6B;       /* Soft coral red */
  --flame-orange: #FFA07A;    /* Light salmon */
  --flame-yellow: #FFD166;    /* Soft golden yellow */
  --flame-dark: #B3544D;      /* Muted brick red */
  --flame-black: #1E1E1E;     /* Soft near-black */
  --flame-neon: #FF8A65;      /* Soft neon peach */
  --flame-bg: linear-gradient(135deg, #2E1E1E, #3A2A2A, #2E1E1E);
  
  /* Additional soft accent colors */
  --soft-ember: #E9967A;      /* Dark salmon */
  --warm-cream: #FFF5EB;      /* Warm off-white */
  --soft-smoke: #3D3D3D;      /* Dark gray */
}
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family:Arial, Helvetica, sans-serif;
        }
        
        body {
            background: var(--flame-bg);
            color: white;
            overflow-x: hidden;
        }
        
        /* ===== ANIMATED FIRE BACKGROUND ===== */
        .fire-bg {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: var(--flame-bg);
            z-index: -1;
        }
        
        .flame {
            position: absolute;
            bottom: -50px;
            width: 120px;
            height: 180px;
            background: linear-gradient(to top, var(--flame-red), var(--flame-orange));
            border-radius: 50% 50% 20% 20%;
            filter: blur(15px);
            animation: flicker 3s ease-in-out infinite alternate;
            transform-origin: bottom;
            opacity: 0.7;
        }
        
        @keyframes flicker {
            0%, 100% { transform: scaleY(1) skewX(0); opacity: 0.6; }
            25% { transform: scaleY(1.2) skewX(-5deg); opacity: 0.9; }
            50% { transform: scaleY(0.8) skewX(5deg); opacity: 0.5; }
            75% { transform: scaleY(1.1) skewX(-3deg); opacity: 0.8; }
        }
        
        /* ===== HEADER ===== */
        header {
            background: rgba(15, 15, 15, 0.95);
            padding: 20px 0;
            border-bottom: 4px solid var(--flame-red);
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 5px 30px rgba(255, 38, 0, 0.3);
        }
        
        .container {
            width: 90%;
            max-width: 1400px;
            margin: 0 auto;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
            animation: pulse 2s infinite;
        }
        
        @keyframes pulse {
            0% { transform: scale(1); }
            50% { transform: scale(1.05); text-shadow: 0 0 15px var(--flame-neon); }
            100% { transform: scale(1); }
        }
        
        .logo i {
            color: var(--flame-red);
            font-size: 3rem;
            margin-right: 10px;
            text-shadow: 0 0 20px var(--flame-orange);
        }
        
        .logo h1 {
            font-size: 2.5rem;
            background: linear-gradient(to right, var(--flame-yellow), var(--flame-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-transform: uppercase;
            letter-spacing: 3px;
        }
        
        .logo span {
            color: #ccc;
            font-size: 1.1rem;
            display: block;
            letter-spacing: 6px;
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 30px;
            position: relative;
        }
        
        nav ul li a {
            color: white;
            text-decoration: none;
            font-size: 1.2rem;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
        }
        
        nav ul li a:hover {
            color: var(--flame-orange);
        }
        
        nav ul li a::after {
            content: '';
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 0;
            height: 3px;
            background: var(--flame-red);
            transition: width 0.3s ease;
        }
        
        nav ul li a:hover::after {
            width: 100%;
        }
        
        .cart-icon {
            position: relative;
            font-size: 1.8rem;
            color: white;
        }
        
        .cart-count {
            position: absolute;
            top: -12px;
            right: -12px;
            background: var(--flame-red);
            color: white;
            border-radius: 50%;
            width: 25px;
            height: 25px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 0.9rem;
            font-weight: bold;
            box-shadow: 0 0 10px var(--flame-red);
        }
        
        /* ===== HERO SECTION ===== */
        .hero {
            height: 90vh;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }
        
        .hero-content {
            position: relative;
            z-index: 10;
            width: 60%;
        }
        
        .hero h2 {
            font-size: 5rem;
            margin-bottom: 25px;
            background: linear-gradient(to right, var(--flame-yellow), var(--flame-red));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            text-shadow: 0 0 30px rgba(255, 60, 0, 0.7);
            animation: textGlow 2s infinite alternate;
            line-height: 1.1;
        }
        
        @keyframes textGlow {
            from { text-shadow: 0 0 10px rgba(255, 60, 0, 0.5); }
            to { text-shadow: 0 0 30px rgba(255, 60, 0, 0.9), 0 0 40px rgba(255, 107, 0, 0.7); }
        }
        
        .hero p {
            font-size: 1.4rem;
            margin-bottom: 40px;
            line-height: 1.6;
            color: #ddd;
            max-width: 80%;
        }
        
        .btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(45deg, var(--flame-orange), var(--flame-red));
            color: white;
            text-decoration: none;
            border-radius: 50px;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(255, 60, 0, 0.5);
            position: relative;
            overflow: hidden;
            font-size: 1.1rem;
        }
        
        .btn:hover {
            transform: translateY(-5px);
            box-shadow: 0 12px 30px rgba(255, 60, 0, 0.7);
        }
        
        .btn:active {
            transform: translateY(2px);
        }
        
        .btn::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.7s;
        }
        
        .btn:hover::before {
            left: 100%;
        }
        
        .hero-image {
            position: absolute;
            right: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 50%;
            animation: float 6s ease-in-out infinite;
        }
        
        @keyframes float {
            0%, 100% { transform: translateY(-50%) rotate(0deg); }
            50% { transform: translateY(-55%) rotate(3deg); }
        }
        
        .hero-image img {
            width: 100%;
            max-width: 800px;
            filter: drop-shadow(0 0 30px rgba(255, 60, 0, 0.8));
        }
        
        /* ===== PRODUCTS SECTION ===== */
        .section {
            padding: 100px 0;
            position: relative;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 70px;
            position: relative;
        }
        
        .section-title h2 {
            font-size: 3.5rem;
            color: white;
            display: inline-block;
            position: relative;
            text-transform: uppercase;
        }
        
        .section-title h2::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            width: 150px;
            height: 5px;
            background: linear-gradient(to right, var(--flame-yellow), var(--flame-red));
        }
        
        .product-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
            gap: 40px;
        }
        
        .product-card {
            background: rgba(30, 30, 30, 0.9);
            border-radius: 15px;
            overflow: hidden;
            transition: all 0.4s ease;
            position: relative;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 60, 0, 0.2);
        }
        
        .product-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 20px 40px rgba(255, 60, 0, 0.4);
            border: 1px solid rgba(255, 60, 0, 0.5);
        }
        
        .product-badge {
            position: absolute;
            top: 15px;
            right: 15px;
            background: var(--flame-red);
            color: white;
            padding: 8px 15px;
            border-radius: 30px;
            font-size: 0.9rem;
            font-weight: bold;
            z-index: 2;
            box-shadow: 0 0 15px var(--flame-red);
        }
        
        .product-image {
            height: 250px;
            overflow: hidden;
            position: relative;
        }
        
        .product-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.7s ease;
        }
        
        .product-card:hover .product-image img {
            transform: scale(1.15);
        }
        
        .product-info {
            padding: 25px;
        }
        
        .product-title {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: white;
        }
        
        .product-description {
            color: #aaa;
            font-size: 1rem;
            margin-bottom: 20px;
            line-height: 1.6;
        }
        
        .product-meta {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .product-price {
            font-size: 1.6rem;
            font-weight: bold;
            color: var(--flame-orange);
            text-shadow: 0 0 10px rgba(255, 95, 0, 0.5);
        }
        
        .heat-level {
            display: flex;
        }
        
        .heat-level i {
            color: var(--flame-red);
            margin-left: 5px;
            font-size: 1.1rem;
            text-shadow: 0 0 10px var(--flame-red);
        }
        
        .add-to-cart {
            width: 100%;
            padding: 15px;
            background: linear-gradient(to right, var(--flame-dark), var(--flame-red));
            color: white;
            border: none;
            border-radius: 8px;
            cursor: pointer;
            transition: all 0.3s ease;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.1rem;
        }
        
        .add-to-cart i {
            margin-right: 10px;
            font-size: 1.2rem;
        }
        
        .add-to-cart:hover {
            background: linear-gradient(to right, var(--flame-red), var(--flame-orange));
            box-shadow: 0 0 20px rgba(255, 60, 0, 0.5);
        }
         
        /* Product section for mobile  */
        /* Mobile Product Card Styles - 2 cards per row */
@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        margin-bottom: 40px;
    }
    
    .section-title h2 {
        font-size: 2.2rem;
    }
    
    .section-title h2::after {
        width: 80px;
        height: 3px;
        bottom: -8px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
        gap: 15px; /* Reduced gap */
    }
    
    .product-card {
        border-radius: 10px;
        margin-bottom: 0; /* Remove any default margins */
    }
    
    .product-image {
        height: 150px; /* Compact height */
    }
    
    .product-info {
        padding: 12px;
    }
    
    .product-title {
        font-size: 1.1rem;
        margin-bottom: 8px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    
    .product-description {
        font-size: 0.8rem;
        margin-bottom: 12px;
        display: -webkit-box;
        -webkit-line-clamp: 2; /* Limit to 2 lines */
        -webkit-box-orient: vertical;
        overflow: hidden;
        line-height: 1.4;
    }
    
    .product-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .product-price {
        font-size: 1.2rem;
    }
    
    .heat-level {
        align-self: flex-end;
    }
    
    .heat-level i {
        font-size: 0.9rem;
        margin-left: 3px;
    }
    
    .add-to-cart {
        padding: 8px 10px;
        font-size: 0.85rem;
    }
    
    .add-to-cart i {
        font-size: 0.9rem;
        margin-right: 5px;
    }
    
    .product-badge {
        top: 8px;
        right: 8px;
        padding: 4px 8px;
        font-size: 0.7rem;
    }
}

/* For very small screens (adjust as needed) */
@media (max-width: 480px) {
    .product-grid {
        gap: 10px;
    }
    
    .product-image {
        height: 130px;
    }
    
    .product-title {
        font-size: 1rem;
    }
    
    .product-description {
        font-size: 0.75rem;
        -webkit-line-clamp: 2;
    }
    
    .add-to-cart {
        padding: 6px 8px;
        font-size: 0.8rem;
    }
}
      
        /* ===== REVIEWS SECTION ===== */
        .reviews {
            background: rgba(20, 20, 20, 0.8);
            border-top: 3px solid var(--flame-red);
            border-bottom: 3px solid var(--flame-red);
        }
        
        .review-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
            gap: 40px;
        }
        
        .review-card {
            background: rgba(40, 40, 40, 0.8);
            padding: 30px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            transition: all 0.4s ease;
            border: 1px solid rgba(255, 60, 0, 0.2);
        }
        
        .review-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(255, 60, 0, 0.3);
            border: 1px solid rgba(255, 60, 0, 0.5);
        }
        
        .review-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .review-avatar {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            overflow: hidden;
            margin-right: 20px;
            border: 3px solid var(--flame-orange);
        }
        
        .review-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        
        .review-name {
            font-size: 1.4rem;
            color: white;
            margin-bottom: 5px;
        }
        
        .review-rating {
            color: var(--flame-yellow);
            font-size: 1rem;
        }
        
        .review-rating i {
            margin-right: 3px;
        }
        
        .review-text {
            color: #ddd;
            line-height: 1.7;
            font-size: 1.1rem;
        }
        
        /* ===== CONTACT SECTION ===== */
        .contact {
            background: rgba(15, 15, 15, 0.9);
        }
        
        .contact-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
        }
        
        .contact-info {
            display: flex;
            flex-direction: column;
        }
        
        .contact-info h3 {
            font-size: 2rem;
            margin-bottom: 30px;
            color: var(--flame-orange);
            position: relative;
            padding-bottom: 15px;
        }
        
        .contact-info h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 80px;
            height: 4px;
            background: var(--flame-red);
        }
        
        .contact-details {
            margin-bottom: 40px;
        }
        
        .contact-item {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }
        
        .contact-item i {
            width: 50px;
            height: 50px;
            background: rgba(255, 60, 0, 0.1);
            border-radius: 50%;
            display: flex;
            justify-content: center;
            align-items: center;
            font-size: 1.3rem;
            color: var(--flame-orange);
            margin-right: 20px;
        }
        
        .contact-item-text h4 {
            font-size: 1.3rem;
            color: white;
            margin-bottom: 5px;
        }
        
        .contact-item-text p {
            color: #aaa;
            font-size: 1.1rem;
        }
        
        .social-links {
            display: flex;
            gap: 15px;
        }
        
        .social-links a {
            display: flex;
            justify-content: center;
            align-items: center;
            width: 50px;
            height: 50px;
            background: rgba(255, 60, 0, 0.1);
            color: var(--flame-orange);
            border-radius: 50%;
            font-size: 1.3rem;
            transition: all 0.3s ease;
        }
        
        .social-links a:hover {
            background: var(--flame-orange);
            color: white;
            transform: translateY(-5px);
            box-shadow: 0 5px 15px rgba(255, 60, 0, 0.5);
        }
        
        .contact-form {
            background: rgba(40, 40, 40, 0.8);
            padding: 40px;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 60, 0, 0.2);
        }
        
        .form-group {
            margin-bottom: 25px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 10px;
            color: #ddd;
            font-size: 1.1rem;
        }
        
        .form-control {
            width: 100%;
            padding: 15px;
            background: rgba(60, 60, 60, 0.5);
            border: 1px solid rgba(255, 60, 0, 0.3);
            border-radius: 8px;
            color: white;
            font-size: 1.1rem;
            transition: all 0.3s ease;
        }
        
        .form-control:focus {
            outline: none;
            border-color: var(--flame-orange);
            box-shadow: 0 0 10px rgba(255, 60, 0, 0.3);
        }
        
        textarea.form-control {
            min-height: 150px;
            resize: vertical;
        }
        
        .submit-btn {
            width: 100%;
            padding: 15px;
            background: linear-gradient(to right, var(--flame-orange), var(--flame-red));
            color: white;
            border: none;
            border-radius: 8px;
            font-size: 1.2rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(255, 60, 0, 0.4);
        }
        
        .submit-btn:hover {
            background: linear-gradient(to right, var(--flame-red), var(--flame-orange));
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(255, 60, 0, 0.6);
        }
        
        /* ===== NEWSLETTER SECTION ===== */
        .newsletter {
            background: linear-gradient(135deg, var(--flame-dark), var(--flame-black));
            text-align: center;
            padding: 80px 0;
            border-top: 3px solid var(--flame-red);
            border-bottom: 3px solid var(--flame-red);
        }
        
        .newsletter h2 {
            font-size: 2.5rem;
            margin-bottom: 20px;
            color: white;
        }
        
        .newsletter p {
            font-size: 1.2rem;
            color: #ddd;
            margin-bottom: 40px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }
        
        .newsletter-form {
            display: flex;
            max-width: 600px;
            margin: 0 auto;
        }
        
        .newsletter-input {
            flex: 1;
            padding: 18px 25px;
            border: none;
            border-radius: 50px 0 0 50px;
            font-size: 1.1rem;
            background: rgba(255, 255, 255, 0.9);
        }
        
        .newsletter-input:focus {
            outline: none;
            background: white;
        }
        
        .newsletter-btn {
            padding: 0 40px;
            background: linear-gradient(to right, var(--flame-orange), var(--flame-red));
            color: white;
            border: none;
            border-radius: 0 50px 50px 0;
            font-size: 1.1rem;
            font-weight: bold;
            text-transform: uppercase;
            letter-spacing: 1px;
            cursor: pointer;
            transition: all 0.3s ease;
        }
        
        .newsletter-btn:hover {
            background: linear-gradient(to right, var(--flame-red), var(--flame-orange));
        }
        
        /* ===== FOOTER ===== */
        footer {
            background: var(--flame-black);
            padding: 70px 0 30px;
        }
        
        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 50px;
        }
        
        .footer-column h3 {
            color: var(--flame-orange);
            margin-bottom: 25px;
            font-size: 1.5rem;
            position: relative;
            padding-bottom: 15px;
        }
        
        .footer-column h3::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 50px;
            height: 3px;
            background: var(--flame-red);
        }
        
        .footer-column p {
            color: #aaa;
            line-height: 1.7;
            margin-bottom: 20px;
            font-size: 1.1rem;
        }
        
        .footer-links {
            list-style: none;
        }
        
        .footer-links li {
            margin-bottom: 15px;
        }
        
        .footer-links li a {
            color: #aaa;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 1.1rem;
            display: block;
        }
        
        .footer-links li a:hover {
            color: var(--flame-orange);
            transform: translateX(10px);
        }
        
        .copyright {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 107, 0, 0.2);
            color: #666;
            font-size: 1rem;
        }
        
        /* ===== RESPONSIVE DESIGN ===== */
        @media (max-width: 1200px) {
            .hero-content {
                width: 55%;
            }
            
            .hero-image {
                width: 45%;
            }
        }
        
        @media (max-width: 992px) {
            .hero-content {
                width: 100%;
                text-align: center;
                padding-top: 100px;
            }
            
            .hero p {
                max-width: 100%;
            }
            
            .hero-image {
                position: relative;
                width: 100%;
                transform: none;
                margin-top: 50px;
                animation: none;
            }
            
            .contact-container {
                grid-template-columns: 1fr;
            }
        }
        
        @media (max-width: 768px) {
            .header-content {
                flex-direction: column;
            }
            
            nav ul {
                margin-top: 30px;
                flex-wrap: wrap;
                justify-content: center;
            }
            
            nav ul li {
                margin: 10px 15px;
            }
            
            .hero h2 {
                font-size: 3.5rem;
            }
            
            .section-title h2 {
                font-size: 2.8rem;
            }
            
            .product-grid, .review-grid {
                grid-template-columns: 1fr;
            }
            
            .newsletter-form {
                flex-direction: column;
            }
            
            .newsletter-input {
                border-radius: 50px;
                margin-bottom: 15px;
            }
            
            .newsletter-btn {
                border-radius: 50px;
                padding: 18px;
            }
        }
        
        @media (max-width: 576px) {
            .logo h1 {
                font-size: 2rem;
            }
            
            .logo span {
                font-size: 0.9rem;
                letter-spacing: 3px;
            }
            
            .hero h2 {
                font-size: 2.5rem;
            }
            
            .hero p {
                font-size: 1.2rem;
            }
            
            .section-title h2 {
                font-size: 2.2rem;
            }
        }
        /* Loader Styles */
        .loader-container {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #0f0f0f;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }
        
        .loader-text {
            color: #ff5e00;
            font-family: 'Impact', 'Arial Black', sans-serif;
            font-size: 2rem;
            margin-top: 30px;
            text-transform: uppercase;
            letter-spacing: 3px;
            animation: pulse 1.5s infinite alternate;
        }
        
        @keyframes pulse {
            from { opacity: 0.5; text-shadow: 0 0 5px #ff5e00; }
            to { opacity: 1; text-shadow: 0 0 20px #ff5e00; }
        }
        
        /* From Uiverse.io by Nawsome */ 
        .pl {
            width: 6em;
            height: 6em;
        }

        .pl__ring {
            animation: ringA 2s linear infinite;
        }

        .pl__ring--a {
            stroke: #f42f25;
        }

        .pl__ring--b {
            animation-name: ringB;
            stroke: #f49725;
        }

        .pl__ring--c {
            animation-name: ringC;
            stroke: #255ff4;
        }

        .pl__ring--d {
            animation-name: ringD;
            stroke: #f42582;
        }

        /* Animations */
        @keyframes ringA {
            from, 4% {
                stroke-dasharray: 0 660;
                stroke-width: 20;
                stroke-dashoffset: -330;
            }

            12% {
                stroke-dasharray: 60 600;
                stroke-width: 30;
                stroke-dashoffset: -335;
            }

            32% {
                stroke-dasharray: 60 600;
                stroke-width: 30;
                stroke-dashoffset: -595;
            }

            40%, 54% {
                stroke-dasharray: 0 660;
                stroke-width: 20;
                stroke-dashoffset: -660;
            }

            62% {
                stroke-dasharray: 60 600;
                stroke-width: 30;
                stroke-dashoffset: -665;
            }

            82% {
                stroke-dasharray: 60 600;
                stroke-width: 30;
                stroke-dashoffset: -925;
            }

            90%, to {
                stroke-dasharray: 0 660;
                stroke-width: 20;
                stroke-dashoffset: -990;
            }
        }

        @keyframes ringB {
            from, 12% {
                stroke-dasharray: 0 220;
                stroke-width: 20;
                stroke-dashoffset: -110;
            }

            20% {
                stroke-dasharray: 20 200;
                stroke-width: 30;
                stroke-dashoffset: -115;
            }

            40% {
                stroke-dasharray: 20 200;
                stroke-width: 30;
                stroke-dashoffset: -195;
            }

            48%, 62% {
                stroke-dasharray: 0 220;
                stroke-width: 20;
                stroke-dashoffset: -220;
            }

            70% {
                stroke-dasharray: 20 200;
                stroke-width: 30;
                stroke-dashoffset: -225;
            }

            90% {
                stroke-dasharray: 20 200;
                stroke-width: 30;
                stroke-dashoffset: -305;
            }

            98%, to {
                stroke-dasharray: 0 220;
                stroke-width: 20;
                stroke-dashoffset: -330;
            }
        }

        @keyframes ringC {
            from {
                stroke-dasharray: 0 440;
                stroke-width: 20;
                stroke-dashoffset: 0;
            }

            8% {
                stroke-dasharray: 40 400;
                stroke-width: 30;
                stroke-dashoffset: -5;
            }

            28% {
                stroke-dasharray: 40 400;
                stroke-width: 30;
                stroke-dashoffset: -175;
            }

            36%, 58% {
                stroke-dasharray: 0 440;
                stroke-width: 20;
                stroke-dashoffset: -220;
            }

            66% {
                stroke-dasharray: 40 400;
                stroke-width: 30;
                stroke-dashoffset: -225;
            }

            86% {
                stroke-dasharray: 40 400;
                stroke-width: 30;
                stroke-dashoffset: -395;
            }

            94%, to {
                stroke-dasharray: 0 440;
                stroke-width: 20;
                stroke-dashoffset: -440;
            }
        }

        @keyframes ringD {
            from, 8% {
                stroke-dasharray: 0 440;
                stroke-width: 20;
                stroke-dashoffset: 0;
            }

            16% {
                stroke-dasharray: 40 400;
                stroke-width: 30;
                stroke-dashoffset: -5;
            }

            36% {
                stroke-dasharray: 40 400;
                stroke-width: 30;
                stroke-dashoffset: -175;
            }

            44%, 50% {
                stroke-dasharray: 0 440;
                stroke-width: 20;
                stroke-dashoffset: -220;
            }

            58% {
                stroke-dasharray: 40 400;
                stroke-width: 30;
                stroke-dashoffset: -225;
            }

            78% {
                stroke-dasharray: 40 400;
                stroke-width: 30;
                stroke-dashoffset: -395;
            }

            86%, to {
                stroke-dasharray: 0 440;
                stroke-width: 20;
                stroke-dashoffset: -440;
            }
        }

        /* Hide main content initially */
        #main-content {
            display: none;
        }/* Backgrounds */
body {
  background: var(--flame-bg);
  color: var(--warm-cream);
}

/* Header/Navigation */
header {
  background: rgba(30, 30, 30, 0.95);
  border-bottom: 3px solid var(--flame-red);
}

/* Buttons */
.btn {
  background: linear-gradient(45deg, var(--flame-orange), var(--flame-red));
  color: white;
}

.btn:hover {
  background: linear-gradient(45deg, var(--flame-red), var(--flame-orange));
}

/* Product Cards */
.product-card {
  background: rgba(40, 40, 40, 0.8);
  border: 1px solid rgba(255, 107, 107, 0.2);
}

.product-card:hover {
  border: 1px solid rgba(255, 107, 107, 0.5);
}

/* Heat Level Indicators */
.heat-level i {
  color: var(--flame-orange);
}

/* Text Elements */
h1, h2, h3 {
  color: var(--flame-yellow);
}

/* Footer */
footer {
  background: var(--flame-black);
  border-top: 3px solid var(--flame-red);
}

/* Special Effects */
.flame {
  background: linear-gradient(to top, var(--flame-red), var(--flame-orange));
  opacity: 0.6; /* More subtle */
}
/* Mobile Menu Styles */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 34px;
    cursor: pointer;
    padding: 10px;
}

nav.active {
    display: block !important;
}

@media (max-width: 992px) {
    .mobile-menu-btn {
        display: block;
    }
    
    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #1a1a1a;
        z-index: 1000;
        padding: 20px 0;
        box-shadow: 0 5px 10px rgba(0,0,0,0.3);
    }
    
    nav ul {
        flex-direction: column;
        align-items: center;
    }
    
    nav ul li {
        margin: 10px 0;
    }
    
    .header-content {
        position: relative;
    }
    
    .hero-content {
        text-align: center;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 576px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .contact-info, .contact-form {
        width: 100%;
    }
    
    .contact-info {
        margin-bottom: 30px;
    }
    .container{
        display: block;
    }
}
header .container .header-content{
display: flex;
/* background: #000; */
flex-direction: row;
}