  /* === KEEPS YOUR EXACT ORIGINAL STYLING === */
        :root {
            --primary: #0088cc; --primary-dark: #006699; --accent: #f57c00;
            --text-main: #111827; --text-muted: #6b7280; --bg-body: #f9fafb;
            --white: #ffffff; --radius: 16px;
            --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
            --shadow-hover: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
        }
        * { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
        body { font-family: 'Inter', sans-serif; background-color: var(--bg-body); color: var(--text-main); overflow-x: hidden; display: flex; flex-direction: column; min-height: 100vh; }
        main { flex: 1; } a { text-decoration: none; color: inherit; cursor: pointer; transition: 0.2s; }
        ul { list-style: none; } img { display: block; max-width: 100%; height: auto; }
        button { cursor: pointer; border: none; background: none; font-family: inherit; outline: none; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 16px; }
        
        /* HEADER */
        .top-bar { background-color: var(--primary); color: white; font-size: 12px; padding: 8px 0; font-weight: 500; text-align: center; }
        .tb-flex { display: flex; justify-content: space-between; align-items: center; }
        .main-header { background: rgba(255,255,255,0.98); backdrop-filter: blur(10px); position: sticky; top: 0; z-index: 1000; border-bottom: 1px solid rgba(0,0,0,0.05); padding: 12px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
        .header-grid { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
        .logo-img { height: 40px; width: auto; object-fit: contain; cursor: pointer; }
        .search-box { flex: 1; max-width: 500px; position: relative; }
        .search-input { width: 100%; padding: 12px 20px; padding-right: 50px; border: 1px solid #ddd; border-radius: 50px; background: #f3f4f6; font-size: 14px; transition: 0.3s; }
        .search-input:focus { background: white; border-color: var(--primary); box-shadow: 0 0 0 4px rgba(0, 136, 204, 0.1); }
        .search-btn { position: absolute; right: 5px; top: 5px; bottom: 5px; width: 38px; background: var(--primary); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.2s; }
        .search-btn:hover { background: var(--primary-dark); transform: scale(1.05); }
        .hotline { display: flex; align-items: center; gap: 10px; }
        .hl-icon { width: 40px; height: 40px; background: #e0f2fe; color: var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
        .hl-text div:first-child { font-size: 10px; font-weight: 700; color: #888; text-transform: uppercase; }
        .hl-text div:last-child { font-size: 15px; font-weight: 700; color: #111; }
        .nav-bar { background: white; border-bottom: 1px solid #eee; }
        .nav-list { display: flex; gap: 15px; padding: 12px 0; overflow-x: auto; white-space: nowrap; scrollbar-width: none; }
        .nav-list::-webkit-scrollbar { display: none; }
        .nav-item { font-size: 13px; font-weight: 500; color: #555; padding: 8px 16px; border-radius: 20px; cursor: pointer; transition: 0.2s; display: flex; align-items: center; gap: 6px; border: 1px solid transparent; }
        .nav-item:hover, .nav-item.active { background: #eff6ff; color: var(--primary); border-color: #dbeafe; }
        
        /* HERO */
        .hero-section { padding: 20px 0; }
        .hero-container { position: relative; height: 380px; border-radius: 24px; overflow: hidden; background: #000; box-shadow: var(--shadow); }
        .slide { position: absolute; inset: 0; opacity: 0; transition: opacity 0.8s ease-in-out; background-size: cover; background-position: center; }
        .slide.active { opacity: 1; }
        .slide-overlay { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(0,0,0,0.7) 0%, transparent 100%); }
        .slide-content { position: absolute; top: 50%; left: 50px; transform: translateY(-50%); max-width: 550px; z-index: 2; color: white; }
        .slide-content h1 { font-size: 42px; font-weight: 800; margin-bottom: 15px; line-height: 1.1; }
        .slide-content p { font-size: 16px; margin-bottom: 30px; opacity: 0.9; }
        .hero-btn { background: var(--primary); color: white; padding: 12px 30px; border-radius: 50px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: all 0.3s; }
        .hero-btn:hover { background: var(--primary-dark); transform: translateY(-3px); }
        .slider-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; z-index: 3; }
        .dot { width: 10px; height: 10px; background: rgba(255,255,255,0.4); border-radius: 50%; cursor: pointer; transition: 0.3s; }
        .dot.active { background: white; width: 30px; border-radius: 10px; }

        /* CARDS & COMMON */
        .sec-title { text-align: center; font-size: 26px; font-weight: 800; margin-bottom: 5px; color: var(--text-main); }
        .sec-sub { text-align: center; color: #666; margin-bottom: 30px; font-size: 14px; }
        .cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 50px; }
        .cat-card { height: 140px; border-radius: 20px; overflow: hidden; position: relative; cursor: pointer; box-shadow: var(--shadow); transition: 0.3s; }
        .cat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }
        .cat-img { width: 100%; height: 100%; object-fit: cover; }
        .cat-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.8), transparent); padding: 15px; color: white; font-weight: 700; text-align: center; }
        .prod-card { background: white; border-radius: 16px; padding: 15px; border: 1px solid #f0f0f0; transition: 0.3s; cursor: pointer; display: flex; flex-direction: column; box-shadow: 0 1px 3px rgba(0,0,0,0.05); }
        .prod-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: transparent; }
        .pc-img-box { background: #f8f9fa; border-radius: 12px; aspect-ratio: 1/1; width: 100%; overflow: hidden; display: flex; align-items: center; justify-content: center; margin-bottom: 15px; position: relative; }
        .pc-img-box img { max-width: 85%; max-height: 85%; object-fit: contain; mix-blend-mode: multiply; transition: 0.3s; }
        .prod-card:hover .pc-img-box img { transform: scale(1.08); }
        .pc-title { font-size: 15px; font-weight: 600; color: #1f2937; margin-bottom: 8px; line-height: 1.4; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; height: 42px; }
        .pc-price { font-size: 17px; font-weight: 700; color: var(--primary); margin-top: auto; }
        .h-scroller { display: flex; gap: 20px; overflow-x: auto; padding: 10px 5px 25px 5px; scroll-behavior: smooth; scrollbar-width: none; }
        .h-scroller::-webkit-scrollbar { display: none; }
        .h-scroller .prod-card { min-width: 200px; max-width: 200px; }

        /* DEALS */
        .deals-wrapper { background: linear-gradient(135deg, #e0f2fe 0%, #fff7ed 100%); border-radius: 20px; padding: 30px; margin-bottom: 60px; }
        .deals-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 25px; }
        .dt-left { display: flex; align-items: center; gap: 15px; }
        .dt-icon { font-size: 24px; color: #f57c00; background: white; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 10px rgba(245, 124, 0, 0.2); }
        .dt-title { font-size: 24px; font-weight: 800; color: #111; }
        .dt-right { display: flex; align-items: center; gap: 30px; }
        .timer-group { display: flex; align-items: center; gap: 10px; }
        .t-digit { background: #f57c00; color: white; width: 45px; height: 45px; border-radius: 10px; font-size: 18px; font-weight: 700; display: flex; flex-direction: column; align-items: center; justify-content: center; line-height: 1; }
        .t-digit span { font-size: 9px; font-weight: 500; opacity: 0.9; margin-top: 2px; }
        .t-colon { font-size: 20px; font-weight: 700; color: #f57c00; }

        /* ABOUT & CONTACT BANNERS */
        .page-banner { background-color: var(--primary); color: white; padding: 80px 20px; text-align: center; border-radius: 0 0 30px 30px; margin-bottom: 50px; margin-top: -1px; }
        .pb-title { font-size: 42px; font-weight: 800; margin-bottom: 15px; }
        .pb-sub { font-size: 16px; opacity: 0.9; font-weight: 400; max-width: 600px; margin: 0 auto; }
        .about-story { max-width: 800px; margin: 0 auto 60px auto; text-align: center; line-height: 1.8; color: #4b5563; font-size: 16px; }
        .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 60px; }
        .val-card { background: white; padding: 30px 20px; border-radius: 16px; text-align: center; box-shadow: var(--shadow); border: 1px solid #eee; }
        .val-icon { width: 60px; height: 60px; background: #e0f2fe; color: var(--primary); border-radius: 50%; margin: 0 auto 20px auto; display: flex; align-items: center; justify-content: center; font-size: 24px; }
        .val-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; color: #111; }
        .ready-cta { text-align: center; padding: 50px 0; border-top: 1px solid #eee; }
        .ready-btn { background: var(--primary); color: white; padding: 15px 40px; border-radius: 50px; font-weight: 600; margin-top: 20px; display: inline-block; }

        /* CONTACT FORM */
        .contact-layout { display: grid; grid-template-columns: 1fr 1.5fr; gap: 50px; align-items: start; margin-bottom: 60px; }
        .c-item { display: flex; gap: 15px; margin-bottom: 30px; }
        .c-icon { width: 50px; height: 50px; background: #e0f2fe; color: var(--primary); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-size: 20px; }
        .c-wa-btn { background: #25D366; color: white; width: 100%; padding: 15px; border-radius: 12px; font-weight: 600; display: flex; align-items: center; justify-content: center; gap: 10px; margin-top: 20px; transition: 0.2s; }
        .c-wa-btn:hover { background: #20bd5a; }
        .c-form-card { background: white; padding: 40px; border-radius: 20px; box-shadow: var(--shadow); border: 1px solid #eee; }
        .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
        .form-group { margin-bottom: 20px; }
        .form-label { font-size: 14px; font-weight: 500; margin-bottom: 8px; display: block; color: #374151; }
        .form-input { width: 100%; padding: 12px 15px; border: 1px solid #d1d5db; border-radius: 8px; font-family: inherit; font-size: 14px; outline: none; transition: 0.2s; }
        .form-input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(0, 136, 204, 0.1); }
        .form-submit { background: var(--primary); color: white; width: 100%; padding: 14px; border-radius: 8px; font-weight: 600; font-size: 15px; transition: 0.2s; }
        .form-submit:hover { background: var(--primary-dark); }

        /* SECTIONS & SPA */
        .sec-block { margin-bottom: 50px; }
        .sb-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 15px; }
        .sb-title { font-size: 24px; font-weight: 800; display: flex; align-items: center; gap: 10px; color: #111; }
        .sb-controls { display: flex; flex-direction: column; align-items: flex-end; gap: 10px; }
        .view-all-link { font-size: 14px; font-weight: 600; color: var(--primary); cursor: pointer; display: flex; align-items: center; gap: 6px; }
        .nav-arrows { display: flex; gap: 10px; }
        .arrow-btn { width: 40px; height: 40px; border-radius: 50%; background: white; border: 1px solid #e5e7eb; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #374151; transition: all 0.2s; box-shadow: 0 1px 2px rgba(0,0,0,0.05); }
        .arrow-btn:hover { background: var(--primary); color: white; }
        
        .spa-view { display: none; animation: fadeIn 0.3s ease; }
        .spa-view.active { display: block; }
        @keyframes fadeIn { from {opacity:0;} to {opacity:1;} }

        .bread-nav { font-size: 14px; color: #6b7280; margin: 20px 0 10px 0; font-weight: 500; }
        .cat-header-block { margin-bottom: 30px; }
        .ch-title { font-size: 36px; font-weight: 800; color: #111; display: flex; align-items: center; gap: 15px; margin-bottom: 5px; }
        .ch-count { font-size: 15px; color: #6b7280; font-weight: 500; }
        .grid-listing { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-bottom: 50px; }
        
        .pd-layout { display: flex; gap: 50px; margin-top: 20px; }
        .pd-left { flex: 1; background: white; border-radius: 20px; padding: 40px; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow); position: relative; }
        .pd-left img { max-height: 400px; mix-blend-mode: multiply; }
        .pd-right { flex: 1; }
        .pd-title { font-size: 32px; font-weight: 800; margin-bottom: 15px; line-height: 1.2; }
        .pd-price { font-size: 36px; font-weight: 700; color: var(--primary); margin-bottom: 25px; }
        .pd-desc { font-size: 16px; line-height: 1.6; color: #555; margin-bottom: 30px; }
        .pd-specs li { margin-bottom: 10px; font-size: 15px; display: flex; gap: 10px; align-items: center; background: white; padding: 8px 12px; border-radius: 6px; width: fit-content; border: 1px solid #eee; }
        .pd-btn { background: #25D366; color: white; border-radius: 12px; padding: 18px 32px; font-weight: 700; font-size: 16px; margin-top: 30px; display: inline-flex; align-items: center; gap: 10px; box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3); transition: 0.2s; }
        .pd-btn:hover { transform: translateY(-2px); background: #20bd5a; }
        .back-nav { display: inline-flex; align-items: center; gap: 8px; color: #666; margin: 20px 0; cursor: pointer; font-weight: 600; }

        /* FOOTER */
        footer { background: #111827; color: #9ca3af; padding: 70px 0 30px 0; margin-top: auto; }
        .foot-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px; border-bottom: 1px solid #374151; padding-bottom: 50px; margin-bottom: 30px; }
        .f-col h3 { color: white; font-size: 16px; margin-bottom: 20px; font-weight: 600; }
        .f-links li { margin-bottom: 12px; font-size: 14px; cursor: pointer; transition: 0.2s; }
        .f-links li:hover { color: white; padding-left: 5px; }
        .f-contact li { display: flex; gap: 10px; margin-bottom: 15px; font-size: 14px; }
        .copyright { text-align: center; font-size: 13px; }

        /* TOAST */
        .toast { position: fixed; bottom: 20px; right: 20px; background: #333; color: white; padding: 12px 24px; border-radius: 8px; z-index: 9999; display: none; animation: slideIn 0.3s; }
        @keyframes slideIn { from{transform: translateX(100%);} to{transform: translateX(0);} }

        /* RESPONSIVE */
        @media (max-width: 1024px) { .cat-grid, .grid-listing, .values-grid { grid-template-columns: repeat(3, 1fr); } .contact-layout { grid-template-columns: 1fr; gap: 40px; } }
        @media (max-width: 768px) { .header-grid { flex-direction: column; align-items: stretch; gap: 15px; } .search-box { max-width: 100%; } .hotline { display: none; } .hero-container { height: 320px; } .slide-content h1 { font-size: 32px; } .slide-content { transform: translateY(-40%); left: 20px; right: 20px; text-align: center; } .hero-btn { margin: 0 auto; } .deals-top { flex-direction: column; align-items: flex-start; gap: 15px; } .dt-right { width: 100%; justify-content: space-between; } .pd-layout { flex-direction: column; } .cat-grid, .values-grid { grid-template-columns: repeat(2, 1fr); } .foot-grid { grid-template-columns: 1fr; gap: 30px; } .grid-listing { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; } .grid-listing .prod-card { padding: 10px !important; } .grid-listing .pc-title { font-size: 13px !important; height: 36px !important; } .grid-listing .pc-price { font-size: 15px !important; } .form-grid { grid-template-columns: 1fr; } .page-banner { padding: 50px 20px; border-radius: 0 0 20px 20px; } .pb-title { font-size: 32px; } }
    /* Find this class in your CSS and update it */
.pd-layout { 
    display: flex; 
    gap: 50px; 
    margin-top: 20px; 
    margin-bottom: 100px; /* This adds the space you requested */
}

@media (max-width: 768px) {
    .pd-layout {
        flex-direction: column;
        margin-bottom: 120px; /* Extra space specifically for mobile */
    }
}
    
/* UPDATE THESE EXISTING CLASSES */

.cat-grid { 
    display: grid; 
    /* Change from 4 to 5 columns to match the screenshot */
    grid-template-columns: repeat(5, 1fr); 
    gap: 20px; 
    margin-bottom: 50px; 
}

.cat-card { 
    /* Increased height from 140px to 200px for a better look */
    height: 200px; 
    border-radius: 20px; 
    overflow: hidden; 
    position: relative; 
    cursor: pointer; 
    box-shadow: var(--shadow); 
    transition: 0.3s; 
}

/* Ensure the text and icon align nicely at the bottom */
.cat-overlay { 
    position: absolute; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    background: linear-gradient(to top, rgba(0,0,0,0.9) 10%, transparent); 
    padding: 20px 15px; 
    color: white; 
    font-weight: 700; 
    text-align: left; /* Align text left like screenshot */
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

/* Add style for the little icon in the overlay */
.cat-overlay i {
    font-size: 20px;
    color: #60a5fa; /* Light blue accent for icon */
    background: rgba(255,255,255,0.1);
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    backdrop-filter: blur(4px);
}

/* === ENHANCED FOOTER === */
.footer-enhanced {
    background: #0f172a; /* Dark Navy */
    color: #94a3b8;      /* Slate Gray text */
    padding: 70px 0 20px 0;
    margin-top: auto;
    border-top: 1px solid #1e293b;
    font-size: 14px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 50px;
}

.f-brand h2 { color: white; margin-bottom: 15px; font-weight: 800; font-size: 24px; }
.f-brand p { line-height: 1.6; margin-bottom: 20px; }

.f-socials { display: flex; gap: 15px; }
.f-social-icon {
    width: 36px; height: 36px; background: rgba(255,255,255,0.1);
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; color: white; transition: 0.3s;
}
.f-social-icon:hover { background: var(--primary); transform: translateY(-3px); }

.f-heading { color: white; font-size: 16px; font-weight: 700; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }

.f-links li { margin-bottom: 12px; cursor: pointer; transition: 0.2s; display: flex; align-items: center; gap: 8px; }
.f-links li:hover { color: white; transform: translateX(5px); }
.f-links li i { font-size: 10px; color: var(--primary); }

.f-contact-item { display: flex; gap: 12px; margin-bottom: 16px; align-items: flex-start; }
.f-contact-item i { color: var(--primary); margin-top: 4px; }

.newsletter-box { margin-top: 15px; }
.newsletter-input {
    width: 100%; padding: 12px 15px; background: rgba(255,255,255,0.05);
    border: 1px solid #334155; border-radius: 8px; color: white; margin-bottom: 10px;
    font-family: inherit;
}
.newsletter-input:focus { border-color: var(--primary); background: rgba(255,255,255,0.1); }
.newsletter-btn {
    width: 100%; padding: 12px; background: var(--primary); color: white;
    border-radius: 8px; font-weight: 600; transition: 0.2s;
}
.newsletter-btn:hover { background: var(--primary-dark); }

.footer-bottom {
    border-top: 1px solid #1e293b; padding-top: 25px;
    display: flex; justify-content: space-between; align-items: center;
}
.payment-icons { display: flex; gap: 10px; font-size: 24px; color: white; }

/* === FIXED WHATSAPP BUTTON === */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 9999;
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
}
.whatsapp-float:hover { transform: scale(1.1); background: #20bd5a; }
.whatsapp-pulse {
    position: absolute; width: 100%; height: 100%; background: #25D366;
    border-radius: 50%; opacity: 0.6; z-index: -1; animation: pulse 2s infinite;
}
@keyframes pulse { 0% { transform: scale(1); opacity: 0.6; } 100% { transform: scale(1.6); opacity: 0; } }

/* Mobile Responsiveness for Footer */
@media (max-width: 768px) {
    .footer-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 15px; text-align: center; }
    .whatsapp-float { width: 50px; height: 50px; font-size: 26px; bottom: 20px; right: 20px; }
}
    
/* === MOBILE SPECIFIC STYLES === */
@media (max-width: 768px) {
    
    .cat-grid {
        /* Forces 2 items per row on mobile */
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px; /* Smaller gap for mobile screens */
        margin-bottom: 30px;
    }

    .cat-card {
        /* Reduce height on phone so it looks proportional */
        height: 130px; 
        border-radius: 12px;
    }

    .cat-overlay {
        /* Smaller text for mobile */
        font-size: 12px;
        padding: 10px;
    }

    .cat-overlay i {
        /* Smaller icon for mobile */
        width: 28px;
        height: 28px;
        font-size: 14px;
        border-radius: 6px;
    }
}

/* Update .search-input and add the hover/focus states */

.search-input {
    width: 100%;
    padding: 12px 20px;
    padding-right: 50px;
    border: 1px solid #ddd;
    border-radius: 50px;
    background: #f3f4f6;
    font-size: 14px;
    /* Smooth transition for the effect */
    transition: all 0.2s ease-in-out; 
}

/* HOVER & FOCUS EFFECT */
.search-input:hover, 
.search-input:focus {
    /* Changes the border line to Blue */
    border-color: #0088cc; 
    background: white;
    
    /* This creates the "Big" blue ring effect */
    box-shadow: 0 0 0 4px rgba(0, 136, 204, 0.3); 
    
    outline: none;
}

/* === MOBILE SIDEBAR: SLIDE-IN MENU === */
@media (max-width: 768px) {
    
    /* 1. Sidebar Default State (Hidden Left) */
    .sidebar {
        position: fixed;
        top: 0; 
        left: 0; 
        bottom: 0;
        width: 280px;
        height: 100vh;
        transform: translateX(-100%); /* Hide off-screen */
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1); /* Smooth Slide */
        z-index: 5000; /* On top of everything */
        box-shadow: none;
        display: flex; /* Restore flex layout */
        flex-direction: column;
    }

    /* 2. Sidebar Active State (Slide In) */
    .sidebar.active {
        transform: translateX(0); /* Bring on-screen */
        box-shadow: 10px 0 50px rgba(0,0,0,0.5); /* Heavy shadow for depth */
    }

    /* 3. Dark Backdrop Overlay */
    #sidebar-overlay {
        position: fixed;
        inset: 0;
        background: rgba(15, 23, 42, 0.6); /* Dark Blue/Black tint */
        backdrop-filter: blur(4px); /* Blur content behind */
        z-index: 4000; /* Behind sidebar, on top of content */
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    
    #sidebar-overlay.active {
        opacity: 1;
        visibility: visible;
    }

    /* 4. Show Hamburger Icon */
    .mobile-toggle {
        display: block !important;
        font-size: 24px;
        color: var(--text-main);
        cursor: pointer;
        padding: 5px;
        border-radius: 4px;
        transition: 0.2s;
    }
    .mobile-toggle:active {
        background: #e2e8f0;
        transform: scale(0.95);
    }

    /* 5. Adjust Layout Spacing */
    .wrapper { padding-bottom: 0; }
    .top-header { padding: 0 20px; }
    .content-area { padding: 20px; }
    
    /* 6. Ensure Items look correct inside (fix from previous bottom-bar style) */
    .nav-item {
        flex-direction: row;
        justify-content: flex-start;
        text-align: left;
        padding: 14px 20px;
        background: transparent !important;
    }
    .nav-item i { font-size: 16px; margin-bottom: 0; width: 24px; }
    .nav-left { display: flex !important; } /* Ensure text shows */
    
    /* 7. Active State styling inside sidebar */
    .nav-item.active {
        background: var(--primary) !important;
        color: white !important;
        border-radius: 12px;
    }
    .nav-item.active i {
        background: transparent;
        color: white;
        box-shadow: none;
        transform: none;
        width: 24px; height: auto;
    }
}

/* === MOBILE DEALS: ARROWS ON RIGHT SIDE === */
@media (max-width: 768px) {
    
    /* 1. Reset wrapper padding */
    .deals-wrapper {
        padding-bottom: 30px; 
    }

    /* 2. Stack Title on top, Controls below */
    .deals-top {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    /* 3. Configure the Row: Timer (Left) -> Arrows (Right) */
    .dt-right {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between; /* Pushes Timer left, Arrows right */
        margin-top: 5px;
    }

    /* 4. Timer stays First (Left) */
    .timer-group {
        order: 1; 
    }

    /* 5. Arrows go Second (Right) */
    .deals-wrapper .nav-arrows {
        order: 2; 
        position: static; /* Reset absolute positioning */
        margin: 0;
        gap: 10px;
        display: flex;
    }

    /* 6. Style the Arrow Buttons for Mobile */
    .deals-wrapper .arrow-btn {
        background: white;
        color: #f57c00;
        border: 1px solid #fed7aa;
        width: 42px;
        height: 42px;
        font-size: 16px;
        box-shadow: 0 3px 8px rgba(0,0,0,0.08); /* Nice float effect */
    }

    /* 7. Adjust Timer Size slightly for small phones */
    .t-digit {
        width: 38px;
        height: 38px;
        font-size: 14px;
    }
}