/* ============================================================
   LOOKBOSS — PREMIUM MOBILE UI v3.0
   Senior Full-Stack Design System · 2026
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@400;500;600;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Baloo+Da+2:wght@400;500;600;700;800&display=swap');

/* ══ Global mobile container fix (before media query) ══ */
@media only screen and (max-width: 767px) {
    section.slider-section .container,
    section.slider-section .row,
    .slider-section .col-sm-12 { padding: 0 !important; margin: 0 !important; }
    section.homeproduct .container { padding: 0 !important; }
    section.homeproduct .row { margin: 0 !important; }
}

/* ===================== CSS DESIGN TOKENS ===================== */
:root {
    /* Brand Palette */
    --lb-blue:        #0057B8;
    --lb-blue-mid:    #0070E0;
    --lb-blue-light:  #3B9EFF;
    --lb-red:         #E41E26;
    --lb-red-mid:     #FF3D45;
    --lb-red-light:   #FF6B72;

    /* Gradients */
    --grad-blue:      linear-gradient(135deg, #0057B8 0%, #0090FF 100%);
    --grad-red:       linear-gradient(135deg, #E41E26 0%, #FF6B72 100%);
    --grad-dark:      linear-gradient(160deg, #0A1628 0%, #0057B8 100%);
    --grad-gold:      linear-gradient(135deg, #F4A11A 0%, #FFD166 100%);
    --grad-purple:    linear-gradient(135deg, #6C47FF 0%, #A78BFA 100%);
    --grad-teal:      linear-gradient(135deg, #00B09B 0%, #96C93D 100%);
    --grad-pink:      linear-gradient(135deg, #E91E8C 0%, #FF6B9D 100%);
    --grad-orange:    linear-gradient(135deg, #FF6B35 0%, #FFA726 100%);

    /* Neutrals */
    --white:          #FFFFFF;
    --bg-page:        #F2F4F7;
    --bg-card:        #FFFFFF;
    --border:         rgba(0,0,0,0.07);
    --text-1:         #0D1B2A;
    --text-2:         #374151;
    --text-3:         #6B7280;

    /* Shadows */
    --sh-xs:  0 1px 4px rgba(0,0,0,0.07);
    --sh-sm:  0 2px 10px rgba(0,0,0,0.09);
    --sh-md:  0 6px 24px rgba(0,0,0,0.12);
    --sh-lg:  0 12px 40px rgba(0,0,0,0.16);
    --sh-blue: 0 6px 20px rgba(0,87,184,0.35);
    --sh-red:  0 6px 20px rgba(228,30,38,0.35);

    /* Radius */
    --r-xs:  6px;
    --r-sm:  10px;
    --r-md:  14px;
    --r-lg:  20px;
    --r-xl:  28px;
    --r-full: 999px;

    /* Transitions */
    --ease-fast:   0.18s cubic-bezier(0.4,0,0.2,1);
    --ease-smooth: 0.30s cubic-bezier(0.4,0,0.2,1);
    --ease-bounce: 0.40s cubic-bezier(0.34,1.56,0.64,1);

    /* Typography */
    --font: 'Outfit', 'Inter', 'Poppins', 'Potro Sans Bangla', 'Hind Siliguri', 'Baloo Da 2', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Top Categories View All Button - Desktop Styles */
.category_view_all {
    font-size: 13px;
    font-weight: 600;
    color: #fe5200;
    background: rgba(254, 82, 0, 0.08);
    border: 1px solid rgba(254, 82, 0, 0.15);
    padding: 5px 14px;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.category_view_all:hover {
    background: #fe5200;
    color: #fff !important;
}

/* =================== GLOBAL MOBILE RESET ==================== */
@media only screen and (max-width: 767px) {

    * { -webkit-tap-highlight-color: transparent; box-sizing: border-box; }

    html { scroll-behavior: smooth; }

    body {
        font-family: var(--font);
        background: var(--bg-page);
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        overflow-x: hidden;
        padding-bottom: calc(76px + env(safe-area-inset-bottom, 0px)) !important;
    }

    /* Reset Bootstrap grid padding on mobile */
    .container { padding-left: 0; padding-right: 0; max-width: 100%; }
    .row { margin-left: 0; margin-right: 0; }
    .row > * { padding-left: 0; padding-right: 0; }

    /* Hide desktop-only elements */
    .main-header,
    .main-header *:not(script) { display: none !important; }

    /* ==================== HEADER - APP BAR ==================== */
    header#navbar_top {
        position: sticky;
        top: 0;
        z-index: 999;
        background: transparent;
        box-shadow: none;
    }

    /* TOP BAR - Logo row */
    .mobile-header {
        background: #0A1628;
        padding: 0;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
    }

    .mobile-header.sticky {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.25);
    }

    .mobile-logo {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        height: 56px;
        padding: 0 16px;
        background: transparent;
        position: relative !important;
    }

    /* Hamburger */
    .menu-bar {
        display: none !important;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: rgba(0, 87, 184, 0.18);
        border: 1px solid rgba(59, 158, 255, 0.3);
        cursor: pointer;
        flex-shrink: 0;
        transition: all var(--ease-fast);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .menu-bar:active {
        transform: scale(0.9);
        background: rgba(0, 87, 184, 0.3);
    }

    .menu-bar a.toggle i {
        font-size: 18px;
        color: #fff;
    }

    /* Logo center - wrap in a clean white pill badge */
    .menu-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--white);
        border-radius: 30px;
        padding: 5px 16px;
        height: 36px;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
        border: 1px solid rgba(255, 255, 255, 0.9);
        transition: all var(--ease-fast);
    }

    .menu-logo:active {
        transform: scale(0.97);
    }

    .menu-logo a { display: flex; align-items: center; }

    .menu-logo img {
        height: 22px;
        width: auto;
        object-fit: contain;
        filter: none; /* Keep original brand colors */
    }

    /* Minimized Search Toggle Icon */
    .menu-search-btn {
        position: absolute !important;
        right: 16px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 38px !important;
        height: 38px !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
        cursor: pointer !important;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }

    .menu-search-btn:active {
        transform: translateY(-50%) scale(0.9) !important;
        background: rgba(255, 255, 255, 0.15) !important;
    }

    .menu-search-btn i {
        font-size: 16px !important;
        color: #ffffff !important;
    }

    /* Cart icon right */
    .menu-bag {
        display: none !important;
        align-items: center;
        justify-content: center;
        position: relative;
    }

    .menu-bag .margin-shopping {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        background: rgba(0, 87, 184, 0.18);
        border: 1px solid rgba(59, 158, 255, 0.3);
        border-radius: 12px;
        margin: 0;
        cursor: pointer;
        transition: all var(--ease-fast);
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .menu-bag .margin-shopping:active {
        transform: scale(0.9);
        background: rgba(0, 87, 184, 0.3);
    }

    .menu-bag .margin-shopping i {
        font-size: 18px;
        color: #fff;
    }

    .menu-bag .mobilecart-qty {
        position: absolute;
        top: -5px;
        right: -5px;
        min-width: 19px;
        height: 19px;
        background: linear-gradient(135deg, var(--lb-red) 0%, #FF6B72 100%);
        color: #fff;
        font-size: 9px;
        font-weight: 700;
        line-height: 15px;
        text-align: center;
        border-radius: var(--r-full);
        padding: 0 4px;
        border: 2px solid #0057B8;
        box-shadow: 0 0 8px rgba(228, 30, 38, 0.5);
        display: flex;
        align-items: center;
        justify-content: center;
    }

    /* ==================== SEARCH BAR ==================== */
    /* ==================== SEARCH BAR ==================== */
    .mobile-search {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        height: 100vh !important;
        width: 100vw !important;
        z-index: 99999 !important;
        background: #0A1628 !important;
        display: flex !important;
        flex-direction: column !important;
        transform: translateY(100%) !important;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.3s !important;
        visibility: hidden !important;
        padding: 0 !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }

    .mobile-search.active {
        transform: translateY(0) !important;
        visibility: visible !important;
    }

    /* Hide the bottom navigation menu when search is active (slides out of view) */
    body:has(.mobile-search.active) .footer_nav {
        transform: translateY(100%) !important;
        opacity: 0 !important;
        pointer-events: none !important;
    }

    .mobile-search::after {
        display: none !important;
    }

    .mobile-search form {
        display: flex !important;
        align-items: center !important;
        height: 48px !important;
        background: #ffffff !important;
        border-radius: 24px !important;
        overflow: hidden !important;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
        box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
        transition: var(--ease-fast) !important;
        margin: 16px 16px 10px 16px !important;
        width: calc(100% - 32px) !important;
        flex-shrink: 0 !important;
    }

    .mobile-search form:focus-within {
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3) !important;
    }

    .search-close-btn {
        background: transparent !important;
        border: none !important;
        color: var(--text-2) !important;
        font-size: 16px !important;
        padding: 0 4px 0 14px !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        height: 100% !important;
    }

    /* Specifically style the back arrow button to not inherit red circle gradient */
    .mobile-search form button.search-close-btn {
        position: static !important;
        flex: none !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        color: #374151 !important;
        width: 36px !important;
        height: 36px !important;
        min-width: 36px !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: 8px !important;
        margin-right: 0 !important;
        padding: 0 !important;
    }
    .mobile-search form button.search-close-btn i,
    .mobile-search form button.search-close-btn svg {
        color: #374151 !important;
        font-size: 16px !important;
        width: auto !important;
        height: auto !important;
    }
    .mobile-search form button.search-close-btn:active {
        background: rgba(0, 0, 0, 0.05) !important;
        transform: scale(0.9) !important;
    }

    .mobile-search form input {
        flex: 1 !important;
        height: 100% !important;
        padding: 0 12px !important;
        font-size: 14px !important;
        font-weight: 500 !important;
        color: var(--text-1) !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
        font-family: var(--font) !important;
        width: auto !important;
        text-align: left !important;
        float: none !important;
    }

    .mobile-search form input::placeholder {
        color: var(--text-3) !important;
        font-size: 13.5px !important;
    }

    /* Style the submit search button */
    .mobile-search form button:not(.search-close-btn) {
        position: static !important;
        flex: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        background: linear-gradient(135deg, var(--lb-red) 0%, var(--lb-red-light) 100%) !important;
        border: none !important;
        border-radius: 50% !important;
        margin: 3px 5px 3px 3px !important;
        cursor: pointer !important;
        transition: var(--ease-fast) !important;
        box-shadow: 0 3px 8px rgba(228, 30, 38, 0.3) !important;
        float: none !important;
    }

    .mobile-search form button:not(.search-close-btn):active { transform: scale(0.92); }

    .mobile-search form button svg,
    .mobile-search form button i {
        color: #fff !important;
        width: 15px !important;
        height: 15px !important;
        font-size: 13px !important;
    }

    /* Search Result / Content Area */
    .search_result {
        flex: 1 !important;
        overflow-y: auto !important;
        padding: 8px 16px 24px 16px !important;
        -webkit-overflow-scrolling: touch !important;
        position: static !important;
        width: 100% !important;
        background: transparent !important;
        box-shadow: none !important;
        border: none !important;
        border-radius: 0 !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        max-height: none !important;
    }

    /* List Results Card Design */
    .search_product {
        position: static !important;
        width: 100% !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
    }

    .search_product ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .search_product ul a {
        display: block !important;
        width: 100% !important;
        text-decoration: none !important;
    }

    .search_product ul li {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: 44px auto !important;
        grid-gap: 12px !important;
        padding: 10px !important;
        background: rgba(255, 255, 255, 0.04) !important;
        border: 1px solid rgba(255, 255, 255, 0.06) !important;
        border-radius: 12px !important;
        margin-bottom: 10px !important;
        transition: all 0.2s ease !important;
        align-items: center !important;
        box-sizing: border-box !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
    }

    .search_product ul li:active {
        background: rgba(255, 255, 255, 0.08) !important;
        transform: scale(0.98) !important;
    }

    .search_product img {
        width: 44px !important;
        height: 44px !important;
        border-radius: 8px !important;
        margin-top: 0 !important;
        object-fit: cover !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
    }

    .search_content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        text-align: left !important;
    }

    .search_content p.name {
        color: #ffffff !important;
        font-size: 14px !important;
        font-weight: 600 !important;
        margin: 0 0 4px 0 !important;
        line-height: 1.3 !important;
        white-space: normal !important;
    }

    .search_content p.price {
        color: #FFD166 !important;
        font-size: 13.5px !important;
        font-weight: 700 !important;
        margin: 0 !important;
    }

    .search_content p.price del {
        color: rgba(255, 255, 255, 0.4) !important;
        font-size: 11.5px !important;
        font-weight: 500 !important;
        margin-left: 6px !important;
        text-decoration: line-through !important;
    }

    /* Suggested title styling */
    .suggested-title {
        font-size: 12px !important;
        font-weight: 800 !important;
        color: #FFD166 !important;
        text-transform: uppercase !important;
        letter-spacing: 1px !important;
        margin: 10px 0 14px 4px !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        text-align: left !important;
    }

    /* ==================== SIDE MENU ==================== */
    .mobile-menu {
        position: fixed;
        top: 0; left: 0 !important;
        width: 290px;
        max-width: 85vw;
        height: 100vh;
        z-index: 3000;
        background: var(--white);
        transform: translateX(-110%);
        visibility: hidden;
        transition: transform var(--ease-smooth), visibility var(--ease-smooth);
        display: flex;
        flex-direction: column;
        overflow-y: auto;
        overflow-x: hidden;
    }

    .mobile-menu.active {
        transform: translateX(0) !important;
        visibility: visible !important;
        box-shadow: var(--sh-lg);
    }

    .mobile-menu-logo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 18px 16px;
        background: var(--grad-blue);
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .logo-image img {
        height: 32px;
        filter: brightness(0) invert(1);
    }

    .mobile-menu-close {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 34px; height: 34px;
        border-radius: 50%;
        background: rgba(255,255,255,0.18);
        cursor: pointer;
        transition: var(--ease-fast);
    }

    .mobile-menu-close i { font-size: 16px; color: #fff; }

    .first-nav { padding: 8px 0; overflow-y: auto; }

    .first-nav .parent-category { border-bottom: 1px solid var(--border); }
    .first-nav .parent-category:last-child { border-bottom: none; }

    .first-nav .parent-category .menu-category-name {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 13px 16px;
        font-size: 13.5px;
        font-weight: 500;
        color: var(--text-1);
        text-decoration: none;
        transition: var(--ease-fast);
    }

    .side_cat_img {
        width: 30px; height: 30px;
        object-fit: cover;
        border-radius: var(--r-xs);
        background: var(--bg-page);
        flex-shrink: 0;
    }

    .mobile-menu span.menu-category-toggle {
        width: 40px; height: 40px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: var(--r-xs);
        cursor: pointer;
    }

    .mobile-menu span.menu-category-toggle i {
        font-size: 11px;
        color: var(--text-3);
        transition: var(--ease-smooth);
    }

    .mobile-menu span.menu-category-toggle.active i {
        color: var(--lb-red);
        transform: rotate(180deg);
    }

    .second-nav {
        background: #F8FAFC;
        border-top: 1px solid var(--border);
    }

    .parent-subcategory .menu-subcategory-name {
        padding: 11px 16px 11px 42px;
        font-size: 12.5px;
        color: var(--text-2);
        display: block;
    }

    ul.third-nav { background: rgba(0,0,0,0.02); }

    .menu-childcategory-name {
        padding: 9px 16px 9px 60px;
        font-size: 12px;
        color: var(--text-3);
        display: block;
    }

    /* ==================== HERO BANNER SLIDER ==================== */
    .slider-section {
        background: var(--white);
        padding: 0 12px;
        margin: 0;
        margin-top: 8px;
    }

    .home-slider-container {
        position: relative;
        background: var(--white);
    }

    .slider-item {
        height: 180px;
        border-radius: var(--r-md);
        overflow: hidden;
        margin: 10px 0;
        box-shadow: var(--sh-md);
        position: relative;
    }

    .slider-item::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.25) 100%);
        pointer-events: none;
        border-radius: var(--r-md);
    }

    .slider-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 6s ease;
    }

    .owl-carousel .owl-item.active .slider-item img {
        animation: sliderZoom 7s ease-in-out infinite alternate;
    }

    @keyframes sliderZoom {
        from { transform: scale(1); }
        to   { transform: scale(1.06); }
    }

    @keyframes slideReveal {
        from { opacity: 0; transform: translateX(12px); }
        to   { opacity: 1; transform: translateX(0); }
    }

    /* Owl Nav — hidden on mobile */
    .owl-carousel .owl-nav { display: none; }

    /* Owl Dots */
    .owl-carousel .owl-dots {
        position: absolute;
        bottom: 6px;
        left: 0; right: 0;
        display: flex !important;
        justify-content: center;
        gap: 5px;
        z-index: 10;
    }

    .owl-carousel .owl-dot {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .owl-carousel .owl-dot span {
        width: 5px; height: 5px;
        background: rgba(255,255,255,0.5);
        border-radius: 3px;
        transition: var(--ease-fast);
        display: block;
    }

    .owl-carousel .owl-dot.active span {
        width: 18px;
        background: #fff;
    }

    /* ==================== RESELLER PROMO BANNER ==================== */
    .reseller-promo {
        display: flex;
        align-items: center;
        justify-content: space-between;
        background: var(--grad-dark);
        border-radius: var(--r-lg);
        padding: 16px 18px;
        margin: 10px 12px;
        position: relative;
        overflow: hidden;
        box-shadow: 0 8px 30px rgba(0,87,184,0.4);
        min-height: 90px;
    }

    /* Decorative circles */
    .reseller-promo::before {
        content: '';
        position: absolute;
        top: -30px; right: -20px;
        width: 110px; height: 110px;
        border-radius: 50%;
        background: rgba(255,255,255,0.06);
    }

    .reseller-promo::after {
        content: '';
        position: absolute;
        bottom: -40px; right: 50px;
        width: 80px; height: 80px;
        border-radius: 50%;
        background: rgba(255,255,255,0.04);
    }

    .promo-text { flex: 1; z-index: 1; }

    .promo-badge {
        display: inline-flex;
        align-items: center;
        gap: 4px;
        background: rgba(255,209,0,0.18);
        border: 1px solid rgba(255,209,0,0.35);
        color: #FFD100;
        font-size: 11px;
        font-weight: 700;
        padding: 2px 10px 4px;
        border-radius: var(--r-full);
        margin-bottom: 6px;
        letter-spacing: 0.5px;
        font-family: 'Baloo Da 2', var(--font) !important;
    }

    .reseller-promo h3 {
        font-size: 19px;
        font-weight: 800;
        color: #fff;
        margin: 0 0 2px;
        font-family: 'Baloo Da 2', var(--font) !important;
        line-height: 1.2;
    }

    .promo-text-loop {
        position: relative;
        height: 38px;
        overflow: hidden;
        margin: 0;
        z-index: 1;
    }

    .promo-text-loop .loop-item {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.5s ease, transform 0.5s ease;
        font-size: 12.5px;
        color: rgba(255,255,255,0.80);
        line-height: 1.35;
        font-family: 'Baloo Da 2', var(--font) !important;
    }

    .promo-text-loop .loop-item.active {
        opacity: 1;
        transform: translateY(0);
    }

    .promo-text-loop .loop-item.exit {
        opacity: 0;
        transform: translateY(-10px);
    }

    .promo-btn {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 6px 16px 8px;
        background: var(--grad-red);
        color: #fff;
        font-size: 13px;
        font-weight: 700;
        border-radius: var(--r-full);
        font-family: 'Baloo Da 2', var(--font) !important;
        text-decoration: none;
        box-shadow: var(--sh-red);
        white-space: nowrap;
        z-index: 1;
        transition: var(--ease-bounce);
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }

    .promo-btn:active {
        transform: scale(0.94);
        color: #fff;
    }

    .promo-btn i { font-size: 12px; }

    /* ==================== SECTION TITLE ==================== */
    .sec_title,
    .section-title-header,
    .home-page-section-title-box {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 14px 14px 8px;
        background: var(--white);
    }

    h3.section-title-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        padding: 0;
        margin: 0;
    }

    .timer_inner {
        display: flex;
        align-items: center;
        gap: 8px;
        width: 100%;
        justify-content: space-between;
    }

    .section-title-name {
        font-size: 15px;
        font-weight: 800;
        color: var(--text-1);
        position: relative;
        padding-left: 11px;
        font-family: var(--font);
        display: flex;
        align-items: center;
    }

    .section-title-name::before {
        content: '';
        position: absolute;
        left: 0; top: 50%;
        transform: translateY(-50%);
        width: 4px; height: 16px;
        background: var(--grad-red);
        border-radius: 2px;
    }

    .sec_title h3 {
        font-size: 15px;
        font-weight: 800;
        color: var(--text-1);
        padding-left: 11px;
        position: relative;
        font-family: var(--font);
    }

    .sec_title h3::before {
        content: '';
        position: absolute;
        left: 0; top: 50%;
        transform: translateY(-50%);
        width: 4px; height: 16px;
        background: var(--grad-red);
        border-radius: 2px;
    }

    /* Mobile View All Categories Button Override */
    .category_view_all {
        font-size: 11px !important;
        font-weight: 700 !important;
        color: var(--lb-blue) !important;
        background: rgba(0, 87, 184, 0.08) !important;
        border: 1px solid rgba(0, 87, 184, 0.15) !important;
        padding: 4px 12px !important;
        border-radius: 12px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.3px !important;
        transition: all var(--ease-fast) !important;
    }
    .category_view_all:active {
        background: var(--lb-blue) !important;
        color: #fff !important;
        transform: scale(0.95) !important;
    }

    /* ==================== TOP CATEGORIES — NEW SHAPE ==================== */
    .homeproduct { background: var(--white); margin-bottom: 8px; }

    .topcategory {
        display: flex;
        gap: 8px;
        padding: 6px 12px 14px;
        overflow-x: auto;
        scroll-behavior: smooth;
        scrollbar-width: none;
        -ms-overflow-style: none;
        -webkit-overflow-scrolling: touch;
    }

    .topcategory::-webkit-scrollbar { display: none; }

    /* Category Item — Vertical Card with Gradient Top */
    .cat_item {
        flex: 0 0 auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0;
        background: var(--white);
        border-radius: var(--r-md);
        border: 1.5px solid var(--border);
        box-shadow: var(--sh-xs);
        overflow: hidden;
        transition: var(--ease-smooth);
        min-width: 76px;
        max-width: 76px;
        cursor: pointer;
    }

    .cat_item:active {
        transform: scale(0.95);
        box-shadow: var(--sh-sm);
        border-color: var(--lb-blue-light);
    }

    /* Colored top strip — cycles via nth-child */
    .cat_item:nth-child(6n+1) .cat_img { background: linear-gradient(135deg, #E3F0FF 0%, #C7E0FF 100%); }
    .cat_item:nth-child(6n+2) .cat_img { background: linear-gradient(135deg, #FFE8E8 0%, #FFCFCF 100%); }
    .cat_item:nth-child(6n+3) .cat_img { background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%); }
    .cat_item:nth-child(6n+4) .cat_img { background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%); }
    .cat_item:nth-child(6n+5) .cat_img { background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%); }
    .cat_item:nth-child(6n+6) .cat_img { background: linear-gradient(135deg, #E0F7FA 0%, #B2EBF2 100%); }

    .cat_img {
        width: 100%;
        height: 58px;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px;
        flex-shrink: 0;
    }

    .cat_img a {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
    }

    .cat_img img {
        width: 38px; height: 38px;
        object-fit: contain;
        transition: var(--ease-smooth);
    }

    .cat_item:active .cat_img img { transform: scale(0.9); }

    .cat_name {
        width: 100%;
        padding: 6px 4px 8px;
        background: var(--white);
        text-align: center;
    }

    .cat_name a {
        font-size: 10.5px;
        font-weight: 600;
        color: var(--text-1);
        text-decoration: none;
        line-height: 1.2;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        word-break: break-word;
    }

    /* ==================== HOT DEAL / PRODUCT SLIDER ==================== */
    /* Force owl carousel to display as 2-column grid on mobile */
    .product_slider.owl-carousel {
        display: block !important;
        padding: 4px 12px 8px !important;
    }

    .product_slider.owl-carousel .owl-stage-outer {
        overflow: visible !important;
        width: 100% !important;
    }

    .product_slider.owl-carousel .owl-stage {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        transform: none !important;
        width: 100% !important;
        flex-wrap: wrap !important;
    }

    .product_slider.owl-carousel .owl-item {
        width: 100% !important;
        float: none !important;
        opacity: 1 !important;
        display: block !important;
    }

    .product_slider.owl-carousel .owl-nav,
    .product_slider.owl-carousel .owl-dots {
        display: none !important;
    }

    /* Grid product layout (static - category sections) */
    .product_sliders,
    .product-sliders {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        padding: 4px 12px 12px;
    }


    /* ==================== PRODUCT CARD ==================== */
    .product_item,
    .product_item.wist_item {
        background: var(--white);
        border-radius: var(--r-md);
        overflow: hidden;
        border: 1px solid var(--border);
        box-shadow: var(--sh-xs);
        transition: var(--ease-smooth);
        position: relative;
        display: flex;
        flex-direction: column;
    }

    .product_item:active { transform: scale(0.97); box-shadow: var(--sh-sm); }

    .product_item_inner {
        display: flex;
        flex-direction: column;
        flex: 1;
        background: transparent;
        border: none;
        box-shadow: none;
        border-radius: 0;
        overflow: visible;
    }

    /* Product Image */
    .pro_img {
        position: relative;
        width: 100%;
        aspect-ratio: 1/1;
        background: var(--white);
        overflow: hidden;
        flex-shrink: 0;
    }

    .pro_img a { display: block; width: 100%; height: 100%; }

    .pro_img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 4px;
        background: var(--white);
        transition: transform var(--ease-smooth);
    }

    .product_item:active .pro_img img { transform: scale(0.96); }

    /* Sale Badge */
    .sale-badge {
        position: absolute;
        top: 0; left: 0;
        z-index: 2;
    }

    .sale-badge-inner { }
    .sale-badge-box { }

    .sale-badge-text {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: var(--grad-red);
        color: #fff;
        font-size: 9px;
        font-weight: 800;
        min-width: 34px;
        min-height: 34px;
        padding: 4px 5px;
        border-radius: 0 0 var(--r-sm) 0;
        line-height: 1.1;
        text-align: center;
        box-shadow: 2px 2px 8px rgba(228,30,38,0.35);
    }

    .sale-badge-text p {
        font-size: 12px;
        font-weight: 900;
        color: #fff;
        line-height: 1;
        margin: 0 0 1px;
    }

    /* Product Info */
    .pro_des { padding: 8px 8px 4px; flex: 1; }

    .pro_name {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        font-size: 12px;
        font-weight: 500;
        line-height: 1.35;
        color: var(--text-1);
        min-height: 32px;
        margin-bottom: 6px;
        word-break: break-word;
    }

    .pro_name a {
        color: var(--text-1);
        text-decoration: none;
        font-size: 12px;
        line-height: 1.35;
    }

    .pro_price { display: flex; align-items: baseline; gap: 5px; flex-wrap: wrap; }

    .pro_price p {
        display: flex;
        align-items: baseline;
        gap: 5px;
        flex-wrap: wrap;
        margin: 0;
    }

    .pro_price del {
        font-size: 11px;
        color: var(--text-3);
        text-decoration: line-through;
        font-weight: 400;
    }

    .pro_price p:not(del) {
        font-size: 14px;
        font-weight: 700;
        color: var(--lb-blue);
    }

    /* Add to cart / Order button */
    .pro_btn {
        padding: 6px 8px 8px;
    }

    .pro_btn a.addcartbutton,
    .pro_btn button,
    .pro_btn form button,
    .addcartbutton,
    .cart_btn a,
    .order_button a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 30px !important;
        font-size: 10px !important;
        font-weight: 700 !important;
        color: #fff !important;
        background: var(--grad-red) !important;
        border: none !important;
        border-radius: var(--r-sm) !important;
        cursor: pointer !important;
        transition: var(--ease-fast) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.4px !important;
        text-decoration: none !important;
        box-shadow: 0 2px 8px rgba(228,30,38,0.28) !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    .pro_btn a.addcartbutton:active,
    .pro_btn button:active,
    .pro_btn form button:active { transform: scale(0.96) !important; }

    /* View More Button */
    a.view_more_btn,
    .view_more_btn {
        display: block;
        text-align: center;
        margin: 8px 12px 4px;
        padding: 9px 0;
        background: transparent;
        border: 1.5px solid var(--lb-blue);
        color: var(--lb-blue);
        font-size: 12px;
        font-weight: 700;
        border-radius: var(--r-full);
        text-decoration: none;
        transition: var(--ease-fast);
        letter-spacing: 0.3px;
    }

    a.view_more_btn:active,
    .view_more_btn:active {
        background: var(--lb-blue);
        color: #fff;
    }

    .show_more_btn { padding: 0; }

    /* ==================== HOT DEAL TIMER ==================== */
    .offer_timer,
    #simple_timer {
        display: flex;
        gap: 4px;
        align-items: center;
    }

    .syotimer__body {
        display: flex;
        gap: 3px;
        align-items: center;
    }

    .syotimer-cell {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: var(--lb-red);
        color: #fff;
        border-radius: var(--r-xs);
        min-width: 32px;
        padding: 4px 5px;
        box-shadow: 0 2px 8px rgba(228,30,38,0.35);
    }

    .syotimer-cell__value {
        font-size: 13px;
        font-weight: 800;
        line-height: 1;
        color: #fff;
    }

    .syotimer-cell__unit {
        font-size: 7px;
        font-weight: 600;
        text-transform: uppercase;
        color: rgba(255,255,255,0.75);
        margin-top: 1px;
    }

    /* Separator */
    .syotimer-cell__separator {
        font-size: 14px;
        font-weight: 800;
        color: var(--lb-red);
        padding: 0 1px;
    }

    /* ==================== BOTTOM NAVIGATION ==================== */
    .footer_nav {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 1200 !important;
        background: rgba(10, 22, 40, 0.92) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
        box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.25) !important;
        padding-bottom: env(safe-area-inset-bottom, 0) !important;
        transition: transform 0.3s var(--ease-smooth) !important;
    }

    /* Hide bottom navigation when viewport height is small (keyboard open) */
    @media screen and (max-height: 500px) {
        .footer_nav {
            transform: translateY(100%) !important;
            opacity: 0 !important;
            pointer-events: none !important;
        }
    }

    .footer_nav ul {
        display: flex !important;
        justify-content: space-around !important;
        align-items: center !important;
        height: 60px !important;
        padding: 0 4px !important;
        margin: 0 !important;
        list-style: none !important;
        gap: 0 !important;
    }

    .footer_nav ul li {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex: 1 !important;
        position: relative !important;
    }

    .footer_nav ul li a {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        gap: 4px !important;
        padding: 6px 10px !important;
        text-decoration: none !important;
        border-radius: 12px !important;
        min-width: 48px !important;
        height: 48px !important; /* Fixed height for rigid layout stability */
        box-sizing: border-box !important;
    }

    .footer_nav ul li a span:first-child {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0 !important;
        position: relative !important;
    }

    .footer_nav ul li a span:last-child {
        font-size: 9px !important;
        font-weight: 700 !important;
        color: rgba(255, 255, 255, 0.5) !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        margin-top: 1px !important;
        white-space: nowrap !important;
        transition: transform 0.2s ease !important;
    }

    .footer_nav ul li i {
        font-size: 19px !important;
        color: rgba(255, 255, 255, 0.6) !important;
        transition: transform 0.2s ease, color 0.2s ease !important;
    }

    /* Active States */
    .footer_nav ul li a.active i {
        color: #3B9EFF !important;
    }
    
    .footer_nav ul li a.active span:last-child {
        color: #3B9EFF !important;
    }
    
    .footer_nav ul li a.active {
        background: rgba(255, 255, 255, 0.05) !important;
    }

    /* Scale only inner elements on active tap to prevent layout shift */
    .footer_nav ul li a:active i,
    .footer_nav ul li a:active span:last-child {
        transform: scale(0.92) !important;
    }

    /* Home button — center floating */
    li.mobile_home {
        position: relative !important;
        margin-top: -24px !important;
    }

    li.mobile_home a {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 54px !important;
        height: 54px !important;
        background: linear-gradient(135deg, #0057B8 0%, #0090FF 100%) !important;
        border-radius: 50% !important;
        box-shadow: 0 6px 20px rgba(0, 87, 184, 0.4) !important;
        padding: 0 !important;
        gap: 0 !important;
        border: 4px solid #0A1628 !important; /* perfectly matches dark header/nav bg */
        transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
        color: #ffffff !important;
        will-change: transform !important; /* GPU acceleration to prevent pixel jitter */
    }

    li.mobile_home a i {
        font-size: 20px !important;
        color: #ffffff !important;
        transition: none !important; /* Managed by parent scale */
    }
    
    li.mobile_home a span:first-child {
        width: auto !important;
        height: auto !important;
        background: none !important;
    }
    
    li.mobile_home a span:last-child {
        display: none !important;
    }
    
    li.mobile_home a:active {
        transform: scale(0.9) translateY(-2px) !important;
    }

    /* Cart badge on bottom nav */
    .footer_nav ul li a span b,
    .footer_nav .item_count {
        position: absolute !important;
        top: -6px !important;
        right: -8px !important;
        min-width: 17px !important;
        height: 17px !important;
        padding: 0 !important;
        font-size: 9px !important;
        font-weight: 700 !important;
        line-height: 17px !important;
        text-align: center !important;
        color: #ffffff !important;
        background: linear-gradient(135deg, #E41E26 0%, #FF5A60 100%) !important;
        border-radius: 50% !important;
        font-style: normal !important;
        box-shadow: 0 2px 6px rgba(228, 30, 38, 0.4) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border: 1.5px solid #0A1628 !important;
    }

    /* Hide empty badges */
    .mobilecart-qty:empty,
    .footer_nav ul li a span b:empty {
        display: none !important;
    }

    /* ==================== SECTION SPACING ==================== */
    section { margin-bottom: 0; }

    .homeproduct,
    .category-banner-products {
        background: var(--white);
        padding: 0 0 8px;
        margin-bottom: 8px;
    }

    section.homeproduct:first-of-type { margin-top: 8px; }

    /* ==================== CONTENT AREA ==================== */
    #content { padding-bottom: 80px; }

    /* ==================== SCROLL TO TOP ==================== */
    .scrolltop {
        bottom: 76px !important;
        right: 14px;
    }

    .scrolltop .scroll {
        width: 38px; height: 38px;
        background: var(--grad-blue);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--sh-blue);
    }

    .scrolltop .scroll i { font-size: 16px; color: #fff; }

    /* ==================== PAGE OVERLAY & LOADING ==================== */
    #page-overlay {
        background: rgba(0,0,0,0.52);
        backdrop-filter: blur(2px);
        -webkit-backdrop-filter: blur(2px);
    }

    #loading {
        background: rgba(255,255,255,0.94);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
    }

    .custom-loader {
        width: 38px; height: 38px;
        border: 3px solid var(--border);
        border-top-color: var(--lb-blue);
        border-radius: 50%;
        animation: spin 0.75s linear infinite;
    }

    @keyframes spin { to { transform: rotate(360deg); } }

    /* ==================== ANIMATIONS ==================== */
    @keyframes fadeUp {
        from { opacity: 0; transform: translateY(12px); }
        to   { opacity: 1; transform: translateY(0); }
    }

    @keyframes fadeIn {
        from { opacity: 0; }
        to   { opacity: 1; }
    }

    .homeproduct { animation: fadeUp 0.4s ease both; }
    .slider-section { animation: fadeIn 0.3s ease both; }

    /* Infinite category auto-scroll */
    @keyframes catScroll {
        0%   { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }

    /* ==================== PRODUCT DETAIL (mobile) ==================== */
    .details_slider {
        border-radius: var(--r-md);
        overflow: hidden;
        margin: 10px 12px;
        background: var(--white);
        box-shadow: var(--sh-sm);
    }

    .details_slider .dimage_item {
        height: 280px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: #fafafa;
    }

    .details_slider img { width: 100%; height: 100%; object-fit: contain; }

    .details_right {
        padding: 14px 14px;
        background: var(--white);
        border-radius: var(--r-md);
        box-shadow: var(--sh-sm);
        margin: 8px 12px;
    }

    /* ==================== MISC UTILITIES ==================== */
    .d_app h2 {
        font-size: 13px;
        color: #fff;
        font-weight: 600;
        margin-bottom: 8px;
    }

    .stay_conn { display: block !important; }

    /* Toast notifications */
    .toast {
        border-radius: var(--r-md) !important;
        box-shadow: var(--sh-lg) !important;
        font-family: var(--font) !important;
    }

    /* Forms */
    .auth-section,
    .checkout-shipping {
        margin: 8px 12px;
        background: var(--white);
        border-radius: var(--r-lg);
        padding: 18px;
        box-shadow: var(--sh-sm);
    }

} /* end @media mobile */

/* ============================================================
   CRITICAL OVERRIDES — must be outside @media to win specificity
   Fixes conflicts from responsive.css & style.css
   ============================================================ */

@media only screen and (max-width: 767px) {

    /* ── Fix responsive.css: slider-item height override ── */
    .slider-item {
        height: 180px !important;
        margin: 10px 0 !important;
        margin-top: 10px !important;
        border-radius: 14px !important;
        overflow: hidden !important;
    }

    /* ── Fix responsive.css: pro_img fixed height override ── */
    .pro_img {
        height: auto !important;
        aspect-ratio: 1/1 !important;
    }

    /* ── Fix responsive.css: cat_img height ── */
    .cat_img {
        height: 58px !important;
        width: 100% !important;
        text-align: center !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0 !important;
        border: none !important;
    }

    .cat_img a {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 100% !important;
    }

    .cat_img img {
        width: 38px !important;
        height: 38px !important;
        object-fit: contain !important;
    }

    /* ── Fix responsive.css: mobile_home bottom nav ── */
    li.mobile_home {
        border: none !important;
        padding-top: 0 !important;
        background: transparent !important;
        border-radius: 0 !important;
        width: auto !important;
        height: auto !important;
        margin-top: -20px !important;
    }

    li.mobile_home a {
        color: #fff !important;
        padding: 0 !important;
        width: 52px !important;
        height: 52px !important;
        background: linear-gradient(135deg, #0057B8 0%, #0090FF 100%) !important;
        border-radius: 50% !important;
        border: 3px solid #fff !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 6px 20px rgba(0,87,184,0.35) !important;
    }

    li.mobile_home a i {
        font-size: 20px !important;
        color: #fff !important;
    }

    /* ── Fix mobile-logo height ── */
    .mobile-logo {
        height: 56px !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        background: transparent !important;
        position: relative !important;
    }

    /* ── Fix hamburger and cart button styling overrides ── */
    .menu-bar {
        width: 40px !important;
        height: 40px !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        display: none !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .menu-bar:active {
        transform: scale(0.9) !important;
        background: rgba(255, 255, 255, 0.15) !important;
    }

    .menu-bar a.toggle {
        padding: 0 !important;
        margin: 0 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        height: 100% !important;
    }

    .menu-bar a.toggle i {
        font-size: 18px !important;
        color: #ffffff !important;
    }
    
    .menu-bag .margin-shopping {
        width: 40px !important;
        height: 40px !important;
        border-radius: 12px !important;
        background: rgba(255, 255, 255, 0.08) !important;
        border: 1px solid rgba(255, 255, 255, 0.15) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2) !important;
        transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1) !important;
        cursor: pointer !important;
        margin: 0 !important;
    }

    .menu-bag .margin-shopping:active {
        transform: scale(0.9) !important;
        background: rgba(255, 255, 255, 0.15) !important;
    }

    .menu-bag .margin-shopping i {
        font-size: 18px !important;
        color: #ffffff !important;
    }

    .menu-bag .mobilecart-qty {
        position: absolute !important;
        top: -5px !important;
        right: -5px !important;
        min-width: 18px !important;
        height: 18px !important;
        background: linear-gradient(135deg, #E41E26 0%, #FF5A60 100%) !important;
        border: 2px solid #0A1628 !important;
        box-shadow: 0 2px 6px rgba(228, 30, 38, 0.4) !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 9px !important;
        font-weight: 700 !important;
        color: #ffffff !important;
        border-radius: 50% !important;
        padding: 0 !important;
    }

    .menu-bag .mobilecart-qty:empty {
        display: none !important;
    }

    /* ── Fix menu-logo pill badge and image overrides ── */
    .menu-logo {
        background: #FFFFFF !important;
        border-radius: 30px !important;
        padding: 4px 16px !important;
        height: 38px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1) !important;
        border: 1px solid rgba(255, 255, 255, 0.8) !important;
        transition: all 0.2s ease !important;
    }
    .menu-logo:active {
        transform: scale(0.97) !important;
    }
    .menu-logo img {
        height: 24px !important;
        width: auto !important;
        object-fit: contain !important;
        filter: none !important;
    }

    /* ── Fix header position ── */
    header#navbar_top {
        position: sticky !important;
        top: 0 !important;
        z-index: 999 !important;
    }

    /* ── Fix mobile-search from responsive.css ── */
    /* ── Mobile-search rules merged and cleaned up in main block above ── */

    /* ── Hot deal owl carousel grid override (see main block above) ── */
    /* NOTE: The canonical fix is in the main @media block targeting .owl-stage */
    /* These rules ensure nothing conflicts from this override block */
    .product_slider.owl-carousel .owl-stage {
        transform: none !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        width: 100% !important;
    }
    .product_slider.owl-carousel .owl-stage-outer {
        overflow: visible !important;
    }
    .product_slider.owl-carousel .owl-item {
        width: 100% !important;
        float: none !important;
        display: block !important;
        opacity: 1 !important;
    }


    /* ── Product price text ── */
    .pro_price p {
        font-size: 14px !important;
        font-weight: 700 !important;
        color: #0057B8 !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 4px !important;
        align-items: baseline !important;
    }

    /* ── Product grid spacing ── */
    .product_sliders {
        padding: 4px 12px 8px !important;
        gap: 10px !important;
    }

    /* ── Section title fix ── */
    .sec_title {
        padding: 12px 14px 6px !important;
        background: #fff !important;
        margin: 0 !important;
    }

    .section-title-name {
        font-size: 15px !important;
        font-weight: 800 !important;
    }

    /* ── View more button centering ── */
    .view_more_btn {
        display: block !important;
        margin: 6px 12px 8px !important;
        text-align: center !important;
        float: none !important;
        width: auto !important;
    }

    .show_more_btn {
        padding: 0 !important;
        text-align: center !important;
    }

    /* ── Footer bottom padding fix ── */
    .footer-bottom {
        margin-bottom: 0 !important;
        padding-bottom: 80px !important;
    }

    /* ── scrolltop override ── */
    .scrolltop {
        display: flex !important;
        bottom: 76px !important;
        right: 14px !important;
    }

    /* ── Rows inside containers ── */
    .homeproduct .row {
        margin: 0 !important;
    }

    .homeproduct .row > * {
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* ── Reseller promo – mobile flex fix ── */
    .reseller-promo {
        flex-direction: row !important;
        text-align: left !important;
    }

    /* ── Category section background ── */
    .homeproduct {
        border-radius: 0 !important;
        padding: 0 0 10px !important;
        margin-bottom: 8px !important;
    }

    /* ── Hot deal owl carousel: force 2 columns ── */
    .product_slider .owl-nav,
    .product_slider .owl-dots {
        display: none !important;
    }

    /* ── Remove animate.css on mobile for perf ── */
    .slider-section .animated { animation-duration: 0s !important; }

    /* ── Badge fixes ── */
    .sale-badge {
        top: 0 !important;
        left: 0 !important;
    }

    .sale-badge-inner {
        background: transparent !important;
        padding: 0 !important;
        border-radius: 0 !important;
    }

    .sale-badge-text {
        background: linear-gradient(135deg, #E41E26 0%, #FF6B72 100%) !important;
        border-radius: 0 0 10px 0 !important;
        min-width: 34px !important;
        min-height: 34px !important;
        padding: 4px 5px !important;
        font-size: 9px !important;
        box-shadow: 2px 2px 8px rgba(228,30,38,0.35) !important;
    }

    .sale-badge-text p {
        font-size: 12px !important;
        color: #fff !important;
        margin: 0 0 1px !important;
    }

    /* ── Hide redundant double red lines on headers ── */
    .sec_title h3::before {
        display: none !important;
    }

    /* ── Premium Product Card Shadows and Borders ── */
    .product_item,
    .product_item.wist_item {
        border: 1px solid rgba(0,0,0,0.05) !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.04) !important;
    }

    /* ── Details Redesign & Layout Overrides ── */
    
    /* 1. Breadcrumbs styling */
    .main-details-page .breadcrumb {
        padding: 0 !important;
        margin-bottom: 12px !important;
        background: transparent !important;
        border: none !important;
        box-shadow: none !important;
        border-radius: 0 !important;
    }
    .main-details-page .breadcrumb ul {
        display: flex !important;
        flex-wrap: wrap !important;
        align-items: center !important;
        gap: 6px !important;
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    .main-details-page .breadcrumb ul li, 
    .main-details-page .breadcrumb ul li a {
        font-size: 11px !important;
        color: var(--text-3) !important;
        text-decoration: none !important;
        font-weight: 500 !important;
    }
    .main-details-page .breadcrumb ul li span {
        color: #d1d5db !important;
        margin: 0 2px !important;
    }

    /* 2. Product title and price styling */
    .main-details-page .product-cart .name {
        font-size: 18px !important;
        font-weight: 800 !important;
        color: var(--text-1) !important;
        line-height: 1.4 !important;
        margin-bottom: 8px !important;
        font-family: var(--font) !important;
    }
    .main-details-page .details-price {
        font-size: 24px !important;
        font-weight: 800 !important;
        color: var(--lb-red) !important;
        display: flex !important;
        align-items: baseline !important;
        gap: 8px !important;
        margin: 12px 0 6px !important;
    }
    .main-details-page .details-price del {
        font-size: 14px !important;
        color: var(--text-3) !important;
        font-weight: 500 !important;
    }

    /* 3. Product code badge (Modern outline style) */
    .main-details-page .product-code p {
        display: inline-flex !important;
        align-items: center !important;
        background: rgba(0, 87, 184, 0.05) !important;
        border: 1px solid rgba(0, 87, 184, 0.18) !important;
        color: var(--lb-blue) !important;
        padding: 5px 12px !important;
        border-radius: var(--r-sm) !important;
        font-size: 11.5px !important;
        font-weight: 600 !important;
        margin: 8px 0 !important;
        line-height: normal !important;
        border-top: none !important;
        border-bottom: none !important;
        border-right: none !important;
        box-shadow: none !important;
    }
    .main-details-page .product-code p span {
        font-weight: 700 !important;
        margin-right: 4px !important;
    }

    /* 4. Flex-based capsule Quantity Selector */
    .main-details-page .qty-cart {
        margin: 14px 0 !important;
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
    }
    .main-details-page .qty-cart .quantity {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        width: 120px !important;
        height: 38px !important;
        background: #f3f4f6 !important;
        border-radius: 30px !important;
        padding: 3px !important;
        border: 1px solid rgba(0,0,0,0.06) !important;
        position: relative !important;
        overflow: hidden !important;
        margin: 0 !important;
    }
    .main-details-page .quantity .minus,
    .main-details-page .quantity .plus {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 32px !important;
        height: 32px !important;
        background: #fff !important;
        color: var(--text-1) !important;
        font-size: 16px !important;
        font-weight: 700 !important;
        border-radius: 50% !important;
        cursor: pointer !important;
        box-shadow: 0 2px 6px rgba(0,0,0,0.06) !important;
        transition: all 0.2s ease !important;
        position: static !important;
        padding: 0 !important;
        margin: 0 !important;
        line-height: normal !important;
        border: none !important;
    }
    .main-details-page .quantity .minus:active,
    .main-details-page .quantity .plus:active {
        transform: scale(0.9) !important;
        background: #f3f4f6 !important;
    }
    .main-details-page .quantity input {
        flex: 1 !important;
        width: 35px !important;
        height: 100% !important;
        border: none !important;
        outline: none !important;
        background: transparent !important;
        text-align: center !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        color: var(--text-1) !important;
        padding: 0 !important;
        margin: 0 !important;
        position: static !important;
    }

    /* 5. Modern Size and Color selectors */
    .main-details-page .pro-color, 
    .main-details-page .pro-size {
        margin: 12px 0 !important;
        background: #fafafa !important;
        padding: 12px 14px !important;
        border-radius: var(--r-md) !important;
        border: 1px solid rgba(0,0,0,0.05) !important;
        box-shadow: var(--sh-xs) !important;
    }
    .main-details-page .color_inner p, 
    .main-details-page .size_inner p {
        font-size: 12px !important;
        font-weight: 700 !important;
        color: var(--text-2) !important;
        margin-bottom: 8px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }
    .main-details-page .selector {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
    }
    .main-details-page .selector-item {
        position: relative !important;
        display: flex !important;
    }
    .main-details-page .selector-item_radio {
        position: absolute !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
    }
    .main-details-page .selector-item_label {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        min-width: 38px !important;
        height: 38px !important;
        border-radius: var(--r-sm) !important;
        border: 2px solid #e5e7eb !important;
        background: #fff !important;
        color: var(--text-2) !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        cursor: pointer !important;
        transition: all 0.2s ease !important;
        padding: 0 10px !important;
        margin: 0 !important;
    }
    .main-details-page .selector-item_radio:checked + .selector-item_label {
        border-color: var(--lb-blue) !important;
        background: rgba(0, 87, 184, 0.05) !important;
        color: var(--lb-blue) !important;
        box-shadow: 0 2px 8px rgba(0, 87, 184, 0.1) !important;
    }
    .main-details-page .pro-color .selector-item_label {
        border-radius: 50% !important;
        width: 30px !important;
        height: 30px !important;
        min-width: 30px !important;
        padding: 0 !important;
        border: 2px solid #e5e7eb !important;
        box-shadow: inset 0 0 0 2px #fff, var(--sh-xs) !important;
        position: relative !important;
    }
    .main-details-page .pro-color .selector-item_radio:checked + .selector-item_label {
        border-color: var(--lb-blue) !important;
        transform: scale(1.1) !important;
        box-shadow: inset 0 0 0 2px #fff, 0 4px 10px rgba(0, 87, 184, 0.2) !important;
    }
    .main-details-page .pro-color .selector-item_label span {
        display: none !important;
    }

    /* 6. Sticky bottom purchase bar + layout spacing on mobile details page */
    body.details-page-active .footer_nav {
        display: none !important;
    }
    body.details-page-active {
        padding-bottom: 78px !important;
    }
    body.details-page-active #content {
        padding-bottom: 78px !important;
    }
    .details-page-active .main-details-page .single_product {
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        z-index: 2000 !important;
        background: #ffffff !important;
        padding: 10px 14px !important;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08) !important;
        display: grid !important;
        grid-template-columns: 1fr 1.2fr !important;
        gap: 10px !important;
        margin: 0 !important;
        border-top: 1px solid rgba(0, 0, 0, 0.05) !important;
    }
    .details-page-active .main-details-page .add_cart_btn,
    .details-page-active .main-details-page .order_now_btn {
        height: 46px !important;
        margin: 0 !important;
        width: 100% !important;
        border-radius: var(--r-sm) !important;
        font-size: 13.5px !important;
        font-weight: 700 !important;
        letter-spacing: 0.2px !important;
        text-transform: uppercase !important;
    }

    /* 7. Spacing adjustments for other page footers to clear fixed bottom nav */
    body.login-page-active .customer-auth-wrapper,
    body.register-page-active .customer-auth-wrapper {
        padding-bottom: 90px !important;
    }
    .chheckout-section {
        padding-bottom: 100px !important;
    }
    .vcart-section {
        padding-bottom: 100px !important;
    }
    .customer-section {
        padding-bottom: 100px !important;
    }

}

/* ==================== GLOBAL PREMIUM FOOTER REDESIGN ==================== */
footer {
    background: #14122C !important;
    margin-bottom: 0 !important;
}

.footer-top {
    padding: 60px 0 !important;
    background: linear-gradient(180deg, #14122C 0%, #0E0C22 100%) !important;
    border-top: 1px solid rgba(197, 160, 89, 0.15) !important;
}

.footer-bottom {
    padding: 20px 0 !important;
    background: #0E0C22 !important;
    border-top: 1px solid rgba(197, 160, 89, 0.08) !important;
}

.footer-about {
    text-align: left !important;
    padding-right: 30px !important;
}

.footer-about a:first-child {
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    background: rgba(255, 255, 255, 0.07) !important;
    border-radius: 50% !important;
    width: 48px !important;
    height: 48px !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15) !important;
    border: 1.5px solid rgba(197, 160, 89, 0.35) !important;
    margin-bottom: 15px !important;
    padding: 0 !important;
}

.footer-about a:first-child img {
    height: 32px !important;
    width: 32px !important;
    object-fit: contain !important;
    filter: none !important;
    margin-bottom: 0 !important;
    display: inline-block !important;
}

.footer-about p {
    font-size: 14px !important;
    color: rgba(255, 255, 255, 0.65) !important;
    line-height: 1.7 !important;
    margin: 10px 0 20px 0 !important;
    text-align: left !important;
}

.footer-about a.footer-hotlint {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 10px 24px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    color: #14122C !important;
    background: linear-gradient(135deg, #c5a059 0%, #e2c28a 100%) !important;
    border-radius: 30px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(197, 160, 89, 0.25) !important;
    transition: all 0.25s ease !important;
}

.footer-about a.footer-hotlint:hover,
.footer-about a.footer-hotlint:active {
    transform: scale(0.96) translateY(-1px) !important;
    box-shadow: 0 6px 18px rgba(197, 160, 89, 0.35) !important;
    color: #14122C !important;
}

.footer-menu {
    margin-bottom: 20px !important;
}

.footer-menu .title,
.footer-menu ul li.title {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    padding-bottom: 6px !important;
    margin-bottom: 15px !important;
    border-bottom: 2px solid #c5a059 !important;
    display: inline-block !important;
}

.footer-menu ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}

.footer-menu ul li {
    display: block !important;
    margin: 8px 0 !important;
}

.footer-menu ul li a {
    font-size: 13.5px !important;
    color: rgba(255, 255, 255, 0.6) !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
    display: inline-block !important;
}

.footer-menu ul li a:hover {
    color: #c5a059 !important;
    transform: translateX(4px) !important;
}

.social_link {
    display: flex !important;
    gap: 12px !important;
    margin-top: 15px !important;
    padding: 0 !important;
    list-style: none !important;
}

.social_list {
    display: block !important;
}

.social_list a.mobile-social-link {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background: rgba(255, 255, 255, 0.06) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.2s ease !important;
    color: rgba(255, 255, 255, 0.7) !important;
    text-decoration: none !important;
}

.social_list a.mobile-social-link i {
    font-size: 15px !important;
    color: inherit !important;
}

.social_list a.mobile-social-link:hover,
.social_list a.mobile-social-link:active {
    background: linear-gradient(135deg, #c5a059 0%, #e2c28a 100%) !important;
    border-color: transparent !important;
    color: #14122C !important;
    transform: scale(0.92) !important;
}

/* App download styling */
.d_app {
    margin-top: 25px !important;
}

.d_app h2 {
    font-size: 13px !important;
    font-weight: 700 !important;
    color: #ffffff !important;
    text-transform: uppercase !important;
    letter-spacing: 1px !important;
    margin-bottom: 12px !important;
}

.d_app a img {
    max-width: 140px !important;
    height: auto !important;
    display: inline-block !important;
    transition: transform 0.2s ease !important;
}

.d_app a img:hover {
    transform: scale(0.96) !important;
}

.copyright p {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.45) !important;
    text-align: center !important;
    margin: 0 !important;
}

/* ==================== COMPACT MOBILE FOOTER OVERRIDES ==================== */
@media only screen and (max-width: 767px) {
    .footer-top {
        padding: 24px 16px 20px 16px !important;
    }

    .footer-bottom {
        padding: 12px 16px !important;
        padding-bottom: 90px !important; /* clearance for bottom navigation */
    }

    .footer-about {
        text-align: center !important;
        padding-right: 0 !important;
        margin-bottom: 20px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .footer-about a:first-child {
        margin-bottom: 10px !important;
        width: 48px !important;
        height: 48px !important;
        border-radius: 50% !important;
        padding: 0 !important;
    }

    .footer-about a:first-child img {
        width: 32px !important;
        height: 32px !important;
    }

    .footer-about p {
        font-size: 12.5px !important;
        line-height: 1.5 !important;
        margin: 6px 0 12px 0 !important;
        text-align: center !important;
        max-width: 280px !important;
    }

    .footer-about a.footer-hotlint {
        padding: 6px 18px !important;
        font-size: 13px !important;
        border-radius: 20px !important;
        box-shadow: 0 2px 10px rgba(228, 30, 38, 0.2) !important;
    }

    .footer-menu {
        margin-bottom: 12px !important;
        text-align: left !important;
    }

    .footer-menu .title,
    .footer-menu ul li.title {
        font-size: 12px !important;
        margin-bottom: 8px !important;
        padding-bottom: 4px !important;
    }

    .footer-menu ul li {
        margin: 4px 0 !important;
    }

    .footer-menu ul li a {
        font-size: 12.5px !important;
    }

    .social_link {
        justify-content: center !important;
        margin-top: 8px !important;
        gap: 8px !important;
    }

    .social_list a.mobile-social-link {
        width: 32px !important;
        height: 32px !important;
    }

    .social_list a.mobile-social-link i {
        font-size: 13px !important;
    }

    .d_app {
        margin-top: 15px !important;
        text-align: center !important;
    }

    .d_app h2 {
        font-size: 12px !important;
        margin-bottom: 8px !important;
    }

    .d_app a img {
        max-width: 110px !important;
    }

    .copyright p {
        font-size: 11.5px !important;
    }
}

/* ==================== FULLSCREEN APP-LIKE AUTH PAGES ==================== */
body.login-page-active,
body.register-page-active,
body.forgot-password-active,
body.reseller-login-active,
body.reseller-register-active {
    padding-bottom: 0 !important;
    overflow-x: hidden !important;
}

/* Hide standard layout components */
body.login-page-active header#navbar_top,
body.register-page-active header#navbar_top,
body.forgot-password-active header#navbar_top,
body.reseller-login-active header#navbar_top,
body.reseller-register-active header#navbar_top,
body.login-page-active footer,
body.register-page-active footer,
body.forgot-password-active footer,
body.reseller-login-active footer,
body.reseller-register-active footer,
body.login-page-active .footer_nav,
body.register-page-active .footer_nav,
body.forgot-password-active .footer_nav,
body.reseller-login-active .footer_nav,
body.reseller-register-active .footer_nav,
body.login-page-active .scrolltop,
body.register-page-active .scrolltop,
body.forgot-password-active .scrolltop,
body.reseller-login-active .scrolltop,
body.reseller-register-active .scrolltop {
    display: none !important;
}

/* Reset main content area and paddings */
body.login-page-active #content,
body.register-page-active #content,
body.forgot-password-active #content,
body.reseller-login-active #content,
body.reseller-register-active #content {
    padding-bottom: 0 !important;
    margin: 0 !important;
    background: transparent !important;
}

/* Set auth wrappers to occupy full viewport height */
body.login-page-active .customer-auth-wrapper,
body.register-page-active .customer-auth-wrapper,
body.forgot-password-active .customer-auth-wrapper,
body.reseller-login-active .reseller-auth-wrapper,
body.reseller-register-active .reseller-auth-wrapper {
    min-height: 100vh !important;
    margin: 0 !important;
    padding: 30px 16px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
}

/* Redesign Auth Cards to look premium and centered on mobile viewports */
@media (max-width: 576px) {
    body.login-page-active .auth-card,
    body.register-page-active .auth-card,
    body.forgot-password-active .auth-card,
    body.reseller-login-active .auth-card,
    body.reseller-register-active .auth-card {
        max-width: 100% !important;
        margin: 0 !important;
    }
}

/* ==================== GENERAL UI STABILITY & PREMIUM OVERRIDES ==================== */
@media only screen and (max-width: 767px) {
    /* Premium Form Inputs Override */
    .form-control,
    select.form-control,
    input[type="text"],
    input[type="number"],
    input[type="address"],
    input[type="email"],
    input[type="password"] {
        height: 46px !important;
        border-radius: 12px !important;
        font-size: 14px !important;
        border: 1.5px solid #e2e8f0 !important;
        background: #f8fafc !important;
        padding: 10px 16px !important;
        transition: all 0.2s ease !important;
        box-shadow: none !important;
    }

    .form-control:focus,
    select.form-control:focus,
    input:focus {
        border-color: #0057B8 !important;
        background: #ffffff !important;
        box-shadow: 0 0 0 4px rgba(0, 87, 184, 0.1) !important;
        outline: none !important;
    }

    /* Premium Tables Override */
    .table-responsive,
    .table-responsive-sm {
        border: none !important;
        margin-bottom: 20px !important;
    }

    .table {
        background: #ffffff !important;
        border-radius: 12px !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        overflow: hidden !important;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04) !important;
        margin-bottom: 0 !important;
    }

    .table th {
        background: #f8fafc !important;
        color: #374151 !important;
        font-weight: 700 !important;
        font-size: 11px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
        padding: 12px 14px !important;
        border-bottom: 2px solid #e2e8f0 !important;
        border-top: none !important;
    }

    .table td {
        padding: 12px 14px !important;
        font-size: 13px !important;
        vertical-align: middle !important;
        border-bottom: 1px solid #f1f5f9 !important;
        color: #4b5563 !important;
    }

    .table tr:last-child td {
        border-bottom: none !important;
    }

    /* Premium Card Containers Override */
    .card {
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        border-radius: 16px !important;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04) !important;
        overflow: hidden !important;
        background: #ffffff !important;
        margin-bottom: 16px !important;
    }

    .card-header {
        background: #f8fafc !important;
        border-bottom: 1px solid #f1f5f9 !important;
        padding: 14px 16px !important;
    }

    .card-header h5,
    .card-header h6,
    .card-header .card-title {
        font-weight: 700 !important;
        font-size: 14px !important;
        color: #111827 !important;
        margin: 0 !important;
    }

    /* Premium CTA / Checkout Buttons */
    button.order_place,
    .order_place,
    .btn-submit-checkout {
        width: 100% !important;
        height: 48px !important;
        background: linear-gradient(135deg, #E41E26 0%, #FF6B72 100%) !important;
        color: #ffffff !important;
        border: none !important;
        border-radius: 12px !important;
        font-size: 15px !important;
        font-weight: 700 !important;
        box-shadow: 0 4px 15px rgba(228, 30, 38, 0.3) !important;
        transition: all 0.2s ease !important;
        cursor: pointer !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        text-transform: uppercase !important;
        letter-spacing: 0.5px !important;
    }

    button.order_place:active,
    .order_place:active {
        transform: scale(0.96) !important;
    }
}



/* ═══════════════════════════════════════════════════════════════
   COMPACT FOOTER — Thai Picks lk-footer system
   ═══════════════════════════════════════════════════════════════ */

/* ── Wrapper ── */
.lk-footer {
    background: linear-gradient(180deg, #14122C 0%, #0c0b1e 100%);
    border-top: 1px solid rgba(197,160,89,.22);
    font-family: 'Outfit', 'Hind Siliguri', sans-serif;
}

/* ── Main section ── */
.lk-footer-main {
    padding: 32px 0 24px;
}
.lk-footer-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr 1.6fr 1fr;
    gap: 32px;
    align-items: start;
}

/* ── LEFT: Brand zone ── */
.lk-footer-brand {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.lk-footer-logo-link { flex-shrink: 0; text-decoration: none !important; }
.lk-footer-logo-ring {
    width: 48px; height: 48px;
    border-radius: 50%;
    padding: 2.5px;
    background: conic-gradient(#9a7830 0deg, #c5a059 90deg, #e2c28a 180deg, #c5a059 270deg, #9a7830 360deg);
    flex-shrink: 0;
}
.lk-footer-logo-ring img {
    width: 100%; height: 100%;
    border-radius: 50%;
    object-fit: contain;
    background: #14122C;
    padding: 3px;
    display: block;
}
.lk-footer-brand-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding-top: 2px;
}
.lk-footer-brand-name {
    font-size: 13px; font-weight: 800;
    color: #e2c28a;
    letter-spacing: .04em; text-transform: uppercase; line-height: 1.2;
}
.lk-footer-brand-sub {
    font-size: 9.5px; color: rgba(197,160,89,.5);
    letter-spacing: .14em; text-transform: uppercase; font-weight: 600;
}
.lk-footer-phone {
    margin-top: 6px;
    display: inline-flex; align-items: center; gap: 6px;
    font-size: 12px; font-weight: 700;
    color: #14122C;
    background: linear-gradient(135deg, #c5a059, #e2c28a);
    padding: 4px 12px; border-radius: 20px;
    text-decoration: none !important;
    box-shadow: 0 3px 10px rgba(197,160,89,.3);
    transition: filter .2s, transform .15s;
    width: fit-content; white-space: nowrap;
}
.lk-footer-phone i { font-size: 10px; }
.lk-footer-phone:hover { filter: brightness(1.08); transform: translateY(-1px); }

/* ── CENTRE: Links grid ── */
.lk-footer-links {
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px 16px;
}
.lk-footer-link-col {
    display: flex; flex-direction: column; gap: 6px;
}
.lk-footer-col-title {
    font-size: 10px; font-weight: 800;
    color: #e2c28a;
    text-transform: uppercase; letter-spacing: .14em;
    margin-bottom: 6px; padding-bottom: 6px;
    border-bottom: 1.5px solid rgba(197,160,89,.3);
    display: block;
}
.lk-footer-link {
    font-size: 12.5px; color: rgba(255,255,255,.55);
    text-decoration: none !important;
    transition: color .2s, padding-left .2s;
    display: block; line-height: 1.5;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.lk-footer-link:hover { color: #e2c28a; padding-left: 4px; }

/* ── RIGHT: Social + address ── */
.lk-footer-right {
    display: flex; flex-direction: column; gap: 10px; align-items: flex-start;
}
.lk-footer-socials {
    display: flex; flex-wrap: wrap; gap: 8px; margin-top: 2px;
}
.lk-footer-social-btn {
    width: 34px; height: 34px; border-radius: 9px;
    border: 1.5px solid rgba(197,160,89,.28);
    background: rgba(197,160,89,.07);
    color: rgba(255,255,255,.6);
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; text-decoration: none !important;
    transition: all .22s ease; backdrop-filter: blur(4px);
}
.lk-footer-social-btn:hover {
    background: rgba(197,160,89,.22); border-color: #c5a059;
    color: #fff; transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(197,160,89,.25);
}
.lk-footer-address {
    font-size: 11.5px; color: rgba(255,255,255,.42);
    line-height: 1.55; margin: 0;
    display: flex; align-items: flex-start; gap: 5px;
}
.lk-footer-address i {
    font-size: 10px; color: rgba(197,160,89,.55);
    margin-top: 3px; flex-shrink: 0;
}

/* ── Copyright bar ── */
.lk-footer-bar {
    background: rgba(0,0,0,.3);
    border-top: 1px solid rgba(197,160,89,.1);
    padding: 10px 0;
}
.lk-footer-bar-inner {
    max-width: 1280px; margin: 0 auto; padding: 0 24px;
    display: flex; align-items: center; justify-content: center;
    gap: 10px; flex-wrap: wrap;
    font-size: 11.5px; color: rgba(255,255,255,.35);
}
.lk-footer-bar-inner strong { color: rgba(197,160,89,.7); font-weight: 700; }
.lk-footer-bar-sep { opacity: .3; }

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {
    .lk-footer-inner {
        grid-template-columns: 1fr 1fr;
        gap: 24px 20px;
    }
    .lk-footer-brand { grid-column: 1 / -1; }
}

/* ── Mobile (≤600px) ── */
@media (max-width: 600px) {
    .lk-footer-main { padding: 24px 0 16px; }
    .lk-footer-inner {
        grid-template-columns: 1fr 1fr;
        padding: 0 16px; gap: 20px 12px;
    }
    .lk-footer-brand {
        grid-column: 1 / -1;
        flex-direction: row; align-items: center; gap: 10px;
    }
    .lk-footer-links { grid-template-columns: 1fr 1fr; gap: 16px 12px; }
    .lk-footer-right {
        grid-column: 1 / -1;
        flex-direction: row; flex-wrap: wrap; align-items: center; gap: 12px;
    }
    .lk-footer-col-title { margin-bottom: 4px; }
    .lk-footer-link { font-size: 12px; }
    .lk-footer-address { font-size: 11px; }
    .lk-footer-bar { padding-bottom: 80px; }
    .lk-footer-bar-inner { font-size: 11px; padding: 0 16px; }
}
