/* =====================================================
   PhantomShop — Purple Premium Theme
   Color Palette:
     Left/Dark:    #4A2390
     Main:         #54269A
     Right/Accent: #6B30B5
     Light BG:     #B9B3D9
   ===================================================== */

/* =====================================================
   © 2026 AhsanHabib (WhatsApp: +8801907738499)
   Authorized Use Only. Proprietary Software.
   ===================================================== */

/* =========== GOOGLE FONT IMPORT =========== */
@import url("https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap");

/* =========== CSS DESIGN TOKENS =========== */
:root {
    --purple-dark: hsl(0, 0%, 0%);
    --purple-main: hsl(0, 0%, 0%);
    --purple-accent: #000000;
    --purple-light: #b9b3d9;
    --purple-soft-bg: #f0eef8;
    --purple-gradient: linear-gradient(135deg, #020005 0%, #6b30b5 100%);
    --purple-gradient-rev: linear-gradient(135deg, #6b30b5 0%, #4a2390 100%);
    --purple-glow: rgba(107, 48, 181, 0.25);
    --purple-glow-sm: rgba(107, 48, 181, 0.12);
    --green-success: #21ba45;
    --dark-footer: #160d2e;
    --body-bg: #f4f2fb;
    --card-bg: #ffffff;
    --text-primary: #1a1030;
    --text-muted: #7a7488;
    --text-price: #54269a;
    --text-old-price: #aaaaaa;
    --border-light: #ddd8f0;
    --shadow-card: 0 2px 16px rgba(74, 35, 144, 0.08);
    --shadow-hover: 0 8px 30px rgba(107, 48, 181, 0.22);
    --radius-card: 0;
    --radius-btn: 0;
    --transition: all 0.28s ease;

    /* Luxury Gold Tokens */
    --luxury-gold: #d4af37;
    --luxury-gold-light: #f1d592;
    --luxury-gold-dark: #aa841c;
    --gold-gradient: linear-gradient(
        135deg,
        #d4af37 0%,
        #f1d592 50%,
        #aa841c 100%
    );
    --gold-glow: rgba(212, 175, 55, 0.4);
    --nav-bg: rgba(30, 15, 60, 0.98);
}

/* =========== DEVELOPER CREDIT STYLING =========== */
.developer-credit-link {
    color: #4dbc60 !important; /* WhatsApp Green */
    font-weight: 700 !important;
    text-decoration: none !important;
    transition: all 0.3s ease-in-out !important;
    position: relative;
    padding-bottom: 2px;
}

.developer-credit-link::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: #4dbc60;
    transition: width 0.3s ease-in-out;
}

.developer-credit-link:hover {
    color: #ffffff !important;
    text-shadow: 0 0 10px rgba(77, 188, 96, 0.8);
}

.developer-credit-link:hover::after {
    width: 100%;
}

/* =========== GLOBAL RESET & BODY =========== */
* {
    font-family: "Hind Siliguri", "Outfit", sans-serif;
    box-sizing: border-box;
}

body {
    background: var(--body-bg) !important;
    background-attachment: fixed !important;
    color: var(--text-primary) !important;
}

body p,
body span,
body h1,
body h2,
body h3,
body h4,
body h5,
body h6,
body li,
body label,
body td,
body th,
body strong,
body b,
body div {
    color: var(--text-primary);
}

a {
    transition: var(--transition);
}

/* =========== TOP ANNOUNCEMENT BAR =========== */
.top_header {
    background: var(--purple-dark) !important;
    min-height: 38px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

.top_header,
.top_header p,
.top_header span,
.top_header a,
.top_header div,
.top_header marquee {
    color: #ffffff !important;
    font-size: 13px !important;
    font-weight: 500 !important;
}

.top_header a.bg-light {
    background: rgba(255, 255, 255, 0.18) !important;
    color: #ffffff !important;
    border-radius: 4px !important;
}

/* =========== DESKTOP MAIN HEADER =========== */
.main-header,
.logo-area {
    background: #ffffff !important;
    border-bottom: 1px solid #eeeeee !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05) !important;
}

.main-header *,
.logo-area * {
    color: #333333 !important;
}

/* =========== MOBILE HEADER =========== */
.mobile-header {
    background: #ffffff !important;
    border-bottom: 1px solid #eeeeee !important;
}

.mobile-header * {
    color: #333333 !important;
}

/* =========== SEARCH BAR =========== */
.mobile-search form,
.main-search form {
    border-radius: 4px !important;
    overflow: hidden !important;
    background: #ffffff !important;
    border: 1px solid #333333 !important;
    transition: var(--transition) !important;
    display: flex !important;
}

.search_keyword,
.msearch_keyword {
    background: #f8f8f8 !important;
    border: none !important;
    color: #333333 !important;
    font-weight: 500 !important;
    border-radius: 0 !important;
    padding-left: 15px !important;
}

.search_keyword::placeholder,
.msearch_keyword::placeholder {
    color: #999999 !important;
}

.mobile-search form button,
.main-search form button {
    background: #e30613 !important; /* Red Button */
    border-radius: 0 !important;
    border: none !important;
    color: #ffffff !important;
    padding: 0 20px !important;
    transition: var(--transition) !important;
}

.mobile-search form button:hover,
.main-search form button:hover {
    background: #c00510 !important;
}

/* Icon specific color for search icon inside red button */
.main-search form button i {
    color: #ffffff !important;
}

/* =========== MOBILE SIDE MENU =========== */
.mobile-menu {
    background: #ffffff !important;
    border-right: 1px solid var(--border-light) !important;
    box-shadow: 4px 0 24px rgba(74, 35, 144, 0.12) !important;
}

.mobile-menu * {
    color: var(--text-primary) !important;
}

.mobile-menu-logo {
    background: var(--purple-gradient) !important;
}

.mobile-menu-logo * {
    color: #ffffff !important;
}

.mobile-menu .menu-category-name {
    border-bottom: 1px solid var(--border-light) !important;
    padding: 12px 16px !important;
}

.mobile-menu .menu-category-name:hover {
    background: var(--purple-soft-bg) !important;
    color: var(--purple-main) !important;
    padding-left: 22px !important;
}

/* =========== SECTION TITLES =========== */
.section-title-header,
.sec_title h3,
.sec-title {
    position: relative !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    color: var(--text-primary) !important;
    font-size: 18px !important;
    padding-bottom: 10px !important;
}

.section-title-name {
    color: var(--text-primary) !important;
    font-weight: 700 !important;
    font-size: 17px !important;
    padding-bottom: 6px !important;
    border-bottom: 3px solid var(--purple-accent) !important;
    display: inline-block !important;
}

.view_more_btn {
    background: var(--purple-gradient) !important;
    color: #ffffff !important;
    border-radius: var(--radius-btn) !important;
    padding: 5px 14px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    transition: var(--transition) !important;
    text-decoration: none !important;
    box-shadow: 0 3px 10px var(--purple-glow-sm) !important;
}

.view_more_btn:hover {
    background: var(--purple-dark) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px var(--purple-glow) !important;
}

/* =========== PRODUCT CARDS =========== */
.product_item,
.product-item,
.wist_item,
.product-inner,
.product-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-card) !important;
    box-shadow: var(--shadow-card) !important;
    transition: var(--transition) !important;
    overflow: hidden !important;
    position: relative !important;
}

.product_item:hover,
.product-item:hover,
.wist_item:hover,
.product-inner:hover,
.product-card:hover {
    transform: translateY(-6px) !important;
    box-shadow: var(--shadow-hover) !important;
    border-color: var(--purple-light) !important;
    z-index: 10;
}

/* Image zoom on hover */
.product_item .pro_img,
.product-item .pro_img {
    overflow: hidden !important;
    border-radius: var(--radius-card) var(--radius-card) 0 0 !important;
}

.product_item .pro_img img,
.product-item .pro_img img {
    transition: transform 0.42s ease !important;
    width: 100% !important;
}

.product_item:hover .pro_img img,
.product-item:hover .pro_img img {
    transform: scale(1.08) !important;
}

/* Product Name & Description */
.pro_name a,
.pro_des .pro_name a {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
    transition: var(--transition) !important;
    text-decoration: none !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
}

.pro_name a:hover {
    color: var(--purple-accent) !important;
}

/* Price Display */
.pro_price p,
.pro_price {
    color: var(--text-primary) !important;
}

.pro_price del,
.pro_price s {
    color: var(--text-old-price) !important;
    font-size: 12px !important;
    font-weight: 400 !important;
}

.pro_price p > *:last-child,
.pro_price p {
    color: #000000 !important;
    font-size: 18px !important;
    font-weight: 700 !important;
}

/* Sale/Discount Badge */
.sale-badge,
.sale-badge-text,
.sale-badge-box {
    background: #ff0018 !important;
    border-radius: 50% !important;
    color: #ffffff !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    padding: 0 !important;
    width: 45px !important;
    height: 45px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-direction: column !important;
}

.sale-badge-text p {
    color: #ffffff !important;
    margin: 0 !important;
    font-weight: 700 !important;
    font-size: 11px !important;
}

.sale-badge-text {
    color: #ffffff !important;
    font-size: 11px !important;
}

.pro_btn, .cart_btn, .order_button {
    width: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

.pro_btn form {
    width: 100% !important;
    margin: 0 !important;
    display: block !important;
}

/* =========== PRODUCT ACTION BUTTONS (Standardized) =========== */
.pro_btn .cart_btn button,
.pro_btn .order_button a,
.addcartbutton,
.addcartbutton span,
.submit-btn, .order_now_btn, .add_cart_btn,
button[type="submit"].btn,
input[type="submit"].btn {
    background: #ff0000 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 0 !important;
    font-weight: 700 !important;
    font-size: 14px !important;
    padding: 10px 16px !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.2) !important;
    cursor: pointer;
    width: 100% !important;
    text-align: center !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 1 !important;
    height: 38px !important;
    line-height: normal !important;
    margin: 0 !important;
}

.pro_btn .cart_btn button:hover,
.pro_btn .order_button a:hover,
.addcartbutton:hover,
.submit-btn:hover,
.order_now_btn:hover,
.add_cart_btn:hover {
    background: #000000 !important;
    color: #ffffff !important;
    transform: translateY(-3px) scale(1.02) !important;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4), 0 0 15px var(--gold-glow) !important;
    border: none !important;
}

/* Reset any interfering sliding animations from style.css */
.cart_btn.order_button a::after,
.cart_btn.order_button a span {
    display: inline-block !important;
    position: relative !important;
    top: 0 !important;
    height: auto !important;
    width: auto !important;
    background: transparent !important;
    transition: none !important;
}

/* =========== GENERAL BUTTONS =========== */
.btn-primary,
.btn-success,
.btn-pink,
.go_cart,
.cart_store,
.checkout-btn,
.button-primary {
    background: var(--purple-gradient) !important;
    border-color: var(--purple-main) !important;
    color: #ffffff !important;
    border-radius: var(--radius-btn) !important;
    transition: var(--transition) !important;
    box-shadow: 0 2px 10px var(--purple-glow-sm) !important;
}

.btn-primary:hover,
.btn-success:hover,
.go_cart:hover,
.cart_store:hover {
    background: var(--purple-dark) !important;
    border-color: var(--purple-dark) !important;
    color: #ffffff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px var(--purple-glow) !important;
}

/* =========== AUTH PAGES (LOGIN / REGISTER) =========== */
.auth-section {
    background: var(--body-bg) !important;
    min-height: 100vh !important;
    display: flex !important;
    align-items: center !important;
}

.form-content {
    background: var(--card-bg) !important;
    border-radius: 16px !important;
    box-shadow: var(--shadow-card) !important;
    border: 1px solid var(--border-light) !important;
    padding: 32px 28px !important;
}

.auth-title {
    color: var(--purple-main) !important;
    font-size: 22px !important;
    font-weight: 700 !important;
    text-align: center !important;
    margin-bottom: 24px !important;
    border-bottom: 2px solid var(--purple-soft-bg) !important;
    padding-bottom: 14px !important;
}

.form-content label {
    color: var(--text-primary) !important;
    font-weight: 600 !important;
    font-size: 14px !important;
}

.form-content .submit-btn {
    background: var(--purple-gradient) !important;
    color: #ffffff !important;
    border-radius: 30px !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    padding: 10px 0 !important;
    width: 100% !important;
    box-shadow: 0 4px 18px var(--purple-glow) !important;
}

.form-content .submit-btn:hover {
    background: var(--purple-dark) !important;
    transform: translateY(-2px) !important;
}

.no-account p,
.register-now p {
    color: var(--text-muted) !important;
    font-size: 14px !important;
}

.no-account a,
.register-now a {
    color: var(--purple-main) !important;
    font-weight: 600 !important;
}

.forget-link {
    color: var(--purple-main) !important;
    font-size: 13px !important;
}

/* =========== FORM INPUTS =========== */
.form-control,
input[type="text"],
input[type="email"],
input[type="number"],
input[type="password"],
select,
textarea {
    background: #ffffff !important;
    border: 1.5px solid #d8d0ec !important;
    color: var(--text-primary) !important;
    border-radius: 8px !important;
    transition: var(--transition) !important;
}

.form-control:focus,
input:focus,
select:focus {
    border-color: var(--purple-accent) !important;
    box-shadow: 0 0 0 3px rgba(107, 48, 181, 0.12) !important;
    outline: none !important;
}

.form-control::placeholder {
    color: var(--text-muted) !important;
}

.form-control option {
    background: #ffffff !important;
    color: var(--text-primary) !important;
}

/* =========== CATEGORY ROW =========== */
.cat_item {
    text-align: center !important;
    transition: var(--transition) !important;
    background: #ffffff !important;
    border: 1px solid #eaeaea !important;
    border-radius: 8px !important;
    padding: 15px 5px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    height: 140px !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05) !important;
}

.cat_item:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1) !important;
    border-color: #ddd !important;
}

.cat_img {
    width: 100% !important;
    height: 85px !important;
    border-radius: 0 !important;
    overflow: hidden !important;
    margin: 0 auto 8px !important;
    border: none !important;
    background: transparent !important;
    transition: var(--transition) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.cat_item:hover .cat_img {
    transform: scale(1.05) !important;
}

.cat_img img {
    width: auto !important;
    max-width: 90% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.cat_name a {
    font-size: 13px !important;
    font-weight: 500 !important;
    color: #333333 !important;
    text-align: center !important;
    display: block !important;
    line-height: 1.2 !important;
    padding: 0 5px !important;
}

.cat_item:hover .cat_name a {
    color: var(--purple-accent) !important;
}

/* =========== SLIDER SECTION =========== */
.slider-item img {
    border-radius: 12px !important;
}

/* =========== COMBINED OFFER CARDS =========== */
.hot-deal-product,
.card {
    background: var(--card-bg) !important;
    border: 1px solid var(--border-light) !important;
    border-radius: var(--radius-card) !important;
    box-shadow: var(--shadow-card) !important;
    transition: var(--transition) !important;
    overflow: hidden !important;
}

.hot-deal-product:hover,
.card:hover {
    transform: translateY(-5px) !important;
    box-shadow: var(--shadow-hover) !important;
    border-color: var(--purple-light) !important;
}

/* =========== CART / CHECKOUT =========== */
.checkout-shipping input,
.checkout-area .form-control {
    background: #ffffff !important;
    border: 1.5px solid #d8d0ec !important;
    color: var(--text-primary) !important;
}

/* =========== PAYMENT METHOD SELECTION INDICATOR FIX =========== */
.payment-methods {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 15px !important;
    margin-top: 15px !important;
    margin-bottom: 25px !important;
}

.payment-methods .form-check {
    display: inline-flex !important;
    align-items: center !important;
    cursor: pointer !important;
    margin: 0 !important;
}

.payment-methods .form-check-input {
    appearance: none !important;
    -webkit-appearance: none !important;
    width: 22px !important;
    height: 22px !important;
    border: 2px solid var(--purple-main) !important;
    border-radius: 50% !important;
    background: #ffffff !important;
    position: relative !important;
    cursor: pointer !important;
    margin-right: 10px !important;
    margin-top: 0 !important;
    outline: none !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
}

.payment-methods .form-check-input:checked::after {
    content: "" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    width: 12px !important;
    height: 12px !important;
    background-color: var(--purple-main) !important;
    border-radius: 50% !important;
    display: block !important;
}

.payment-methods .form-check-input:checked {
    border-color: var(--purple-main) !important;
    box-shadow: 0 0 0 4px var(--purple-glow-sm) !important;
}

.payment-methods .form-check-label {
    cursor: pointer !important;
    font-size: 16px !important;
    color: var(--text-primary) !important;
    margin: 0 !important;
    font-weight: 500 !important;
    user-select: none !important;
}

.payment-methods .form-check-input:checked + .form-check-label {
    color: var(--purple-main) !important;
    font-weight: 700 !important;
}

/* col-end */

/* =========== TABLE STYLES (Orders, etc) =========== */
.table td,
.table th {
    color: var(--text-primary) !important;
    border-color: #e4deee !important;
}

.table-striped tbody tr:nth-of-type(odd) {
    background: #f5f2fb !important;
}

/* =========== FOOTER =========== */
.footer-top,
.footer-bottom,
footer,
.main-footer {
    background: var(--dark-footer) !important;
    border: none !important;
    box-shadow: none !important;
}

.footer-top *,
.footer-bottom *,
footer *,
.main-footer * {
    color: rgba(255, 255, 255, 0.82) !important;
}

.footer-top a:hover,
.footer-bottom a:hover,
footer a:hover {
    color: var(--purple-light) !important;
}

/* =========== MOBILE BOTTOM NAVIGATION REDESIGN =========== */
@media (max-width: 767px) {
    .footer_nav {
        display: flex !important;
        background: var(--nav-bg) !important;
        backdrop-filter: blur(15px);
        border-top: 1px solid rgba(212, 175, 55, 0.3) !important;
        box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.6) !important;
        padding: 10px 0 !important;
        height: 75px !important;
        align-items: center !important;
        justify-content: center !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        z-index: 9999 !important;
    }

    .footer_nav ul {
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        display: grid !important;
        grid-template-columns: repeat(5, 1fr) !important;
        align-items: center !important;
        justify-items: center !important;
    }

    .footer_nav ul li {
        list-style: none !important;
        display: block !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
    }

    .footer_nav ul li a {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-decoration: none !important;
        color: #ffffff !important;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative !important;
        gap: 4px !important;
        width: 100% !important;
        height: 100% !important;
        cursor: pointer !important;
        opacity: 0.85 !important;
    }

    /* Icon styling with distinct colors */
    .footer_nav ul li a span i {
        font-size: 22px !important;
        transition: all 0.3s ease !important;
    }

    /* Assigning individual colors for maximum visibility and professional look */
    .footer_nav ul li:nth-child(1) a span i {
        color: #ced4da !important;
        text-shadow: 0 0 10px rgba(206, 212, 218, 0.2);
    } /* Category - Silver */
    .footer_nav ul li:nth-child(2) a span i {
        color: #25d366 !important;
        text-shadow: 0 0 10px rgba(37, 211, 102, 0.3);
    } /* Message - Green */
    .footer_nav ul li:nth-child(3) a span i {
        color: #ffcc33 !important;
        text-shadow: 0 0 15px rgba(255, 204, 51, 0.4);
    } /* Home - Vibrant Gold */
    .footer_nav ul li:nth-child(4) a span i {
        color: #ff4d4d !important;
        text-shadow: 0 0 10px rgba(255, 77, 77, 0.3);
    } /* Cart - Red */
    .footer_nav ul li:nth-child(5) a span i {
        color: #74c0fc !important;
        text-shadow: 0 0 10px rgba(116, 192, 252, 0.3);
    } /* Login - Blue */

    /* Label styling */
    .footer_nav ul li a span:last-child {
        font-size: 10px !important;
        font-weight: 700 !important;
        text-transform: uppercase !important;
        letter-spacing: 0.8px !important;
        transition: all 0.3s ease !important;
        color: #ffffff !important;
    }

    /* Specific Home Button Reset */
    .footer_nav .mobile_home,
    .footer_nav .mobile_home a {
        background: transparent !important;
        box-shadow: none !important;
        margin-top: 0 !important;
        border: none !important;
        width: 100% !important;
        height: auto !important;
        padding: 0 !important;
        border-radius: 0 !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        position: relative !important;
        top: 0 !important;
    }

    /* Active/Hover Effects */
    .footer_nav ul li a:hover,
    .footer_nav ul li a.active {
        opacity: 1 !important;
        color: #ffffff !important;
    }

    .footer_nav ul li a:hover span i,
    .footer_nav ul li a.active span i {
        transform: translateY(-8px) scale(1.2) !important;
    }

    .footer_nav ul li:nth-child(3) a:hover span i,
    .footer_nav ul li:nth-child(3) a.active span i {
        color: #fff !important;
        text-shadow: 0 0 20px #ffcc33 !important;
    }

    .footer_nav ul li a:hover span:last-child,
    .footer_nav ul li a.active span:last-child {
        transform: translateY(-2px) !important;
        color: #ffffff !important;
    }

    /* Premium Glow Indicator behind icon */
    .footer_nav ul li a::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 45px;
        height: 45px;
        background: currentColor;
        filter: blur(25px);
        opacity: 0;
        transition: opacity 0.4s ease;
        z-index: -1;
    }

    .footer_nav ul li a:hover::before,
    .footer_nav ul li a.active::before {
        opacity: 0.25;
    }

    /* Luxury Micro-interaction: Bottom Highlight Line */
    .footer_nav ul li a::after {
        content: "";
        position: absolute;
        bottom: -10px;
        width: 0;
        height: 3px;
        background: currentColor;
        transition: width 0.3s ease;
        box-shadow: 0 0 10px currentColor;
        border-radius: 4px;
    }

    .footer_nav ul li a:hover::after,
    .footer_nav ul li a.active::after {
        width: 28px;
    }

    /* Cart Badge Luxury Styling */
    .footer_nav .mobilecart-qty {
        background: #ff0018 !important; /* Bright Red for visibility */
        color: #ffffff !important;
        border-radius: 50% !important;
        min-width: 18px !important;
        height: 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 10px !important;
        position: absolute !important;
        top: -10px !important;
        right: -12px !important;
        font-weight: 900 !important;
        box-shadow: 0 0 12px rgba(255, 0, 24, 0.5) !important;
        border: 1.5px solid #ffffff !important;
    }
}

@media (min-width: 768px) {
    .footer_nav {
        display: none !important;
    }
}

/* =========== CATEGORY SIDEBAR (Desktop Left) =========== */
.sidebar-menu,
.catagory_menu,
.heder__category {
    background: #212529 !important; /* Dark Grey/Black */
    border: none !important;
    border-radius: 4px !important;
    overflow: visible !important;
    box-shadow: var(--shadow-card) !important;
}

.catagory_menu ul li a,
.sidebar-menu ul li a {
    color: #ffffff !important;
    transition: var(--transition) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1) !important;
}

.catagory_menu ul li a:hover,
.sidebar-menu ul li a:hover {
    background: var(--purple-soft-bg) !important;
    color: var(--purple-accent) !important;
    padding-left: 20px !important;
}

.all__category__list > a,
.all__category__list > a *,
.all__category__list > a i {
    background: #e30613 !important; /* PhantomBD Red */
    border-radius: 0 !important;
    color: #ffffff !important;
    font-weight: 700 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
}

/* =========== STAR RATINGS =========== */
.fas.fa-star,
.fas.fa-star-half-alt {
    color: #f5b800 !important;
    font-size: 11px !important;
}

.far.fa-star {
    color: #cccccc !important;
    font-size: 11px !important;
}

/* =========== WHATSAPP FLOATING BUTTON =========== */
.float {
    background: #25d366 !important;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.34) !important;
    border: none !important;
    transition: var(--transition) !important;
}

.float:hover {
    background: #20ba5a !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 22px rgba(37, 211, 102, 0.44) !important;
}

/* =========== BADGES (Bootstrap) =========== */
.badge {
    font-weight: 600 !important;
    border-radius: 20px !important;
}

.badge-success,
.bg-success {
    background: var(--green-success) !important;
}

.badge-danger,
.bg-danger {
    background: #e74c3c !important;
}

/* =========== HOME PRODUCT SECTION BG =========== */
.homeproduct {
    background: transparent !important;
    padding: 20px 0 !important;
}

/* =========== PRODUCT DETAILS PAGE =========== */
.product-details-area .details-price {
    color: var(--purple-main) !important;
    font-size: 24px !important;
    font-weight: 800 !important;
}

/* =========== PAGINATION =========== */
.pagination .page-item.active .page-link {
    background: var(--purple-gradient) !important;
    border-color: var(--purple-main) !important;
    color: #ffffff !important;
}

.pagination .page-link {
    color: var(--purple-main) !important;
    border-color: var(--border-light) !important;
}

.pagination .page-link:hover {
    background: var(--purple-soft-bg) !important;
    color: var(--purple-accent) !important;
}

/* =========== ULTRA-PREMIUM TOASTR REDESIGN =========== */
#toast-container {
    top: 25px !important;
    right: 25px !important;
}

#toast-container > div {
    opacity: 1 !important;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.25) !important;
    border-radius: 16px !important;
    padding: 24px 28px 24px 68px !important;
    width: 400px !important;
    max-width: 95vw !important;
    font-family: "Outfit", sans-serif !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    background-image: none !important; /* FORCIBLY REMOVE REPEATING CHECKMARKS */
    background-repeat: no-repeat !important;
    overflow: hidden !important;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

/* Success Toast - Luxury Glassmorphic Green */
#toast-container > .toast-success {
    background-color: rgba(33, 186, 69, 0.95) !important;
}

#toast-container > .toast-success::before {
    content: "\f058"; /* FontAwesome check-circle */
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Error Toast - Luxury Glassmorphic Red */
#toast-container > .toast-error {
    background-color: rgba(231, 76, 60, 0.95) !important;
}

#toast-container > .toast-error::before {
    content: "\f06a"; /* FontAwesome exclamation-circle */
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Warning Toast - Luxury Glassmorphic Orange */
#toast-container > .toast-warning {
    background-color: rgba(243, 156, 18, 0.95) !important;
}

#toast-container > .toast-warning::before {
    content: "\f071"; /* FontAwesome exclamation-triangle */
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Info Toast - Luxury Glassmorphic Blue */
#toast-container > .toast-info {
    background-color: rgba(52, 152, 219, 0.95) !important;
}

#toast-container > .toast-info::before {
    content: "\f05a"; /* FontAwesome info-circle */
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    left: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    color: white;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

#toast-container > div .toast-title {
    font-size: 17px !important;
    font-weight: 700 !important;
    margin-bottom: 6px !important;
    color: white !important;
    letter-spacing: 0.5px !important;
}

#toast-container > div .toast-message {
    font-size: 15px !important;
    font-weight: 400 !important;
    color: rgba(255, 255, 255, 0.95) !important;
    line-height: 1.6 !important;
}

/* Progress Bar Styling */
#toast-container > div .toast-progress {
    height: 5px !important;
    background: rgba(255, 255, 255, 0.4) !important;
    opacity: 1 !important;
    bottom: 0 !important;
    top: auto !important;
}

/* Close Button */
#toast-container > div .toast-close-button {
    top: 15px !important;
    right: 15px !important;
    color: white !important;
    opacity: 0.8 !important;
    text-shadow: none !important;
    font-size: 20px !important;
}

#toast-container > div .toast-close-button:hover {
    opacity: 1 !important;
    transform: scale(1.1);
}

/* Mobile Responsiveness */
@media (max-width: 575px) {
    #toast-container {
        width: 100% !important;
        right: 0 !important;
        top: 0 !important;
        padding: 15px !important;
    }
    #toast-container > div {
        width: 100% !important;
        margin-bottom: 12px !important;
        padding: 20px 20px 20px 60px !important;
    }
    #toast-container > div::before {
        left: 20px !important;
        font-size: 26px !important;
    }
}

/* ====================================================
   ANIMATIONS & KEYFRAMES
   ==================================================== */

/* --- Fade In Up (card reveals) --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- Glow Pulse (on header, CTA buttons) --- */
@keyframes glowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(107, 48, 181, 0.4);
    }

    50% {
        box-shadow: 0 0 24px 8px rgba(107, 48, 181, 0.2);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(107, 48, 181, 0);
    }
}

/* --- Shimmer (product image loading effect) --- */
@keyframes shimmer {
    0% {
        background-position: -400px 0;
    }

    100% {
        background-position: 400px 0;
    }
}

/* --- Float up down (WhatsApp button) --- */
@keyframes floatBob {
    0%,
    100% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* --- Gradient shift on header (subtle) --- */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* --- Slide in from left (mobile menu) --- */
@keyframes slideInLeft {
    from {
        transform: translateX(-100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* --- Ripple click effect --- */
@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Apply animations */
.product_item,
.cat_item,
.homeproduct .row > *,
.card {
    animation: fadeInUp 0.42s ease both;
}

/* Animated gradient on the main header */
.main-header,
.logo-area,
.mobile-header {
    background-size: 200% 200% !important;
    animation: gradientShift 6s ease infinite !important;
}

/* Float bob on WhatsApp button */
.float {
    animation: floatBob 3s ease-in-out infinite !important;
}

.float:hover {
    animation: none !important;
    transform: scale(1.1) !important;
}

/* Glow pulse on prominent CTA buttons */
.pro_btn .cart_btn button,
.addcartbutton,
.go_cart,
.cart_store {
    animation: glowPulse 3s ease-in-out infinite;
}

.pro_btn .cart_btn button:hover,
.addcartbutton:hover,
.go_cart:hover,
.cart_store:hover {
    animation: none;
}

/* Mobile menu slide in */
.mobile-menu.active {
    animation: slideInLeft 0.32s ease both;
}

/* Ripple on buttons */
.btn-primary,
.go_cart,
.cart_store,
.addcartbutton,
.pro_btn .cart_btn button {
    position: relative;
    overflow: hidden;
}

.btn-primary::after,
.go_cart::after,
.cart_store::after,
.addcartbutton::after,
.pro_btn .cart_btn button::after {
    content: "";
    position: absolute;
    width: 20px;
    height: 20px;
    background: rgba(255, 255, 255, 0.35);
    border-radius: 50%;
    transform: scale(0);
    top: 50%;
    left: 50%;
    translate: -50% -50%;
    pointer-events: none;
}

.btn-primary:active::after,
.go_cart:active::after,
.cart_store:active::after,
.addcartbutton:active::after,
.pro_btn .cart_btn button:active::after {
    animation: ripple 0.6s linear;
}

/* =========== SCROLLBAR STYLING =========== */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: #ede9f8;
}

::-webkit-scrollbar-thumb {
    background: var(--purple-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--purple-accent);
}

/* =========== RESPONSIVE MOBILE TWEAKS =========== */
@media (max-width: 767px) {
    .form-content {
        padding: 24px 16px !important;
    }

    .pro_price p {
        font-size: 14px !important;
    }

    .section-title-name {
        font-size: 15px !important;
    }

    .cat_img {
        width: 60px !important;
        height: 60px !important;
    }

    .cat_name a {
        font-size: 11px !important;
    }
}

/* =========== FINAL OVERRIDES =========== */
footer,
footer .footer-top,
footer .footer-bottom,
.footer-top,
.footer-bottom {
    background-color: var(--dark-footer) !important;
}

footer *,
.footer-top *,
.footer-bottom * {
    color: rgba(255, 255, 255, 0.82) !important;
}

footer a:hover {
    color: var(--purple-light) !important;
}

/* Mobile Search container */
.mobile-search {
    background: #ffffff !important;
    border-bottom: 1px solid var(--border-light) !important;
    box-shadow: 0 2px 8px rgba(74, 35, 144, 0.07) !important;
    padding: 8px 12px !important;
}

.mobile-search form {
    background: #f4f0fc !important;
    border: 1.5px solid var(--purple-light) !important;
    border-radius: 30px !important;
    box-shadow: none !important;
}

.mobile-search form input {
    background: transparent !important;
    color: var(--text-primary) !important;
}

.mobile-search form input::placeholder {
    color: var(--text-muted) !important;
}

.mobile-search form button {
    background: var(--purple-gradient) !important;
    border-radius: 0 30px 30px 0 !important;
    color: #ffffff !important;
}

/* Buttons final cleanup */
.btn-primary,
.btn-success,
.btn-info,
.btn-blue,
.btn-pink {
    background: var(--purple-gradient) !important;
    border-color: var(--purple-main) !important;
    color: #ffffff !important;
}

.btn-secondary {
    background: #9e9e9e !important;
    border-color: #9e9e9e !important;
    color: #ffffff !important;
}

/* Ensure section/body backgrounds are light */
body,
#content {
    background: var(--body-bg) !important;
}

section {
    background: transparent !important;
}

.homeproduct {
    background: transparent !important;
}

/* =========== PURPLE HIGHLIGHT ACCENTS =========== */
/* Top bar accent line under header */
.main-header::after,
.logo-area::after {
    content: "";
    display: block;
    height: 3px;
    background: linear-gradient(90deg, #4a2390, #b9b3d9, #6b30b5);
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0.6;
}

/* Active nav items */
.nav-item.active > a,
.navbar-nav .active > a {
    color: #ffffff !important;
    font-weight: 700 !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.7) !important;
}

/* Hover underline effect on nav links inside header */
.main-header a:not(.btn):hover {
    text-decoration: none !important;
    opacity: 0.85 !important;
}

/* Progress bar accent */
.progress-bar {
    background: var(--purple-gradient) !important;
}

/* Alert / notification soft purple */
.alert-info {
    background: var(--purple-soft-bg) !important;
    border-color: var(--purple-light) !important;
    color: var(--purple-dark) !important;
}

/* Luxury Alert Success */
.alert-success {
    background: #e8f5e9 !important;
    border: 1px solid #c8e6c9 !important;
    color: #2e7d32 !important;
    border-radius: 12px !important;
    padding: 16px 20px !important;
    font-weight: 500 !important;
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    box-shadow: 0 4px 12px rgba(46, 125, 50, 0.08) !important;
}

.alert-success::before {
    content: "\f058";
    font-family: "Font Awesome 6 Free", "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
}

/* =========== DEVELOPER CREDIT STYLES =========== */
.developer-credit {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9) !important;
    text-align: center;
}

.developer-credit a {
    color: #ffffff !important;
    font-weight: 700 !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    display: inline-block;
    position: relative;
}

.developer-credit a::after {
    content: "";
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background-color: var(--luxury-gold);
    transition: width 0.3s ease;
}

.developer-credit a:hover {
    color: var(--luxury-gold) !important;
}

.developer-credit a:hover::after {
    width: 100%;
}

/* =========== PREMIUM FOOTER STYLING =========== */
footer,
.footer-top,
.footer-bottom {
    background-color: #000000 !important; /* Strictly Black */
    background-image: none !important; /* Remove any purple gradients */
    color: #ffffff !important;
}

.footer-top {
    padding: 60px 0 40px !important;
}

.footer-about p {
    color: #ffffff !important;
    line-height: 1.8 !important;
    font-size: 14px !important;
    margin-top: 15px !important;
}

.footer-menu ul li.title a {
    color: #e30613 !important; /* Red Titles */
    font-size: 17px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    margin-bottom: 20px !important;
    display: block !important;
    border: none !important;
}

.footer-menu ul li a {
    color: #ffffff !important; /* White Links */
    font-size: 14px !important;
    transition: all 0.3s ease !important;
    text-decoration: none !important;
    line-height: 2 !important;
}

.footer-menu ul li a:hover {
    color: #e30613 !important;
    padding-left: 5px !important;
}

.social_link {
    display: flex !important;
    gap: 10px !important;
    margin-top: 20px !important;
}

.social_link li a {
    width: 35px !important;
    height: 35px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    color: #ffffff !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 16px !important;
    transition: all 0.3s ease !important;
}

.social_link li a:hover {
    background: #e30613 !important;
    transform: translateY(-3px) !important;
}

.d_app h2 {
    color: #e30613 !important;
    font-size: 17px !important;
    font-weight: 700 !important;
    margin: 25px 0 15px !important;
    text-transform: uppercase !important;
}

.footer-bottom {
    background: #000000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
    padding: 20px 0 !important;
}

.copyright p,
.copyright p span {
    color: #888888 !important;
    font-size: 13px !important;
}

.developer-credit a {
    color: #e30613 !important;
}

/* Scroll Top Button */
.scrolltop {
    background: #e30613 !important;
    border-radius: 50% !important;
    width: 40px !important;
    height: 40px !important;
}

.scroll i {
    color: #ffffff !important;
}

/* Back to Top button custom styling */
.scrolltop .scroll {
    background: #e30613 !important;
    color: #fff !important;
}

/* =========== MOBILE BOTTOM NAVIGATION BAR =========== */
/* Fixed bottom nav for mobile devices only */
@media only screen and (max-width: 767px) {
    /* Add padding to body to prevent content overlap */
    body {
        padding-bottom: 80px !important;
    }

    /* Main footer nav container - fixed at bottom */
    .footer_nav {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        width: 100%;
        z-index: 9999;
        background: #020005 !important;
        border-top: 1px solid rgba(255, 255, 255, 0.1) !important;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
        padding: 0 !important;
        margin: 0 !important;
        height: auto;
        display: block;
    }

    /* Footer nav ul - flexbox for horizontal alignment */
    .footer_nav ul {
        display: flex !important;
        justify-content: space-around !important;
        align-items: stretch !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        list-style: none !important;
        flex-wrap: nowrap !important;
        gap: 0 !important;
    }

    /* Footer nav list items */
    .footer_nav li {
        display: flex !important;
        flex: 1 1 auto !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 0 !important;
        height: auto !important;
        min-height: 70px !important;
        border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
        list-style: none !important;
    }

    /* Remove border from last item */
    .footer_nav li:last-child {
        border-right: none !important;
    }

    /* Footer nav links */
    .footer_nav a {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        width: 100% !important;
        height: 100% !important;
        text-align: center !important;
        color: rgba(255, 255, 255, 0.8) !important;
        text-decoration: none !important;
        gap: 4px !important;
        padding: 8px 0 !important;
        transition: all 0.3s ease !important;
        font-weight: 500 !important;
    }

    /* Footer nav link icons */
    .footer_nav a span:first-child {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        font-size: 20px !important;
        line-height: 1 !important;
        color: rgba(255, 255, 255, 0.9) !important;
    }

    /* Footer nav link text */
    .footer_nav a span:last-child {
        display: block !important;
        font-size: 11px !important;
        font-weight: 600 !important;
        text-transform: capitalize !important;
        color: rgba(255, 255, 255, 0.75) !important;
        line-height: 1.2 !important;
    }

    /* Hover state for footer nav */
    .footer_nav a:hover {
        color: #ffffff !important;
        background: rgba(107, 48, 181, 0.15) !important;
        transition: all 0.3s ease !important;
    }

    .footer_nav a:hover span:first-child {
        color: #ffffff !important;
        transform: scale(1.1) !important;
    }

    .footer_nav a:hover span:last-child {
        color: rgba(255, 255, 255, 0.95) !important;
    }

    /* Mobile home button special styling */
    .footer_nav li.mobile_home {
        border: none !important;
        background: none !important;
        margin: 0 !important;
        padding: 0 !important;
        width: auto !important;
        height: auto !important;
        min-height: 70px !important;
        border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    }

    .footer_nav li.mobile_home a {
        color: #ffffff !important;
    }

    .footer_nav li.mobile_home a span:first-child {
        color: #4a2390 !important;
    }

    .footer_nav li.mobile_home a:hover {
        background: rgba(74, 35, 144, 0.2) !important;
    }

    .footer_nav li.mobile_home a:hover span:first-child {
        color: #6b30b5 !important;
    }

    /* Ensure footer and other elements don't overlap */
    .footer-bottom,
    .footer-top {
        z-index: 1000 !important;
    }

    /* Scrolltop button adjustment for bottom nav */
    .scrolltop {
        bottom: 90px !important;
    }

    /* Ensure float WhatsApp button is hidden on mobile (already defined but reinforcing) */
    .float {
        display: none !important;
    }
}

/* =========== DESKTOP (Hide mobile nav) =========== */
@media only screen and (min-width: 768px) {
    .footer_nav {
        display: none !important;
    }

    body {
        padding-bottom: 0 !important;
    }
}

/* Toggle Category Menu */
li.all__category__list:hover .side__bar,
.all__category__list:focus-within .side__bar,
.side__bar.show_menu,
.side__bar.active_click {
    opacity: 1 !important;
    transform: translateY(0) !important;
    pointer-events: auto !important;
    z-index: 9999 !important;
    visibility: visible !important;
    display: block !important;
}

/* Multi-level Menu Hover Logic */
.side__bar ul li,
.side__barsub li {
    position: relative !important;
}

.side__bar ul li:hover > .side__barsub,
.side__barsub li:hover > .side__barchild {
    opacity: 1 !important;
    visibility: visible !important;
    display: block !important;
    left: 100% !important;
    top: 0 !important;
}

.side__barsub, .side__barchild {
    position: absolute !important;
    top: 0 !important;
    left: 105% !important;
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
    transition: all 0.25s ease-in-out !important;
    background: #ff0018 !important;
    min-width: 280px !important;
    box-shadow: 4px 0 15px rgba(0,0,0,0.2) !important;
    z-index: 10000 !important;
}

/* Ensure the category menu is always visible on hover and has correct stacking context */
.menu-area {
    position: relative !important;
    z-index: 1001 !important;
    overflow: visible !important;
}

.all__category__list {
    position: relative !important;
}

.side__bar {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    width: 100% !important;
    min-width: 270px !important;
    z-index: 9999 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important; /* Hidden by default */
    transform: translateY(15px) !important;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
    pointer-events: none !important;
    background: #212529 !important;
    padding-top: 10px !important;
    margin-top: 0 !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3) !important;
}

/* Multi-level Menu Hover Logic Reinforcement removed - consolidated above */

/* =========== GLASSMORPISM NAV HOVER EFFECT =========== */
/* Targets: Home, Hotdeals, Contact, and Login / Sign Up */
.heder__category > li:not(.all__category__list) a,
.right__menu__top li a {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    padding: 6px 14px !important;
    margin: 0 4px !important;
    border-radius: 8px !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
}

.heder__category > li:not(.all__category__list) a:hover,
.right__menu__top li a:hover {
    background: rgba(255, 255, 255, 0.07) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2), inset 0 0 0 1px rgba(255, 255, 255, 0.05) !important;
    color: #ffdf00 !important; /* Elegant Matte Gold */
    transform: translateY(-2px) !important;
}

/* Subtle light-sweep animation on hover */
.heder__category > li:not(.all__category__list) a::after,
.right__menu__top li a::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -100%;
    width: 30%;
    height: 200%;
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(35deg);
    pointer-events: none;
    z-index: 1;
}

.heder__category > li:not(.all__category__list) a:hover::after,
.right__menu__top li a:hover::after {
    left: 150%;
    transition: all 0.6s ease-in-out;
}

/* ====================================================
   HEADER LAYOUT STABILITY FIX
   Prevents menu items from expanding vertically or
   wrapping text, which causes layout shifts.
   ==================================================== */
.heder__category > li:not(.all__category__list) a,
.right__menu__top li a,
.all__category__list > a {
    white-space: nowrap !important;
    max-height: 40px !important;
    overflow: hidden !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.all__category__list > a {
    justify-content: space-between !important;
}

/* Ensure the Login / Sign Up container doesn't overflow */
.right__menu__top {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
}

.for_order p {
    margin: 0 !important;
    line-height: 1 !important;
}

/* Constrain the All Categories button height */
.all__category__list {
    height: 48px !important;
    /* Removed overflow:hidden to allow dropdown to show */
}

.all__category__list > a {
    height: 100% !important;
    padding: 0 15px !important;
}


