/* ================== side and bootton nav bar nav bar ================== */


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Montserrat", sans-serif;
}

body {
    background: #f8f8f8;
    height: 200vh;
}

/* NAV CONTAINER (MOBILE DEFAULT BOTTOM BAR) */
.nav-container {
    z-index: 100;
    position: fixed;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    background: #ffffff;
    width: 92%;
    max-width: 420px;
    padding: 12px 20px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Burger Circle (Red) */
.burger-btn {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #e60000;
    /* BRAND RED */
    color: white;
    font-size: 28px;
    cursor: pointer;
    box-shadow: 0 6px 20px rgba(230, 0, 0, 0.4);
}

/* Popup Hidden Menu */
.hidden-menu {
    position: absolute;
    bottom: 75px;
    left: 50%;
    transform: translateX(-50%) scale(0.5);
    background: white;
    width: 150px;
    padding: 15px;
    border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    opacity: 0;
    pointer-events: none;
    transition: 0.3s ease;
}

.hidden-menu.active {
    transform: translateX(-50%) scale(1);
    opacity: 1;
    pointer-events: auto;
}

/* Hidden menu styling */
.hidden-menu li {
    padding: 8px 0;
    border-radius: 10px;
    cursor: pointer;
    transition: 0.2s;
}

.hidden-menu li:hover {
    background: #fff3bf;
    /* SOFT YELLOW HOVER */
}

/* Bottom Navigation Items */
.nav-items {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-item {
    text-align: center;
    color: #333;
    font-size: 12px;
    transition: 0.2s ease;
}

.nav-item i {
    font-size: 22px;
    display: block;
    margin-bottom: 2px;
    transition: 0.2s ease;
}

/* Icon Hover (Yellow glow) */
.nav-item:hover i {
    color: #ffcc00;
    /* BRAND YELLOW */
}

/* Text Hover */
.nav-item:hover {
    color: #e60000;
}

/* ----------- DESKTOP MODE (RIGHT SIDE NAV) ----------- */
@media (min-width: 768px) {
    .nav-container {
        bottom: 50%;
        right: 20px;
        left: auto;
        transform: translateY(50%);
        width: 80px;
        padding: 20px 10px;
        border-radius: 25px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    /* Burger button stays at top */
    .burger-btn {
        position: relative;
        margin: 0 auto;
        top: 0;
        left: 0;
        transform: none;
    }

    /* Hidden menu opens on right side */
    .hidden-menu {
        top: 0;
        bottom: auto;
        left: auto;
        right: -180px;
        transform: scale(0.5);
    }

    .hidden-menu.active {
        transform: scale(1);
    }

    /* Vertical nav */
    .nav-items {
        flex-direction: column;
        gap: 20px;
    }

    .nav-item i {
        font-size: 26px;
    }

    .nav-item {
        font-size: 13px;
    }
}


/* =============== header ============================ */
/* Header */
.header {
    width: 100%;
    background: #ffffff;
    padding: 14px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    position: sticky;
    top: 0;
    z-index: 999;
}

/* Logo */
.logo-area .logo {
    height: 48px;
    width: auto;
    filter: drop-shadow(0px 2px 3px rgba(0, 0, 0, 0.1));
}

/* Location Box (Premium Chip) */
.location-area {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #e60000;
    ;
    padding: 8px 14px;
    border-radius: 50px;
    color: #f8f8f8;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    /* box-shadow: 0 3px 10px rgba(255, 205, 0, 0.35); */
    transition: 0.25s ease;
}

.location-area i {
    font-size: 18px;
}

/* Hover Effect */
.location-area:hover {
    transform: translateY(-2px);
    /* box-shadow: 0 6px 15px rgba(255, 205, 0, 0.45); */
}

/* <!-- =============== offers pop ups =============== --> */

/* 1. Backdrop with Smooth Blur */
.promo-popup {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000000;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.promo-popup.show {
    opacity: 1;
    display: flex;
}

/* 2. Premium Popup Card */
.popup-card {
    background: #fff;
    width: 400px;
    max-width: 90%;
    border-radius: 28px;
    overflow: visible;
    /* For the close button */
    position: relative;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.8) translateY(20px);
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    /* Elastic Animation */
    text-align: center;
}

.promo-popup.show .popup-card {
    transform: scale(1) translateY(0);
}

/* 3. Image Section */
.popup-image-container {
    position: relative;
    padding: 10px;
}

#popupImage {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
    object-fit: cover;
}

.offer-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #ffc800;
    color: #000;
    font-weight: 800;
    font-size: 11px;
    padding: 5px 12px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* 4. Content Section */
.popup-content {
    padding: 20px 25px 30px;
}

.popup-content h3 {
    margin: 0;
    font-size: 22px;
    font-weight: 800;
    color: #1a1a1a;
}

.popup-content p {
    color: #666;
    font-size: 14px;
    margin: 10px 0 20px;
    line-height: 1.5;
}

/* 5. Luxury CTA Button */
.popup-cta {
    background: #c41414;
    color: white;
    border: none;
    width: 100%;
    padding: 14px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    transition: 0.3s;
    box-shadow: 0 8px 20px rgba(196, 20, 20, 0.3);
}

.popup-cta:hover {
    background: #a01111;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(196, 20, 20, 0.4);
}

/* 6. Floating Close Button */
.close-btn {
    position: absolute;
    top: -15px;
    right: -15px;
    background: #fff;
    color: #000;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: 0.3s;
    border: 1px solid #eee;
}

.close-btn:hover {
    transform: rotate(90deg) scale(1.1);
    background: #f8f8f8;
}

@media (max-width: 480px) {
    .popup-card {
        width: 88%;
    }

    .popup-content h3 {
        font-size: 19px;
    }
}


/* <!-- ========================= Navigation ========================= --> */

:root {
    --primary: #c41414;
    --glass: rgba(255, 255, 255, 0.9);
    --shadow: rgba(0, 0, 0, 0.1);
}

.nav-system {
    position: fixed;
    z-index: 10000;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

/* --- DESKTOP: Right Side Premium Pill --- */
@media (min-width: 1025px) {
    .nav-system {
        right: 25px;
        /* Moved to Right */
        top: 50%;
        transform: translateY(-50%);
        background: var(--glass);
        backdrop-filter: blur(15px);
        border-radius: 100px;
        padding: 30px 15px;
        box-shadow: -5px 0 30px var(--shadow);
        border: 1px solid rgba(255, 255, 255, 0.6);
    }

    .nav-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .nav-logo img {
        width: 45px;
        filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
        margin-bottom: 10px;
    }

    .nav-item .label {
        display: none;
    }

    /* Highlight Effect on Desktop */
    .nav-item {
        position: relative;
    }

    .nav-item::after {
        content: '';
        position: absolute;
        right: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 4px;
        height: 0;
        background: var(--primary);
        border-radius: 10px;
        transition: 0.3s;
    }

    .nav-item:hover::after,
    .nav-item.active::after {
        height: 20px;
        right: -15px;
    }
}

/* --- MOBILE: Same as before (Bottom) --- */
@media (max-width: 1024px) {
    .nav-system {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-width: 420px;
        background: var(--glass);
        backdrop-filter: blur(15px);
        border-radius: 30px;
        padding: 12px 15px;
        box-shadow: 0 10px 40px var(--shadow);
        border: 1px solid rgba(255, 255, 255, 0.5);
    }

    .desktop-only {
        display: none;
    }

    .nav-links {
        display: flex;
        justify-content: space-around;
        width: 100%;
        align-items: center;
    }

    .nav-item .label {
        font-size: 10px;
        font-weight: 700;
        margin-top: 4px;
    }
}

/* --- Attractive Effects --- */
.icon-box {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    font-size: 22px;
    color: #666;
}

.nav-item:hover .icon-box,
.nav-item.active .icon-box {
    background: white;
    color: var(--primary);
    box-shadow: 0 5px 15px rgba(196, 20, 20, 0.2);
    transform: scale(1.1);
}

.icon-rel {
    position: relative;
}

#cartCountBadge {
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--primary);
    color: white;
    font-size: 9px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    border: 2px solid #fff;
}

.user-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    transition: 0.3s;
}

.nav-item.active .user-avatar,
.nav-item:hover .user-avatar {
    border-color: var(--primary);
    transform: scale(1.1);
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-item {
    text-decoration: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
}



/* Improved CSS for Search Experience */


/* Highlight matching results */
.card {
    transition: transform 0.2s ease, opacity 0.2s ease;
}

/* Ensure smooth transition when items disappear */
.menu-group {
    transition: opacity 0.3s ease;
}

/* Mobile search styling fix */
@media (max-width: 768px) {
    .header-center {
        flex: 1;
        margin: 0 10px;
    }

    .search-container {
        width: 100%;
        background: #f5f5f5;
        border-radius: 8px;
        padding: 5px 10px;
        display: flex;
        align-items: center;
    }

    #headerSearch {
        border: none;
        background: transparent;
        width: 100%;
        outline: none;
        font-size: 14px;
    }
}


/* <!-- ========================= Navigation ========================= --> */

:root {
    --brand-red: #D61355;
    /* Updated background to #fffdf6 as requested */
    --nav-bg: #f2f2f7;
    --icon-inactive: #A0A0A0;
    --icon-active: var(--brand-red);
}

/* --- MOBILE VIEW (High-End App Look) --- */
@media (max-width: 1024px) {
    .nav-system {
        position: fixed;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        width: 88%;
        max-width: 450px;
        height: 68px;
        background: var(--nav-bg);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 30px;
        /* Subtler shadow for the cleaner white background */
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(0, 0, 0, 0.03);
        z-index: 999999;
        display: flex;
        align-items: center;
    }

    .nav-wrapper {
        width: 100%;
        padding: 0 15px;
    }

    .desktop-only {
        display: none;
    }

    .nav-links {
        display: flex;
        justify-content: space-around;
        align-items: center;
        width: 100%;
    }

    .nav-item.active::after {
        content: '';
        position: absolute;
        bottom: -12px;
        width: 6px;
        height: 6px;
        background: var(--brand-red);
        border-radius: 50%;
        box-shadow: 0 0 12px var(--brand-red);
    }
}

/* --- DESKTOP VIEW --- */
@media (min-width: 1025px) {
    .nav-system {
        position: fixed;
        right: 30px;
        top: 50%;
        transform: translateY(-50%);
        width: 75px;
        background: var(--nav-bg);
        border-radius: 40px;
        padding: 35px 0;
        box-shadow: 0 15px 50px rgba(0, 0, 0, 0.06);
        z-index: 999999;
        border: 1px solid rgba(0, 0, 0, 0.02);
    }

    .nav-wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 45px;
    }

    .nav-item.active::before {
        content: '';
        position: absolute;
        left: -20px;
        top: 50%;
        transform: translateY(-50%);
        width: 5px;
        height: 22px;
        background: var(--brand-red);
        border-radius: 10px;
    }
}

/* --- Common Styles --- */
.nav-item {
    position: relative;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-box {
    font-size: 26px;
    color: var(--icon-inactive);
    transition: 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.nav-item.active .icon-box {
    color: var(--brand-red);
    transform: scale(1.18) translateY(-3px);
}

#cartCountBadge {
    position: absolute;
    top: -4px;
    right: -10px;
    background: var(--brand-red);
    color: white;
    font-size: 10px;
    min-width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Border matches the new #fffdf6 background */
    border: 2px solid var(--nav-bg);
    font-weight: 800;
}

.user-avatar-container {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid #c41414;
    background: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.user-avatar-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.nav-item.active .user-avatar-container {
    border-color: var(--brand-red);
    box-shadow: 0 4px 12px rgba(214, 19, 85, 0.2);
}


/* Mobile only */
@media (max-width: 768px) {

    /* All nav icons base style */
    .nav-item .icon-box {
        border: 2px solid transparent;
        border-radius: 12px;
        padding: 8px;
        transition: all 0.3s ease;
    }

    /* Non-active tabs → white border */
    .nav-item:not(.active) .icon-box {
        border: 2px solid #ffffff;
    }

    /* Active tab → no border (clean look) */
    .nav-item.active .icon-box {
        border: 2px solid transparent;
    }

    /* Cart badge should stay visible */
    #cartCountBadge {
        border: none;
    }
}



/* <!-- ==================== Header ========================= --> */



:root {
    --primary: #c41414;
    --bg-light: #f8f9fa;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    background: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

/* Logo Area */
.header-left {
    cursor: pointer;
    flex-shrink: 0;
}

.header-logo {
    height: 35px;
    width: auto;
    object-fit: contain;
}

/* Center: Search Bar (Responsive) */
.header-center {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    min-width: 0;
    /* Prevents flex items from overflowing */
}

.search-container {
    position: relative;
    background: var(--bg-light);
    border-radius: 50px;
    padding: 6px 12px;
    display: flex;
    align-items: center;
    transition: 0.3s;
    border: 1px solid transparent;
    width: 100%;
    max-width: 400px;
}

.search-container:focus-within {
    background: #fff;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(196, 20, 20, 0.1);
}

.search-icon {
    color: #999;
    font-size: 16px;
    margin-right: 8px;
}

#headerSearch {
    border: none;
    background: none;
    outline: none;
    width: 100%;
    font-size: 13px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

/* Right Side Actions */
.header-right {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.location-pill {
    display: flex;
    align-items: center;
    gap: 4px;
    background: #fff5f5;
    color: var(--primary);
    padding: 6px 10px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    cursor: pointer;
    border: 1px solid #fee2e2;
}

.icon-action {
    position: relative;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-light);
    border-radius: 50%;
    color: #333;
    font-size: 18px;
    cursor: pointer;
}

.notif-dot {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 7px;
    height: 7px;
    background: var(--primary);
    border-radius: 50%;
    border: 1.5px solid #fff;
}

.profile-ring {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    padding: 1.5px;
    border: 2px solid var(--primary);
    cursor: pointer;
    overflow: hidden;
}

.profile-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* MOBILE SPECIFIC OPTIMIZATION */
@media (max-width: 600px) {
    .header {
        padding: 8px 12px;
    }

    .header-logo {
        height: 30px;
    }

    .search-container {
        padding: 5px 10px;
    }

    .search-icon {
        font-size: 14px;
    }

    #headerSearch {
        font-size: 12px;
    }

    .hidden {
        display: none !important;
    }

    /* Ensure center stays center even with different sized logo/profile */
    .header-left,
    .header-right {
        flex: 1;
    }

    .header-right {
        justify-content: flex-end;
    }

    .header-center {
        flex: 3;
    }
}

/* Standard Desktop Toggle */
@media (min-width: 601px) {
    .md-flex {
        display: flex !important;
    }
}



/* <!-- ======================= Hero Section ================= --> */

:root {
    --brand-red: #c41414;
    --brand-gray: #8e8e93;
    --brand-black: #1c1c1e;
}

.hero-header-area {
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    overflow-x: hidden;
}

/* ============================================================
       DESKTOP STYLE (Default)
    ============================================================ */

/* HIDE TEXT ON DESKTOP */
.user-greeting-box {
    display: none;
}

.hero-header-area {
    padding: 0;
    /* Remove top padding for full desktop view */
}

.hero-slider-wrapper {
    width: 100%;
    max-width: 100%;
    /* Full width for desktop */
    height: 450px;
    /* Professional banner height */
    position: relative;
    overflow: hidden;
    background: #1a1a1a;
}

.slider-container {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

.slide {
    min-width: 100%;
    height: 100%;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* ============================================================
       MOBILE STYLE (Max-width 768px)
    ============================================================ */
@media (max-width: 768px) {
    .hero-header-area {
        padding: 20px 0;
    }

    /* SHOW TEXT ONLY ON MOBILE */
    .user-greeting-box {
        display: block;
        width: 90%;
        margin-bottom: 20px;
        animation: fadeIn 0.8s ease-in;
    }

    .hi-text {
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        color: var(--brand-gray);
        margin: 0;
    }

    .hero-tagline {
        font-family: 'Poppins', sans-serif;
        font-size: 26px;
        font-weight: 800;
        color: var(--brand-red);
        line-height: 1.1;
        margin-top: 5px;
    }

    /* CARD LOOK FOR MOBILE */
    .hero-slider-wrapper {
        width: 92%;
        height: 220px;
        border-radius: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
}

/* Navigation Dots Styling */
.slider-controls {
    margin-top: 20px;
    margin-bottom: 20px;
}

.slider-dots {
    display: flex;
    gap: 10px;
    background: #f2f2f7;
    padding: 6px 14px;
    border-radius: 50px;
}

.dot {
    width: 7px;
    height: 7px;
    background: #d1d1d6;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.4s;
}

.dot.active {
    width: 25px;
    background: var(--brand-red);
    border-radius: 10px;
}

.slider-overlay-left,
.slider-overlay-right {
    position: absolute;
    top: 0;
    width: 5%;
    height: 100%;
    z-index: 2;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}


/* <!-- ======================= Menu Section ================= --> */


/* Sticky Category Bar */
.category-wrapper {
    position: sticky;
    top: 0;
    /* Adjust this if you have a fixed top nav */
    background: white;
    z-index: 100;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.category-bar {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 5px 15px;
    scrollbar-width: none;
    /* Hide scrollbar Firefox */
}

.category-bar::-webkit-scrollbar {
    display: none;
    /* Hide scrollbar Chrome/Safari */
}

.category-btn {
    white-space: nowrap;
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #e5e7eb;
    background: #f9fafb;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
}

.category-btn.active {
    background: #c41414;
    /* Your brand color */
    color: white;
    border-color: #c41414;
}

:root {
    --brand-red: #DC2626;
    --brand-dark: #1a1a1a;
    --text-main: #111827;
    --text-muted: #6b7280;
    --bg-light: #f9fafb;
    --card-radius: 20px;
    --inner-radius: 14px;
}

body {
    background-color: var(--bg-light);
    font-family: 'Poppins', sans-serif;
    margin: 0;
}

/* --- Glassmorphism Sticky Header --- */
.category-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.category-bar {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 0 15px;
    scrollbar-width: none;
    /* Firefox */
    max-width: 1200px;
    margin: 0 auto;
}

.category-bar::-webkit-scrollbar {
    display: none;
}

/* Chrome/Safari */

.category-btn {
    padding: 10px 22px;
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 100px;
    color: var(--brand-dark);
    font-weight: 600;
    font-size: 13px;
    white-space: nowrap;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.category-btn.active {
    background: var(--brand-red);
    color: white;
    border-color: var(--brand-red);
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.25);
}

/* --- Professional Grid --- */
.menu-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 15px;
}

.cards {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, 1fr);
    /* 2 columns on mobile */
}

@media (min-width: 768px) {
    .cards {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .cards {
        grid-template-columns: repeat(4, 1fr);
        gap: 24px;
    }
}

/* --- High-End Card Design --- */
.card {
    background: white;
    border-radius: var(--card-radius);
    padding: 10px;
    border: 1px solid #f3f4f6;
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.img-container {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    border-radius: var(--inner-radius);
    overflow: hidden;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.card:hover img {
    transform: scale(1.1);
}

.off-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--brand-red);
    color: white;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 700;
    z-index: 10;
}

.card-info {
    padding: 12px 4px 4px 4px;
}

.card-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0 0 8px 0;
    line-height: 1.2;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.price-now {
    font-size: 18px;
    font-weight: 800;
    color: var(--brand-red);
    display: block;
}

.old-price {
    font-size: 12px;
    text-decoration: line-through;
    color: var(--text-muted);
}

.add-btn {
    width: 38px;
    height: 38px;
    background: var(--brand-dark);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: 0.2s;
}

.add-btn:active {
    transform: scale(0.9);
}


/* <!-- ======================= Footer ==================== --> */


/* ================================================================
   LUX FOOTER MAIN STYLES (Fixed for Desktop Bottom)
   ================================================================ */
.lux-footer {
    background: #c41414;
    color: white;
    padding: 60px 0 20px 0;
    border-top: 5px solid #ffc800;
    font-family: "Poppins", sans-serif;
    width: 100%;
    margin-top: auto;
    /* Important: Pushes footer down in flex container */
}

.lux-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

/* Desktop Layout */
.lux-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
    padding-bottom: 40px;
}

/* --- Brand Section --- */
.lux-brand {
    display: flex;
    align-items: center;
    gap: 20px;
}

.lux-logo {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
    border: 3px solid rgba(255, 255, 255, 0.2);
}

.lux-brand-text h2 {
    font-size: 26px;
    font-weight: 800;
    margin: 0;
}

/* --- Contact Details --- */
.lux-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px 30px;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.icon-circle {
    background: white;
    color: #c41414;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s ease;
}

.info-item:hover .icon-circle {
    background: #ffc800;
    transform: translateY(-3px);
}

/* --- Bottom Bar --- */
.lux-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

/* ================================================================
   MOBILE RESPONSIVE LOGIC
   ================================================================ */
@media (max-width: 992px) {
    .lux-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .lux-details {
        grid-template-columns: 1fr;
        align-items: flex-start;
        text-align: left;
    }

    .lux-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
        /* Padding to stay above mobile nav-system */
        padding: 20px 5% 110px 5%;
    }
}

/* ============================================================= CART PAGE ============================================================================ */
/* 1. External Imports (Must be at the very top) */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@4.2.0/fonts/remixicon.css');

/* ============================================================= 
   CART PAGE STYLES
   ============================================================= */

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f9fafb;
    /* Very light red tint background */
    color: #1F2937;
    margin: 0;
    padding: 0;
}

.cart-card {
    background: white;
    border-radius: 24px;
    transition: all 0.3s ease;
    border: 1px solid rgba(196, 20, 20, 0.05);
}

.cart-card:hover {
    box-shadow: 0 10px 25px -5px rgba(196, 20, 20, 0.1);
}

.qty-btn {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    background: #f8e7e7;
    color: #c41414;
    font-weight: bold;
    transition: 0.2s;
}

.qty-btn:hover {
    background: #c41414;
    color: white;
}

.summary-sticky {
    position: sticky;
    top: 2rem;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 20px -1px rgba(196, 20, 20, 0.08);
}

.checkout-btn {
    background: #c41414;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.checkout-btn:hover {
    background: #a31111;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(196, 20, 20, 0.3);
}

.img-container {
    background: #fdf2f2;
    border-radius: 18px;
    overflow: hidden;
}

/* Custom scrollbar to match theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #fdf2f2;
}

::-webkit-scrollbar-thumb {
    background: #c41414;
    border-radius: 10px;
}