/* ============================================================
   Rafi Electronics - Main Stylesheet
   Primary: #0a0058 | Secondary: #FFFFFF
   ============================================================ */

:root {
    --primary: #0a0058;
    --primary-light: #160080;
    --primary-dark: #060038;
    --secondary: #FFFFFF;
    --accent: #4a5af7;
    --accent-hover: #2b3fd4;
    --success: #28a745;
    --warning: #ffc107;
    --danger: #dc3545;
    --gray-100: #f8f9fa;
    --gray-200: #e9ecef;
    --gray-600: #6c757d;
    --gray-800: #343a40;
    --text-dark: #1a1a2e;
    --text-muted: #6c757d;
    --border: #e0e0e0;
    --shadow: 0 4px 20px rgba(10,0,88,0.12);
    --shadow-hover: 0 8px 30px rgba(10,0,88,0.22);
    --radius: 10px;
    --radius-sm: 6px;
    --transition: all 0.3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html { 
    scroll-behavior: smooth; 
    overflow-x: hidden; 
    overflow-x: clip; 
    scrollbar-width: auto;
    scrollbar-color: var(--primary) #f1f5f9;
}

/* Custom Scrollbar Styles */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}
::-webkit-scrollbar-track {
    background: #f8fafc;
}
::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 20px;
    border: 2.5px solid #f8fafc;
}
::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--accent) 0%, var(--primary) 100%);
}

body {
    font-family: 'Outfit', 'Segoe UI', system-ui, -apple-system, sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: #fff;
    line-height: 1.5;
    overflow-x: hidden;
    overflow-x: clip;
}

a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-light); }
img { max-width: 100%; height: auto; }
button { cursor: pointer; }

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
    background: linear-gradient(135deg, #05002b 0%, #0a0058 50%, #0d006c 100%);
    color: rgba(255,255,255,0.85);
    font-size: 12px;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.topbar a { 
    color: rgba(255,255,255,0.85); 
    transition: var(--transition); 
    display: inline-flex;
    align-items: center;
    gap: 4px;
}
.topbar a:hover { 
    color: #4a5af7; 
    text-shadow: 0 0 8px rgba(74, 90, 247, 0.4);
}

/* Scrolling notice bar above topbar (admin-managed) */
.notice-bar { 
    background: linear-gradient(90deg, #040020, #0a0058, #040020); 
    color: #fff; 
    font-size: 12px; 
    overflow: hidden; 
    padding: 5px 0; 
    border-bottom: 1px solid rgba(255,255,255,0.06); 
    box-shadow: inset 0 -1px 0 rgba(255,255,255,0.05);
}
.notice-bar-track { display: inline-flex; white-space: nowrap; width: max-content; animation: noticeScroll 25s linear infinite; }
.notice-bar:hover .notice-bar-track { animation-play-state: paused; }
.notice-bar-item { padding-right: 90px; font-weight: 500; letter-spacing: 0.2px; }
.notice-bar-item::before { content: '\2726'; color: #ffca28; margin-right: 8px; text-shadow: 0 0 8px rgba(255,202,40,0.6); }
@keyframes noticeScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

.topbar-welcome { font-size: 12px; }
.topbar-welcome i { color: #4a5af7; margin-right: 4px; }
.topbar-welcome strong { color: #fff; font-weight: 600; }

/* Delivery charges announcement bar */
.delivery-bar { background: linear-gradient(90deg, var(--accent-hover), var(--accent)); color: #fff; font-size: 11.5px; font-weight: 500; padding: 5px 0; text-align: center; }
.delivery-bar i { color: #ffe9a8; }
.delivery-bar a { color: #fff; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.delivery-bar a:hover { color: #ffe9a8; }

/* Delivery charges notice box (cart / checkout) */
.delivery-note { font-size: 12px; line-height: 1.6; color: #8a6d1a; background: linear-gradient(135deg, rgba(255,193,7,0.12), rgba(255,152,0,0.08)); border: 1px dashed rgba(255,152,0,0.45); border-radius: 10px; padding: 10px 14px; }
.delivery-note i { color: #e08700; }
.delivery-note a { color: #b26a00; font-weight: 700; text-decoration: underline; text-underline-offset: 2px; }
.delivery-note a:hover { color: #8a4d00; }

.topbar .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px; height: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.85);
    font-size: 10px;
    margin-left: 6px;
    transition: var(--transition);
}
.topbar .social-link:hover { 
    background: var(--accent); 
    border-color: var(--accent); 
    color: #fff; 
    transform: translateY(-2px) scale(1.05); 
    box-shadow: 0 4px 10px rgba(74, 90, 247, 0.3);
}

/* Centered welcome / announcement message in top bar */
.topbar-msg {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
    z-index: 1;
}
.topbar-msg i { color: var(--accent); }

/* Mobile Topbar */
.mobile-topbar {
    background: linear-gradient(135deg, #05002b 0%, #0a0058 100%);
    color: rgba(255,255,255,0.85);
    font-size: 11.5px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-topbar-welcome i { color: #4a5af7; }
.mobile-topbar .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px; height: 22px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50%;
    color: rgba(255,255,255,0.85);
    font-size: 9px;
    margin-left: 4px;
    transition: var(--transition);
}
.mobile-topbar .social-link:hover {
    background: var(--accent);
    color: #fff;
    border-color: var(--accent);
}


/* ============================================================
   MAIN HEADER
   ============================================================ */
.main-header {
    background: #ffffff;
    box-shadow: 0 4px 25px rgba(12, 0, 102, 0.04);
    border-bottom: 1px solid rgba(12, 0, 102, 0.04);
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 3px 0;
}

.logo-link { display: inline-block; text-decoration: none; }
.logo-img { height: 56px; width: auto; max-width: 100%; object-fit: contain; }

/* Styles for fallback logo */
.logo-text {
    font-size: 20px;
    font-weight: 800;
    letter-spacing: -0.5px;
    gap: 6px;
}
.logo-badge-r {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: #ffffff;
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-weight: 900;
    font-size: 18px;
    box-shadow: 0 4px 10px rgba(74, 90, 247, 0.25);
    position: relative;
    overflow: hidden;
    margin-right: 2px;
}
.logo-badge-r::after {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: skewX(-25deg);
    animation: logoShine 3.5s infinite ease-in-out;
}
@keyframes logoShine {
    0% { left: -100%; }
    30%, 100% { left: 150%; }
}
.logo-text-main {
    font-weight: 800;
    color: var(--primary);
}
.logo-text-sub {
    color: var(--accent);
    font-weight: 600;
}

/* ============================================================
   SEARCH BAR
   ============================================================ */
.search-wrapper { position: relative; }

.search-input-group {
    display: flex;
    align-items: center;
    border: 1px solid rgba(12, 0, 102, 0.15);
    background: #fff;
    border-radius: 50px;
    padding: 2px;
    transition: var(--transition);
    box-shadow: 0 3px 10px rgba(12, 0, 102, 0.03);
}
.search-input-group:focus-within { 
    border-color: var(--accent); 
    box-shadow: 0 4px 15px rgba(74, 90, 247, 0.12), 0 0 0 3px rgba(74, 90, 247, 0.06); 
}

.search-category-select {
    border: none;
    border-right: 1px solid rgba(12, 0, 102, 0.08);
    padding: 0 14px;
    font-size: 12.5px;
    font-weight: 500;
    background: #f8fafc;
    color: var(--text-dark);
    outline: none;
    cursor: pointer;
    min-width: 125px;
    height: 32px;
    border-radius: 40px 0 0 40px;
    transition: var(--transition);
}
.search-category-select:hover {
    background: #f1f5f9;
}

.search-input {
    flex: 1;
    border: none;
    padding: 6px 14px;
    font-size: 13px;
    outline: none;
    background: #fff;
    color: var(--text-dark);
}
.search-input::placeholder { color: #94a3b8; }

.search-btn {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: #fff;
    border: none;
    height: 32px;
    padding: 0 20px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    flex-shrink: 0;
    border-radius: 40px;
    box-shadow: 0 3px 8px rgba(12, 0, 102, 0.15);
}
.search-btn:hover { 
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--accent) 100%); 
    transform: scale(1.02);
    box-shadow: 0 4px 12px rgba(74, 90, 247, 0.25);
}

.search-btn:focus, .search-btn:focus-visible,
.search-input:focus, .search-input:focus-visible,
.search-category-select:focus, .search-category-select:focus-visible { outline: none !important; box-shadow: none !important; }
.search-btn::-moz-focus-inner { border: 0; }
.mobile-search .btn:focus, .mobile-search .btn:focus-visible,
.mobile-search .form-control:focus { box-shadow: none !important; outline: none !important; }

/* Search Dropdown */
.search-dropdown {
    position: absolute;
    top: calc(100% + 5px);
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid rgba(12, 0, 102, 0.08);
    border-radius: var(--radius);
    box-shadow: 0 8px 25px rgba(12, 0, 102, 0.1);
    max-height: 400px;
    overflow-y: auto;
    z-index: 9999;
    display: none;
    animation: slideDownFade 0.2s ease;
}
@keyframes slideDownFade {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}
.search-dropdown.show { display: block; }

.search-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    transition: var(--transition);
    cursor: pointer;
}
.search-item:hover { background: var(--gray-100); }
.search-item-img { width: 40px; height: 40px; object-fit: cover; border-radius: var(--radius-sm); flex-shrink: 0; }
.search-item-info .name { font-size: 12.5px; font-weight: 600; color: var(--text-dark); }
.search-item-info .price { font-size: 11.5px; color: var(--primary); font-weight: 700; }
.search-no-results { padding: 14px; text-align: center; color: var(--text-muted); font-size: 12.5px; }


/* ============================================================
   HEADER ACTIONS
   ============================================================ */
.header-action-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    flex-direction: column;
    gap: 1px;
    background: none;
    border: none;
    color: var(--text-dark);
    padding: 2px 8px;
    border-radius: 12px;
    transition: var(--transition);
    text-decoration: none;
}
.header-action-btn:hover { 
    color: var(--accent); 
    background: transparent; 
}

.action-icon-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f8fafc;
    color: var(--primary);
    border: 1px solid rgba(12, 0, 102, 0.03);
    transition: var(--transition);
    font-size: 15px;
}
.header-action-btn:hover .action-icon-wrapper {
    background: var(--primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(12, 0, 102, 0.12);
}

.header-action-btn .action-label { 
    font-size: 10px;
    font-weight: 600; 
    color: #475569; 
    transition: var(--transition); 
    margin-top: 2px;
}
.header-action-btn:hover .action-label { color: var(--accent); }
.header-action-btn.cart-btn .action-icon-wrapper { color: var(--primary); }
.header-action-btn.cart-btn:hover .action-icon-wrapper { color: #fff; background: var(--accent); }

.action-badge {
    position: absolute;
    top: -4px; right: -4px;
    background: linear-gradient(135deg, #ff0844 0%, #ffb199 100%);
    color: #fff;
    font-size: 8px;
    font-weight: 800;
    min-width: 16px; height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    border: 1.5px solid #fff;
    box-shadow: 0 2px 6px rgba(255, 8, 68, 0.3);
}

/* Micro-animations for Header Icons */
.header-action-btn:hover .fa-heart {
    animation: heartBeat 0.8s ease-in-out infinite;
}
@keyframes heartBeat {
    0%, 100% { transform: scale(1); }
    30% { transform: scale(1.22); }
    60% { transform: scale(1.1); }
}

.header-action-btn:hover .fa-shopping-cart {
    animation: cartWobble 0.8s ease-in-out;
}
@keyframes cartWobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg) translateX(-2px); }
    50% { transform: rotate(8deg) translateX(2px); }
    75% { transform: rotate(-4deg) translateX(-1px); }
}

.header-action-btn:hover .fa-user {
    animation: userPulse 0.8s ease-in-out;
}
@keyframes userPulse {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-3px) scale(1.12); }
}

/* Account Dropdown */
.account-dropdown { 
    min-width: 200px; 
    border: 1px solid rgba(12, 0, 102, 0.08); 
    border-radius: 12px; 
    box-shadow: 0 8px 25px rgba(12, 0, 102, 0.12); 
    padding: 6px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    transform: translateY(10px) !important;
    opacity: 0;
    visibility: hidden;
    display: block !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.dropdown-menu.account-dropdown.show {
    transform: translateY(0) !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.account-dropdown .dropdown-item { 
    font-size: 13px; 
    padding: 7px 14px; 
    border-radius: 6px;
    font-weight: 500;
    transition: var(--transition);
}
.account-dropdown .dropdown-item:hover {
    background: #f1f5f9;
    color: var(--primary);
}
.account-dropdown .dropdown-item i { width: 18px; color: var(--primary); }


/* ============================================================
   MAIN NAV
   ============================================================ */
.main-nav {
    background: linear-gradient(90deg, #05002b 0%, #0a0058 50%, #0d006c 100%);
    padding: 0;
    box-shadow: 0 4px 15px rgba(10, 0, 88, 0.12);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-wrapper { min-height: 40px; }

.btn-categories {
    background: #ffffff;
    color: var(--primary);
    border: 1px solid rgba(12, 0, 102, 0.08);
    font-weight: 700;
    font-size: 13px;
    padding: 6px 14px;
    margin: 4px 0;
    border-radius: 30px;
    white-space: nowrap;
    box-shadow: 0 3px 8px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.btn-categories:hover, .btn-categories:focus { 
    background: var(--accent); 
    color: #ffffff; 
    box-shadow: 0 4px 14px rgba(74,90,247,0.3); 
    transform: translateY(-1px);
}
.btn-categories:hover i {
    transform: rotate(90deg);
}
.btn-categories i {
    transition: transform 0.3s ease;
}
.btn-categories::after { filter: none; }

.nav-link-item {
    color: rgba(255,255,255,0.85) !important;
    font-size: 13px;
    font-weight: 500;
    padding: 10px 14px !important;
    display: inline-block;
    transition: var(--transition);
    position: relative;
    border-bottom: none !important;
    text-decoration: none;
}
.nav-link-item::after {
    content: '';
    position: absolute;
    bottom: 3px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateX(-50%);
    border-radius: 2px;
}
.nav-link-item:hover {
    color: #fff !important;
}
.nav-link-item:hover::after, .nav-link-item.active::after {
    width: calc(100% - 28px);
}

.track-link { 
    background: rgba(255,255,255,0.08); 
    border: 1px solid rgba(255,255,255,0.15); 
    border-radius: 30px; 
    padding: 5px 14px !important; 
    margin-left: 6px; 
    transition: var(--transition); 
}
.track-link::after { display: none !important; }
.track-link:hover { 
    background: rgba(74,90,247,0.25); 
    border-color: rgba(74,90,247,0.6); 
    box-shadow: 0 0 10px rgba(74, 90, 247, 0.25);
}

/* Mobile: desktop nav is hidden on mobile devices */
@media (max-width: 991.98px) { .main-nav { display: none; } }

.flash-sale-nav-btn {
    position: relative;
    overflow: hidden;
    /* Fallback = red theme; overridden by class or custom variables */
    --fs-a: #D2042D;
    --fs-b: #a30324;
    --fs-rgb: 210, 4, 45;
    --fs-rgb2: 163, 3, 36;
    background: linear-gradient(135deg, var(--fs-a), var(--fs-b));
    color: #fff;
    padding: 5px 16px;
    border-radius: 30px;
    font-size: 12.5px;
    font-weight: 700;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    box-shadow: 0 3px 10px rgba(var(--fs-rgb), 0.25);
    animation: flashSalePulse 1.6s ease-out infinite;
}
.flash-sale-nav-btn:hover {
    filter: brightness(1.15);
    color: #fff;
    transform: scale(1.04);
    animation-duration: 0.6s;
}

/* Lightning bolt */
.flash-sale-bolt {
    display: inline-block;
    transform-origin: center;
    animation: flashSaleBolt 1.2s ease-in-out infinite;
}

/* Shine sweep sweep across button */
.flash-sale-shine {
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: skewX(-20deg);
    animation: flashSaleShine 2s ease-in-out infinite;
}

/* Promos group styling */
.nav-promo-group {
    gap: 6px;
}
.nav-sale-tab {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    padding: 5px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    transition: var(--transition);
}
.nav-sale-tab:hover {
    background: #ffffff;
    color: var(--primary);
    box-shadow: 0 3px 10px rgba(255, 255, 255, 0.15);
    transform: translateY(-1px);
}
.sale-dot-pulse {
    width: 7px;
    height: 7px;
    background: #ef4444;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7);
    animation: saleDotPulse 1.6s infinite;
}
@keyframes saleDotPulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 5px rgba(239, 68, 68, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(239, 68, 68, 0); }
}

/* Pulsing glow ring */
@keyframes flashSalePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--fs-rgb), 0.5); }
    50% { box-shadow: 0 0 0 9px rgba(var(--fs-rgb), 0); }
}

/* Bolt bounce + rotate */
@keyframes flashSaleBolt {
    0%, 100% { transform: rotate(-12deg) translateY(0); }
    25% { transform: rotate(10deg) translateY(-2px); }
    50% { transform: rotate(-6deg) translateY(-1px); }
    75% { transform: rotate(8deg) translateY(1px); }
}

/* Shine sweep */
@keyframes flashSaleShine {
    0% { left: -60%; }
    55%, 100% { left: 120%; }
}

/* Mega Menu Categories */
.mega-menu-categories {
    min-width: 240px;
    width: 240px;
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 6px 0 !important;
}

/* Each category row wrapper */
.cat-menu-item {
    position: relative;
}

.category-mega-item {
    display: flex;
    align-items: center;
    padding: 9px 16px;
    font-size: 13.5px;
    color: var(--text-dark);
    border-radius: 0;
    transition: var(--transition);
    white-space: nowrap;
    text-decoration: none;
    border-left: 3px solid transparent;
}
.category-mega-item:hover {
    background: var(--gray-100);
    color: var(--primary);
    border-left-color: var(--accent);
}
.category-mega-item i { color: var(--primary); width: 20px; flex-shrink: 0; }
.cat-arrow { font-size: 10px !important; color: var(--text-muted) !important; width: auto !important; transition: var(--transition); }

/* Sub-menu flyout */
.cat-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    min-width: 230px;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 8px 30px rgba(10,0,88,0.18);
    padding: 6px 0;
    z-index: 99999;
    border: 1px solid var(--border);
    animation: fadeInLeft 0.18s ease;
    max-height: 80vh;
    overflow-y: auto;
}

/* Ensure dropdown never clips the flyout */
.mega-menu-categories,
.all-categories-btn .dropdown-menu {
    overflow: visible !important;
}

@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-8px); }
    to   { opacity: 1; transform: translateX(0); }
}

.cat-menu-item.has-sub:hover > .cat-submenu { display: block; }
.cat-menu-item.has-sub:hover > .category-mega-item { background: var(--gray-100); color: var(--primary); border-left-color: var(--accent); }
.cat-menu-item.has-sub:hover .cat-arrow { color: var(--primary) !important; transform: translateX(2px); }

.cat-submenu-item {
    display: flex;
    align-items: center;
    padding: 8px 16px;
    font-size: 13px;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    border-left: 3px solid transparent;
}
.cat-submenu-item:hover {
    background: var(--gray-100);
    color: var(--primary);
    border-left-color: var(--accent);
    padding-left: 20px;
}
.cat-submenu-item i { color: var(--primary); width: 18px; flex-shrink: 0; font-size: 11px; }
.cat-submenu-all {
    font-weight: 700;
    color: var(--primary);
    border-bottom: 1px solid var(--border);
    margin-bottom: 4px;
}
.cat-submenu-all i { font-size: 12px; }

/* ============================================================
   MOBILE MENU
   ============================================================ */
.mobile-menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 6px;
}
.mobile-menu-toggle span {
    display: block;
    width: 24px; height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-sidebar {
    position: fixed;
    top: 0; left: -300px;
    width: 290px; height: 100vh;
    background: #fff;
    z-index: 9998;
    transition: left 0.3s ease;
    overflow-y: auto;
    box-shadow: 4px 0 20px rgba(0,0,0,0.15);
}
.mobile-sidebar.open { left: 0; }

.mobile-sidebar-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9997;
    display: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.mobile-sidebar-overlay.show { display: block; opacity: 1; }

.mobile-sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: var(--primary);
    color: #fff;
}
.mobile-sidebar-title { font-weight: 700; font-size: 16px; }
.mobile-sidebar-close { background: none; border: none; color: #fff; font-size: 20px; }

.mobile-nav-list a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--text-dark);
    font-size: 14px;
    border-bottom: 1px solid var(--gray-100);
    transition: var(--transition);
}
.mobile-nav-list a:hover { background: rgba(12,0,102,0.05); color: var(--primary); }
.mobile-nav-list a i { width: 22px; color: var(--primary); }

.mobile-nav-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 12px 20px;
    background: none;
    border: none;
    border-bottom: 1px solid var(--gray-100);
    font-size: 14px;
    color: var(--text-dark);
    text-align: left;
}
.mobile-sub-nav { display: none; background: var(--gray-100); }
.mobile-sub-nav a { padding-left: 40px !important; }
.mobile-sub-nav.open { display: block; }


/* ============================================================
   PRODUCT CARD
/* Fix slick list clipping hovered product cards */
.products-slider .slick-list {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
    margin-top: -10px !important;
    margin-bottom: -10px !important;
}

.product-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-4px);
    border-color: var(--primary);
}
.product-card-img-wrapper {
    position: relative;
    overflow: hidden;
    background: var(--gray-100);
    aspect-ratio: 1/1;
}
.product-card-img {
    width: 100%; height: 100%;
    object-fit: contain;
    padding: 12px;
    transition: transform 0.4s ease;
}
.product-card:hover .product-card-img { transform: scale(1.05); }

.product-card-badges {
    position: absolute;
    top: 10px; left: 10px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    z-index: 2;
}
.badge-sale { background: linear-gradient(135deg, #ff4d4d, #d2042d); color: #fff; font-size: 11.5px; font-weight: 800; padding: 4px 12px; border-radius: 20px; box-shadow: 0 4px 10px rgba(220,53,69,0.4); letter-spacing: 0.3px; }
.badge-new { background: var(--success); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.badge-flash {
    background: linear-gradient(135deg, var(--fs-theme-a), var(--fs-theme-b));
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 3.5px 10px;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(var(--fs-theme-rgb), 0.35);
    animation: globalFlashSaleBadgePulse 1.5s ease-in-out infinite;
}
@keyframes globalFlashSaleBadgePulse {
    0%, 100% { box-shadow: 0 2px 6px rgba(var(--fs-theme-rgb), 0.35), 0 0 0 0 rgba(var(--fs-theme-rgb), 0.55); }
    50%      { box-shadow: 0 2px 6px rgba(var(--fs-theme-rgb), 0.35), 0 0 0 6px rgba(var(--fs-theme-rgb), 0); }
}
.badge-flash-img {
    max-height: 28px;
    width: auto;
    object-fit: contain;
    display: inline-block;
    filter: drop-shadow(0 2px 5px rgba(0,0,0,0.18));
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    transition: transform 0.25s ease;
}
.badge-flash-img:hover {
    transform: scale(1.06);
}

.badge-flash-img-absolute-br {
    position: absolute;
    bottom: 10px;
    right: 10px;
    max-height: 26px;
    width: auto;
    object-fit: contain;
    z-index: 2;
    pointer-events: none;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0 !important;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.15));
    transition: transform 0.25s ease;
    /* GPU Hardware Acceleration to prevent video lag/stutter */
    transform: translate3d(0, 0, 0);
    will-change: transform;
    backface-visibility: hidden;
    perspective: 1000px;
}
.product-card:hover .badge-flash-img-absolute-br,
.product-main-img-wrapper:hover .badge-flash-img-absolute-br {
    transform: scale(1.08) translate3d(0, 0, 0);
}



.badge-out-of-stock { background: var(--gray-600); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; }


.product-card-actions {
    position: absolute;
    top: 10px; right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0;
    transform: translateX(20px);
    transition: var(--transition);
    z-index: 2;
}
.product-card:hover .product-card-actions { opacity: 1; transform: translateX(0); }

.card-action-btn {
    width: 36px; height: 36px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px;
    color: var(--text-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: var(--transition);
    cursor: pointer;
}
.card-action-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.card-action-btn.active { background: var(--danger); color: #fff; border-color: var(--danger); }

.product-card-body {
    padding: 14px;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.product-brand { font-size: 11px; color: var(--primary); font-weight: 600; text-transform: uppercase; margin-bottom: 4px; }
.product-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
    line-height: 1.4;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.product-title a { color: inherit; }
.product-title a:hover { color: var(--primary); }
.product-sub-name { font-size: 11px; color: var(--text-muted); margin-top: -4px; margin-bottom: 8px; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }

.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 8px; font-size: 12px; }
.product-rating .stars { color: var(--warning); font-size: 12px; }
.product-rating .count { color: var(--text-muted); }

.product-price { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 12px; }
.price-current { font-size: 18px; font-weight: 800; color: var(--primary); }
.price-original { font-size: 13px; color: var(--text-muted); text-decoration: line-through; }
.price-discount { background: rgba(220,53,69,0.1); color: var(--danger); font-size: 11px; font-weight: 700; padding: 2px 6px; border-radius: 4px; }

.product-card-footer { margin-top: auto; }

.btn-add-cart {
    width: 100%;
    background: var(--primary);
    color: #fff;
    border: 2px solid var(--primary);
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.btn-add-cart:hover { background: var(--primary-light); border-color: var(--primary-light); color: #fff; }
.btn-add-cart:disabled { opacity: 0.6; cursor: not-allowed; }

/* ============================================================
   SECTION TITLES
   ============================================================ */
.section-header { margin-bottom: 30px; }
.section-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--primary);
    position: relative;
    display: inline-block;
    margin-bottom: 6px;
}
.section-title::after {
    content: '';
    display: block;
    width: 50px; height: 3px;
    background: var(--accent);
    border-radius: 2px;
    margin-top: 8px;
}
.section-subtitle { color: var(--text-muted); font-size: 14px; }
.view-all-link { font-size: 13px; font-weight: 600; color: var(--primary); border: 2px solid var(--primary); padding: 6px 18px; border-radius: 20px; transition: var(--transition); }
.view-all-link:hover { background: var(--primary); color: #fff; }

/* ============================================================
   HERO SLIDER
   ============================================================ */
.hero-slider-section {
    background: var(--primary-dark);
    overflow: hidden;
    position: relative;
}

.hero-slide {
    position: relative;
    height: 500px;
    overflow: hidden;
}
.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 6s ease;
}
.hero-slider .slick-slide.slick-active img {
    transform: scale(1);
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    /* Overlay removed — slider image shows in its original vivid colors */
    background: none;
    display: flex;
    align-items: center;
}

/* Light shadow keeps any admin-added title/subtitle readable on the raw image */
.hero-slide-title, .hero-slide-subtitle { text-shadow: 0 2px 10px rgba(0,0,0,0.45); }

.hero-slide-content {
    max-width: 560px;
    padding: 40px 40px 40px 48px;
    color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Button fixed to bottom-left corner of slide */
.hero-slide-btn-wrap {
    position: absolute;
    bottom: 28px;
    left: 32px;
    z-index: 5;
}

/* Full slide clickable link — active only on mobile */
.hero-slide-full-link {
    display: none;
    position: absolute;
    inset: 0;
    z-index: 6;
}

/* Eyebrow tag above title */
.hero-slide-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(74,90,247,0.18);
    border: 1px solid rgba(74,90,247,0.45);
    color: #aab4ff;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 5px 14px;
    border-radius: 50px;
    margin-bottom: 14px;
    backdrop-filter: blur(6px);
}
.hero-slide-tag i { font-size: 10px; color: var(--accent); }

.hero-slide-title {
    font-size: clamp(26px, 4.2vw, 46px);
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-slide-title span { color: var(--accent); }

.hero-slide-subtitle {
    font-size: clamp(13px, 1.8vw, 17px);
    opacity: 0.88;
    margin-bottom: 30px;
    line-height: 1.65;
    font-weight: 400;
}

/* ---- HERO BUTTON ---- */
.hero-slide-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 15px;
    color: var(--primary);
    text-decoration: none;
    overflow: hidden;
    isolation: isolate;
    /* White background */
    background: #ffffff;
    box-shadow:
        0 6px 24px rgba(255,255,255,0.35),
        0 2px 8px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.9);
    transition: transform 0.3s ease, box-shadow 0.3s ease, letter-spacing 0.3s ease;
    border: none;
    letter-spacing: 0.2px;
}

/* Shimmer sweep effect */
.hero-slide-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        120deg,
        transparent 20%,
        rgba(255,255,255,0.28) 50%,
        transparent 80%
    );
    transform: translateX(-100%);
    transition: transform 0.55s ease;
}
.hero-slide-btn:hover::before {
    transform: translateX(100%);
}

/* Glow ring on hover */
.hero-slide-btn::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50px;
    border: 2px solid rgba(74,90,247,0.6);
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    transform: scale(0.95);
}
.hero-slide-btn:hover::after {
    opacity: 1;
    transform: scale(1.04);
}

/* Arrow icon circle */
.hero-slide-btn .btn-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: rgba(12,0,102,0.1);
    border-radius: 50%;
    font-size: 12px;
    color: var(--primary);
    transition: background 0.3s ease, transform 0.3s ease;
    flex-shrink: 0;
}

.hero-slide-btn:hover {
    color: var(--primary);
    transform: translateY(-2px) scale(1.03);
    box-shadow:
        0 12px 32px rgba(255,255,255,0.4),
        0 4px 12px rgba(0,0,0,0.15),
        inset 0 1px 0 rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
}
.hero-slide-btn:hover .btn-icon {
    background: rgba(12,0,102,0.12);
    transform: translateX(3px);
}

/* Secondary ghost button variant */
.hero-slide-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    color: #fff;
    background: transparent;
    border: 2px solid rgba(255,255,255,0.45);
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    text-decoration: none;
    margin-left: 12px;
}
.hero-slide-btn-ghost:hover {
    background: rgba(255,255,255,0.15);
    border-color: rgba(255,255,255,0.8);
    color: #fff;
    transform: translateY(-2px);
}

/* ---- SLICK NAVIGATION ARROWS ---- */
.hero-slider .slick-prev,
.hero-slider .slick-next {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.12) !important;
    border: 1.5px solid rgba(255,255,255,0.25) !important;
    border-radius: 50% !important;
    backdrop-filter: blur(10px);
    z-index: 10;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}
.hero-slider .slick-prev { left: 18px; }
.hero-slider .slick-next { right: 18px; }
.hero-slider .slick-prev:hover,
.hero-slider .slick-next:hover {
    background: var(--accent) !important;
    border-color: var(--accent) !important;
    transform: scale(1.1);
    box-shadow: 0 4px 18px rgba(74,90,247,0.45);
}
.hero-slider .slick-prev::before,
.hero-slider .slick-next::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 9px;
    color: #fff !important;
    opacity: 1 !important;
}
.hero-slider .slick-prev::before { content: '\f053'; }
.hero-slider .slick-next::before { content: '\f054'; }

/* ---- SLICK DOTS — hidden ---- */
.hero-slider .slick-dots {
    display: none !important;
}

/* ---- HERO TEXT ANIMATIONS ---- */
.hero-slider .slick-slide .hero-slide-tag,
.hero-slider .slick-slide .hero-slide-title,
.hero-slider .slick-slide .hero-slide-subtitle {
    opacity: 0;
    transform: translateY(36px);
    transition: transform 0.85s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.85s ease;
}
.hero-slider .slick-slide .hero-slide-tag     { transition-delay: 0s; }
.hero-slider .slick-slide .hero-slide-title   { transition-delay: 0.12s; }
.hero-slider .slick-slide .hero-slide-subtitle { transition-delay: 0.28s; }

/* Button corner animation — slides up from below */
.hero-slider .slick-slide .hero-slide-btn-wrap {
    opacity: 0;
    transform: translateY(20px);
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.7s ease;
    transition-delay: 0.42s;
}

.hero-slider .slick-slide.slick-active .hero-slide-tag,
.hero-slider .slick-slide.slick-active .hero-slide-title,
.hero-slider .slick-slide.slick-active .hero-slide-subtitle {
    opacity: 1;
    transform: translateY(0);
}
.hero-slider .slick-slide.slick-active .hero-slide-btn-wrap {
    opacity: 1;
    transform: translateY(0);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 768px) {
    .hero-slide { height: 300px; }
    .hero-slide-content { padding: 20px 20px 20px 24px; }
    /* Square mobile image (900x900) — mobile par poora square dikhe, crop na ho */
    .hero-slide.has-mobile-img { height: auto; }
    .hero-slide .hero-img-mobile {
        width: 100%;
        height: auto;
        aspect-ratio: 1 / 1;
        object-fit: cover;
        transform: none;
    }
    /* Square poster mein apna text hota hai — overlay title mobile par hide */
    .hero-slide.has-mobile-img .hero-slide-overlay { display: none; }
    /* Button mobile par hide */
    .hero-slide-btn-wrap { display: none; }
    /* Poori image pe link active */
    .hero-slide-full-link { display: block; }
    .hero-slide-tag { font-size: 10px; padding: 4px 10px; }
    .hero-slider .slick-prev,
    .hero-slider .slick-next { width: 28px; height: 28px; }
}

/* ============================================================
   CATEGORY CARDS
   ============================================================ */
.category-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 20px 15px;
    text-align: center;
    transition: var(--transition);
    cursor: pointer;
    display: block;
    color: var(--text-dark);
}
.category-card:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); color: var(--primary); }
.category-card-icon { width: 82px; height: 82px; background: rgba(12,0,102,0.08); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 12px; font-size: 34px; color: var(--primary); transition: var(--transition); }
.category-card:hover .category-card-icon { background: var(--primary); color: #fff; }
.category-card-img { width: 82px; height: 82px; object-fit: cover; border-radius: 50%; margin: 0 auto 12px; display: block; }
.category-card-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.category-card-count { font-size: 11px; color: var(--text-muted); }

/* Mobile category card — icon + name only */
.cat-mobile-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 12px 6px;
    text-align: center;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
}
.cat-mobile-card:hover { color: var(--primary); }
.cat-mobile-icon {
    width: 70px;
    height: 70px;
    background: rgba(12,0,102,0.07);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: var(--primary);
    transition: var(--transition);
    overflow: hidden;
    flex-shrink: 0;
}
.cat-mobile-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.cat-mobile-card:hover .cat-mobile-icon {
    background: var(--primary);
    color: #fff;
}
.cat-mobile-name {
    font-size: 11px;
    font-weight: 600;
    line-height: 1.3;
    color: inherit;
    word-break: break-word;
}

/* Slider overflow fix — allow hover shadow to show */
.categories-slider,
.categories-mobile-slider {
    overflow: visible !important;
}
.categories-slider .slick-list,
.categories-mobile-slider .slick-list {
    overflow: hidden !important;
    padding-top: 8px !important;
    margin-top: -8px !important;
}

/* Mobile promo banners slider — one poster at a time */
.promo-mobile-link {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(8,0,68,0.12);
}
.promo-mobile-slider {
    position: relative;
    padding-bottom: 24px;
}
.promo-mobile-slider .promo-banner-card {
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(12, 0, 102, 0.08);
}
.promo-mobile-slider .slick-dots {
    position: absolute;
    bottom: 0px;
    left: 0;
    width: 100%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 0;
    margin: 0;
    list-style: none;
    z-index: 5;
}
.promo-mobile-slider .slick-dots li {
    margin: 0;
    width: auto;
    height: auto;
}
.promo-mobile-slider .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border-radius: 4px;
    background: #cbd5e1;
    border: none;
    font-size: 0;
    transition: all 0.3s ease;
    cursor: pointer;
}
.promo-mobile-slider .slick-dots li button:before {
    display: none;
}
.promo-mobile-slider .slick-dots li.slick-active button {
    width: 24px;
    background: var(--primary, #0C0066);
    border-radius: 4px;
}

/* ============================================================
   FLASH SALE SECTION
   ============================================================ */
.flash-sale-section {
    /* Theme colors - overridden by .flash-sale-theme-* classes */
    --fs-a: #ff3b30;      /* primary bright */
    --fs-b: #D2042D;      /* primary deep */
    --fs-soft: #ff5f57;   /* separator / accents */
    --fs-rgb: 255, 59, 48;   /* rgb triplet of --fs-a (for rgba()) */
    --fs-rgb2: 210, 4, 45;   /* rgb triplet of --fs-b */
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #050030 0%, var(--primary-dark) 35%, var(--primary) 70%, #1a0099 100%);
    padding: 48px 0;
}
.flash-sale-section > .container { position: relative; z-index: 1; }

/* Animated stripes bar on top */
.flash-sale-stripes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    z-index: 1;
    background: repeating-linear-gradient(45deg, var(--fs-a) 0 14px, var(--fs-b) 14px 28px, transparent 28px 42px);
    animation: flashSaleStripes 1.4s linear infinite;
}
@keyframes flashSaleStripes {
    from { background-position: 0 0; }
    to   { background-position: 42px 0; }
}

/* Decorative floating glow orbs */
.flash-sale-section::before,
.flash-sale-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}
.flash-sale-section::before {
    width: 460px;
    height: 460px;
    top: -180px;
    left: -140px;
    background: radial-gradient(circle, rgba(var(--fs-rgb), 0.28) 0%, transparent 70%);
    animation: flashSaleFloat 9s ease-in-out infinite;
}
.flash-sale-section::after {
    width: 520px;
    height: 520px;
    bottom: -220px;
    right: -160px;
    background: radial-gradient(circle, rgba(var(--fs-rgb), 0.45) 0%, transparent 70%);
    animation: flashSaleFloat 12s ease-in-out infinite reverse;
}
@keyframes flashSaleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(24px, -18px) scale(1.06); }
}

.flash-sale-header { color: #fff; margin-bottom: 26px; }
.flash-sale-title {
    font-size: 32px;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.4px;
    text-shadow: 0 4px 18px rgba(0,0,0,0.3);
}
.flash-sale-title-icon {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--fs-a) 0%, var(--fs-b) 100%);
    border: none;
    border-radius: 14px;
    color: #fff;
    box-shadow: 0 6px 20px rgba(var(--fs-rgb2), 0.45);
    animation: flashSaleBolt 1.4s ease-in-out infinite, flashSalePulse 1.6s ease-out infinite;
}
@keyframes flashSalePulse {
    0%, 100% { box-shadow: 0 6px 20px rgba(var(--fs-rgb2), 0.45), 0 0 0 0 rgba(var(--fs-rgb2), 0.55); }
    50%      { box-shadow: 0 6px 20px rgba(var(--fs-rgb2), 0.45), 0 0 0 12px rgba(var(--fs-rgb2), 0); }
}
.flash-sale-subtitle {
    color: rgba(255,255,255,0.82);
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 15px;
}
.flash-sale-subtitle::before {
    content: '';
    width: 26px;
    height: 2px;
    border-radius: 2px;
    background: linear-gradient(90deg, var(--fs-a), transparent);
}

/* Countdown */
.countdown-timer { display: flex; align-items: center; gap: 8px; }
.countdown-block {
    position: relative;
    background: linear-gradient(165deg, rgba(var(--fs-rgb), 0.3) 0%, rgba(var(--fs-rgb2), 0.12) 100%);
    border: 1px solid rgba(var(--fs-rgb), 0.45);
    border-radius: 14px;
    padding: 10px 14px;
    text-align: center;
    min-width: 62px;
    color: #fff;
    backdrop-filter: blur(8px);
    box-shadow: 0 8px 22px rgba(var(--fs-rgb2), 0.3), inset 0 1px 0 rgba(255,255,255,0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.countdown-block:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 26px rgba(var(--fs-rgb2), 0.45), inset 0 1px 0 rgba(255,255,255,0.3);
}
.countdown-block::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 14px;
    background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, transparent 45%);
    pointer-events: none;
}
.countdown-block .count {
    font-size: 24px;
    font-weight: 800;
    line-height: 1;
    display: block;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 2px 10px rgba(var(--fs-rgb), 0.55);
}
.countdown-block .label {
    font-size: 10px;
    opacity: 0.85;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 3px;
}
.countdown-separator {
    color: var(--fs-soft);
    font-size: 22px;
    font-weight: 800;
    animation: flashSaleBlink 1.2s ease-in-out infinite;
}
@keyframes flashSaleBlink {
    0%, 100% { opacity: 1; }
    50%      { opacity: 0.35; }
}

/* View All button */
.flash-sale-section .btn-view-all {
    background: linear-gradient(135deg, var(--fs-a) 0%, var(--fs-b) 100%);
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 800;
    padding: 9px 22px;
    box-shadow: 0 8px 22px rgba(var(--fs-rgb2), 0.45);
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.flash-sale-section .btn-view-all::after {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 45%;
    height: 100%;
    background: linear-gradient(120deg, transparent, rgba(255,255,255,0.55), transparent);
    transform: skewX(-20deg);
    animation: flashSaleShine 2.4s ease-in-out infinite;
}
.flash-sale-section .btn-view-all:hover {
    color: #fff;
    transform: translateY(-2px) scale(1.04);
    box-shadow: 0 12px 30px rgba(var(--fs-rgb2), 0.6);
}

/* Cards inside flash sale */
.flash-sale-section .product-card {
    border: 1px solid rgba(255,255,255,0.65);
    border-radius: 14px;
}
.flash-sale-section .product-card:hover {
    border-color: var(--fs-b);
    box-shadow: 0 14px 34px rgba(0,0,0,0.35), 0 0 0 1px rgba(var(--fs-rgb2), 0.5);
}

/* Red Flash badge with pulsing glow */
.flash-sale-section .badge-flash {
    background: linear-gradient(135deg, var(--fs-a) 0%, var(--fs-b) 100%);
    animation: flashSaleBadgePulse 1.5s ease-in-out infinite;
}
@keyframes flashSaleBadgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(var(--fs-rgb), 0.55); }
    50%      { box-shadow: 0 0 0 6px rgba(var(--fs-rgb), 0); }
}

/* Slick arrows inside flash sale */
.flash-sale-section .slick-prev,
.flash-sale-section .slick-next {
    width: 44px;
    height: 44px;
    background: rgba(var(--fs-rgb), 0.2) !important;
    border: 1px solid rgba(var(--fs-rgb), 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
}
.flash-sale-section .slick-prev { left: -18px; }
.flash-sale-section .slick-next { right: -18px; }
.flash-sale-section .slick-prev:hover,
.flash-sale-section .slick-next:hover {
    background: var(--fs-b) !important;
    border-color: var(--fs-b);
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(var(--fs-rgb2), 0.5);
}
.flash-sale-section .slick-prev::before,
.flash-sale-section .slick-next::before {
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 14px;
    color: #fff !important;
    opacity: 1 !important;
}
.flash-sale-section .slick-prev::before { content: '\f053'; }
.flash-sale-section .slick-next::before { content: '\f054'; }

/* Alternate color themes (pick from admin Flash Sale tab) */
.flash-sale-theme-green {
    --fs-a: #22c55e;
    --fs-b: #15803d;
    --fs-soft: #4ade80;
    --fs-rgb: 34, 197, 94;
    --fs-rgb2: 21, 128, 61;
}
.flash-sale-theme-gold {
    --fs-a: #f59e0b;
    --fs-b: #b45309;
    --fs-soft: #fbbf24;
    --fs-rgb: 245, 158, 11;
    --fs-rgb2: 180, 83, 9;
}
.flash-sale-theme-blue {
    --fs-a: #3b82f6;
    --fs-b: #1d4ed8;
    --fs-soft: #60a5fa;
    --fs-rgb: 59, 130, 246;
    --fs-rgb2: 29, 78, 216;
}

/* ============================================================
   BRAND LOGOS
   ============================================================ */
.brand-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    display: flex; align-items: center; justify-content: center;
    height: 90px;
    transition: var(--transition);
}
.brand-card:hover { border-color: var(--primary); box-shadow: var(--shadow); }
.brand-card img { max-height: 55px; max-width: 120px; object-fit: contain; filter: grayscale(40%); transition: var(--transition); }
.brand-card:hover img { filter: grayscale(0%); }

/* ============================================================
   FOOTER
   ============================================================ */
.main-footer { background: linear-gradient(160deg, #080044 0%, #0c0066 55%, #10047a 100%); color: rgba(255,255,255,0.85); position: relative; }
.main-footer::before { content: ''; position: absolute; inset: 0; background: radial-gradient(600px 300px at 85% 0%, rgba(74,90,247,0.18), transparent 70%); pointer-events: none; }
.main-footer > * { position: relative; }

.newsletter-section { padding-top: 34px; }
.newsletter-card {
    background: linear-gradient(90deg, rgba(74,90,247,0.22), rgba(74,90,247,0.08));
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 26px 28px;
    backdrop-filter: blur(4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}
.newsletter-text { display: flex; align-items: center; gap: 16px; color: #fff; }
.newsletter-icon {
    font-size: 24px; color: #fff; flex-shrink: 0;
    width: 56px; height: 56px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(74,90,247,0.45);
}
.newsletter-text h4 { margin-bottom: 0; font-size: 18px; color: #fff; font-weight: 800; }
.newsletter-text p { font-size: 13px; }

.newsletter-form .input-group { border-radius: 12px; overflow: hidden; box-shadow: 0 4px 18px rgba(0,0,0,0.25); }
.newsletter-input { border: none; background: rgba(255,255,255,0.95); color: var(--text-dark); padding: 12px 18px; }
.newsletter-input::placeholder { color: #9a9ab5; }
.newsletter-input:focus { background: #fff; box-shadow: none; color: var(--text-dark); border-color: transparent; }
.btn-newsletter { background: linear-gradient(135deg, var(--accent), var(--accent-hover)); color: #fff; border: none; font-weight: 700; padding: 0 26px; transition: var(--transition); }
.btn-newsletter:hover { filter: brightness(1.12); color: #fff; }

.footer-main { padding: 54px 0 30px; }

.footer-logo-img { height: 50px; filter: brightness(0) invert(1); }
/* Dedicated white footer logo — hi-res white-on-transparent artwork; blend-mode keeps any baked-in dark bg invisible on the footer gradient */
.footer-logo-img.footer-logo-white { height: 85px; max-width: 100%; filter: none; mix-blend-mode: lighten; }
.footer-logo-text { font-size: 24px; font-weight: 800; color: #fff; letter-spacing: 0.5px; }
.footer-about { font-size: 13px; opacity: 0.78; line-height: 1.8; }

.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.09);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 10px;
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    margin-right: 7px;
    transition: all 0.25s ease;
}
.footer-social a:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 6px 16px rgba(0,0,0,0.3); }
.footer-social a[aria-label="Facebook"]:hover  { background: #1877f2; border-color: #1877f2; }
.footer-social a[aria-label="Instagram"]:hover { background: linear-gradient(45deg,#f09433,#dc2743,#bc1888); border-color: #dc2743; }
.footer-social a[aria-label="YouTube"]:hover   { background: #ff0000; border-color: #ff0000; }
.footer-social a[aria-label="TikTok"]:hover    { background: #010101; border-color: #444; }
.footer-social a[aria-label="WhatsApp"]:hover  { background: #25d366; border-color: #25d366; }

.footer-title { font-size: 16px; font-weight: 800; color: #fff; margin-bottom: 20px; position: relative; padding-bottom: 11px; letter-spacing: 0.3px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 34px; height: 3px; background: linear-gradient(90deg, var(--accent), transparent); border-radius: 2px; }

.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.7); font-size: 13px; transition: var(--transition); display: inline-flex; align-items: center; gap: 7px; }
.footer-links a::before { content: '\203A'; font-size: 15px; line-height: 1; color: var(--accent); transition: transform 0.25s ease; }
.footer-links a:hover { color: #fff; padding-left: 4px; }
.footer-links a:hover::before { transform: translateX(2px); }

.footer-contact li { display: flex; gap: 11px; margin-bottom: 13px; font-size: 13px; align-items: flex-start; }
.footer-contact li > i {
    width: 32px; height: 32px; flex-shrink: 0;
    background: rgba(74,90,247,0.16);
    border: 1px solid rgba(74,90,247,0.3);
    border-radius: 9px;
    color: #9aa5ff;
    display: flex; align-items: center; justify-content: center;
    font-size: 13px;
    margin-top: 1px;
}
.footer-contact li > span, .footer-contact li > a { padding-top: 5px; }
.footer-contact a { color: rgba(255,255,255,0.8); transition: var(--transition); }
.footer-contact a:hover { color: #9aa5ff; }

/* Why Choose Us — landscape strip below newsletter */
.why-strip-section { padding-top: 26px; }
.why-strip-card {
    display: flex; align-items: center; gap: 12px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 14px 16px;
    height: 100%;
    transition: all 0.25s ease;
}
.why-strip-card:hover { background: rgba(74,90,247,0.16); border-color: rgba(74,90,247,0.4); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.25); }
.why-strip-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: #fff; font-size: 16px;
    box-shadow: 0 4px 12px rgba(74,90,247,0.4);
}
.why-strip-card span { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.92); line-height: 1.4; }

.footer-bottom { background: rgba(0,0,0,0.32); padding: 16px 0; font-size: 12px; color: rgba(255,255,255,0.6); border-top: 1px solid rgba(255,255,255,0.07); }
.footer-bottom p { color: rgba(255,255,255,0.65); }
.payment-icons { display: flex; align-items: center; justify-content: center; gap: 6px; flex-wrap: wrap; }
@media (min-width: 768px) { .payment-icons { justify-content: flex-end; } }
.footer-bottom .payment-icons img { height: 24px; width: auto; opacity: 0.95; border-radius: 6px; transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s; box-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.footer-bottom .payment-icons img:hover { opacity: 1; transform: translateY(-2px); box-shadow: 0 4px 10px rgba(0,0,0,0.4); }
@media (max-width: 767px) { .newsletter-card { padding: 20px 16px; } }

/* ============================================================
   WHATSAPP FLOAT & BACK TO TOP
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 90px; right: 24px;
    width: 54px; height: 54px;
    background: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 26px;
    box-shadow: 0 4px 16px rgba(37,211,102,0.4);
    z-index: 999;
    transition: var(--transition);
    animation: bounce 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: #fff; }

.back-to-top {
    position: fixed;
    bottom: 24px; right: 24px;
    width: 44px; height: 44px;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 16px;
    box-shadow: var(--shadow);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}
.back-to-top.show { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-light); }

/* ============================================================
   MOBILE BOTTOM NAVIGATION BAR (white pill, app-style)
   ============================================================ */
.mobile-bottom-nav {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    bottom: 10px;
    width: calc(100% - 24px);
    max-width: 430px;
    background: #ffffff; /* Premium white background */
    border-radius: 18px;
    box-shadow: 0 8px 30px rgba(12, 0, 102, 0.15); /* Soft navy shadow */
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 6px 8px;
    z-index: 1001;
    border: 1px solid rgba(12, 0, 102, 0.06); /* Thin light navy border */
}
.mbnav-item {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 8px 2px 7px;
    border-radius: 12px;
    color: #71718a; /* Cool grey for inactive */
    font-size: 16px;
    text-decoration: none;
    transition: var(--transition);
}
.mbnav-item span { font-size: 9.5px; font-weight: 700; letter-spacing: 0.2px; }
.mbnav-item:active { transform: scale(0.94); }
.mbnav-item.active { color: #0C0066 !important; background: rgba(12, 0, 102, 0.08); }
.mbnav-badge {
    position: absolute;
    top: 2px;
    left: calc(50% + 4px);
    min-width: 15px; height: 15px;
    padding: 0 4px;
    background: linear-gradient(135deg, var(--accent), var(--accent-hover));
    color: #fff;
    font-size: 9px;
    font-weight: 700;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid #fff;
    line-height: 1;
}
@media (max-width: 767.98px) {
    body { padding-bottom: 76px; }
    .whatsapp-float { bottom: 148px; right: 14px; width: 48px; height: 48px; font-size: 23px; }
    .back-to-top { bottom: 88px; right: 14px; width: 40px; height: 40px; }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary-custom { background: var(--primary); color: #fff; border: 2px solid var(--primary); padding: 10px 24px; border-radius: 8px; font-weight: 600; transition: var(--transition); }
.btn-primary-custom:hover { background: var(--primary-light); border-color: var(--primary-light); color: #fff; }
.btn-outline-primary-custom { background: transparent; color: var(--primary); border: 2px solid var(--primary); padding: 10px 24px; border-radius: 8px; font-weight: 600; transition: var(--transition); }
.btn-outline-primary-custom:hover { background: var(--primary); color: #fff; }
.btn-accent { background: var(--accent); color: #fff; border: 2px solid var(--accent); padding: 10px 24px; border-radius: 8px; font-weight: 600; transition: var(--transition); }
.btn-accent:hover { background: var(--accent-hover); border-color: var(--accent-hover); color: #fff; }

/* ============================================================
   BREADCRUMB
   ============================================================ */
.breadcrumb-section { background: var(--gray-100); padding: 12px 0; border-bottom: 1px solid var(--border); }
.breadcrumb { margin-bottom: 0; font-size: 13px; }
.breadcrumb-item a { color: var(--primary); }
.breadcrumb-item.active { color: var(--text-muted); }
.breadcrumb-item + .breadcrumb-item::before { content: ">"; color: var(--text-muted); }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination .page-link { color: var(--primary); border-color: var(--border); }
.pagination .page-item.active .page-link { background: var(--primary); border-color: var(--primary); }
.pagination .page-link:hover { background: rgba(12,0,102,0.08); color: var(--primary); }
.pagination .page-item.disabled .page-link { color: var(--text-muted); }

/* ============================================================
   TOAST NOTIFICATIONS
   ============================================================ */
.custom-toast {
    background: #fff;
    border: 1px solid var(--border);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 280px;
    padding: 14px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13px;
    animation: slideInRight 0.3s ease;
}
.custom-toast.success { border-left-color: var(--success); }
.custom-toast.error { border-left-color: var(--danger); }
.custom-toast.warning { border-left-color: var(--warning); }
.custom-toast-icon { font-size: 18px; flex-shrink: 0; }
.custom-toast.success .custom-toast-icon { color: var(--success); }
.custom-toast.error .custom-toast-icon { color: var(--danger); }

@keyframes slideInRight { from { transform: translateX(100%); opacity: 0; } to { transform: translateX(0); opacity: 1; } }

/* ============================================================
   LOADER
   ============================================================ */
.page-loader { position: fixed; inset: 0; background: #fff; z-index: 99999; display: flex; align-items: center; justify-content: center; transition: opacity 0.5s; }
.page-loader.fade-out { opacity: 0; pointer-events: none; }
.loader-spinner { width: 48px; height: 48px; border: 4px solid var(--gray-200); border-top-color: var(--primary); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .main-nav .nav-links { display: none !important; }
}
/* ============================================================
   MOBILE TOPBAR
   ============================================================ */
.mobile-topbar {
    background: var(--primary-dark);
    padding: 6px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-topbar-welcome {
    font-size: 12px;
    color: rgba(255,255,255,0.85);
}
.mobile-topbar-welcome i { color: var(--accent); }
.mobile-topbar-welcome strong { color: #fff; }
.mobile-topbar-social { display: flex; align-items: center; gap: 4px; }
.mobile-topbar-social .social-link {
    color: rgba(255,255,255,0.85) !important;
    background: rgba(255,255,255,0.12);
}
.mobile-topbar-social .social-link:hover {
    color: #fff !important;
    background: var(--accent);
}

/* ============================================================
/* ============================================================
   MOBILE HEADER IMPROVEMENTS
   ============================================================ */
.header-action-btn::after, 
.header-action-btn.dropdown-toggle::after { 
    display: none !important; 
}

@media (max-width: 767px) {
    /* Logo scaling on mobile to prevent overflow */
    .header-logo-wrap {
        max-width: 58%;
    }
    .logo-text { 
        font-size: 15px; 
        display: flex; 
        align-items: center; 
        white-space: nowrap; 
    }
    .logo-badge-r {
        width: 28px !important;
        height: 28px !important;
        font-size: 14px !important;
        border-radius: 6px !important;
        margin-right: 6px !important;
        flex-shrink: 0;
    }
    .logo-text-main {
        font-size: 14.5px;
        font-weight: 800;
        letter-spacing: -0.2px;
    }
    .logo-text-sub {
        font-size: 13.5px;
        font-weight: 600;
    }
    .logo-img { 
        max-height: 32px; 
        width: auto;
    }

    /* Action buttons on mobile */
    .header-actions {
        gap: 5px !important;
    }
    .header-action-btn {
        padding: 0 !important;
        margin: 0 !important;
        min-width: auto;
        color: var(--primary) !important;
    }
    .action-icon-wrapper {
        width: 35px !important;
        height: 35px !important;
        font-size: 14px !important;
        background: #f8fafc;
        border: 1px solid rgba(12, 0, 102, 0.06);
    }

    /* Badges */
    .action-badge {
        top: -3px !important;
        right: -3px !important;
        min-width: 16px !important;
        height: 16px !important;
        font-size: 8.5px !important;
    }

    /* Mobile search bar — pill style on navy background */
    .mobile-search {
        background: linear-gradient(90deg, #0a0057 0%, #0c0066 50%, #150a85 100%);
        padding: 8px 12px 10px !important;
        border-top: none;
    }
    .mobile-search .input-group {
        border: 2px solid rgba(255,255,255,0.9);
        border-radius: 50px;
        overflow: hidden;
    }
    .mobile-search .form-control {
        border: none !important;
        box-shadow: none !important;
        padding: 8px 14px;
        font-size: 13.5px;
        outline: none;
        border-radius: 50px 0 0 50px !important;
    }
    .mobile-search .btn {
        border-radius: 0 50px 50px 0 !important;
        padding: 0 16px;
        background: var(--accent);
        border: none;
        color: #fff;
    }
    .mobile-search .btn:hover { background: var(--primary-light); }

    /* Hamburger toggle — clean button */
    .mobile-menu-toggle {
        width: 35px;
        height: 35px;
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 4px;
        background: #f8fafc;
        border: 1px solid rgba(12, 0, 102, 0.06);
        border-radius: 8px;
    }
    .mobile-menu-toggle span { 
        width: 16px;
        height: 2px;
        background: var(--primary); 
        border-radius: 2px;
    }
}

@media (max-width: 767px) {
    .topbar { display: none !important; }
    .search-category-select { display: none; }
    .hero-slide { height: 240px; }
    .section-title { font-size: 20px; }
    .footer-main { padding: 30px 0 20px; }

    /* Slick arrows mobile par hide (swipe chalta hai) — ye container se bahar nikal kar
       horizontal overflow / right side white space banate the */
    .slick-prev, .slick-next { display: none !important; }
    .hero-slider .slick-prev, .hero-slider .slick-next { display: block !important; }

    /* Flash sale header — mobile par stack (countdown + View All cut na ho) */
    .flash-sale-header { flex-direction: column; align-items: stretch; gap: 14px; }
    .flash-sale-title { font-size: 22px; gap: 10px; }
    .flash-sale-title-icon { width: 36px; height: 36px; font-size: 15px; border-radius: 10px; }
    .flash-sale-subtitle { font-size: 12.5px; }
    .flash-sale-header > .d-flex { flex-wrap: wrap; gap: 10px; }
    .countdown-timer { flex: 1 1 100%; gap: 6px; }
    .countdown-block { flex: 1; min-width: 0; padding: 8px 4px; border-radius: 10px; }
    .countdown-block .count { font-size: 17px; }
    .countdown-block .label { font-size: 8.5px; letter-spacing: 0.6px; }
    .countdown-separator { display: none; }
    .flash-sale-section .btn-view-all { width: 100%; text-align: center; }

    /* Product card badges size reduction on mobile */
    .product-card-badges {
        top: 6px !important;
        left: 6px !important;
        gap: 3px !important;
    }
    .badge-sale {
        font-size: 8.5px !important;
        padding: 2.5px 6px !important;
        border-radius: 12px !important;
        letter-spacing: 0px !important;
    }
    .badge-flash {
        font-size: 8.5px !important;
        padding: 2.5px 6px !important;
        border-radius: 4px !important;
    }
    .badge-new {
        font-size: 8.5px !important;
        padding: 2px 5px !important;
        border-radius: 3px !important;
    }
    .badge-out-of-stock {
        font-size: 8.5px !important;
        padding: 2px 5px !important;
        border-radius: 3px !important;
    }

    /* 2 Products Per Row Slider & Grid Polish on Mobile */
    .products-slider .px-2 {
        padding-left: 4px !important;
        padding-right: 4px !important;
    }
    .product-card {
        border-radius: 12px;
    }
    .product-card-body {
        padding: 10px 8px;
    }
    .product-title {
        font-size: 13px !important;
        line-height: 1.35 !important;
        height: 35px !important;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    .product-price .price-current {
        font-size: 14px !important;
        font-weight: 800;
    }
    .product-price .price-original {
        font-size: 11px !important;
    }
    .btn-add-cart {
        padding: 7px 8px !important;
        font-size: 12px !important;
        border-radius: 8px !important;
    }
}

/* ============================================================
   SALE NAVIGATION TAB STYLE
   ============================================================ */
.nav-sale-tab {
    position: relative;
    font-weight: 800 !important;
    color: #0b005e !important; /* Blue text color */
    background: #ffffff !important; /* Solid white background for high contrast on dark navbar */
    border-radius: 20px;
    padding: 6px 14px !important;
    border: 1.5px solid #0b005e; /* Blue border */
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.25s ease;
    overflow: hidden; /* For the shine sweep effect */
    animation: saleTabGlowPulse 2.5s infinite ease-in-out;
}
.nav-sale-tab::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        90deg, 
        transparent, 
        rgba(255, 255, 255, 0.45), 
        transparent
    );
    transform: skewX(-20deg);
    animation: saleTabShine 3.5s infinite ease-in-out;
}
.nav-sale-tab:hover {
    background: #0b005e !important; /* Blue background on hover */
    color: #fff !important;
    box-shadow: 0 4px 12px rgba(11, 0, 94, 0.35);
    border-color: #0b005e;
    animation-play-state: paused;
}
.nav-sale-tab .text-danger {
    color: #ff3b30 !important; /* Bright red bolt icon */
}
.mobile-sale-nav-item .text-danger {
    color: #ff3b30 !important;
}
.nav-sale-tab:hover .text-danger,
.mobile-sale-nav-item:hover .text-danger {
    color: #ff4d4d !important; /* Keep icon red on hover (slightly lighter for contrast) */
}
/* Animate the bolt in the Sale tab */
.nav-sale-tab .fa-bolt {
    display: inline-block;
    animation: saleBoltFlicker 1.8s infinite ease-in-out;
}
.sale-dot-pulse {
    width: 6px;
    height: 6px;
    background: #ff3b30; /* Bright red pulsing dot */
    border-radius: 50%;
    display: inline-block;
    animation: salePulseGlow 1.2s infinite ease-in-out;
}
.nav-sale-tab:hover .sale-dot-pulse {
    background: #ff4d4d; /* Keep dot red on hover */
    animation-play-state: paused;
}
@keyframes salePulseGlow {
    0%, 100% { transform: scale(1); opacity: 1; box-shadow: 0 0 0 0 rgba(255, 59, 48, 0.4); }
    50% { transform: scale(1.6); opacity: 0.4; box-shadow: 0 0 6px 1px rgba(255, 59, 48, 0.2); }
}

@keyframes saleTabShine {
    0% { left: -100%; }
    25% { left: 150%; }
    100% { left: 150%; }
}

@keyframes saleTabGlowPulse {
    0%, 100% { 
        box-shadow: 0 0 0 0 rgba(11, 0, 94, 0.2);
        border-color: #0b005e;
    }
    50% { 
        box-shadow: 0 0 8px 2px rgba(11, 0, 94, 0.4);
        border-color: #2b1aa3; /* Glows brighter blue at peak */
    }
}

@keyframes saleBoltFlicker {
    0%, 100% { 
        transform: scale(1) rotate(0); 
    }
    45% { 
        transform: scale(1) rotate(0); 
    }
    50% { 
        transform: scale(1.2) rotate(-10deg); 
        filter: drop-shadow(0 0 4px rgba(153, 0, 0, 0.8));
    }
    55% { 
        transform: scale(1.2) rotate(10deg); 
        filter: drop-shadow(0 0 4px rgba(153, 0, 0, 0.8));
    }
    60% { 
        transform: scale(1) rotate(0); 
    }
}

/* Mobile Sidebar Sale Link */
.mobile-sale-nav-item {
    font-weight: 800 !important;
    color: #0b005e !important; /* Blue text */
    background: rgba(11, 0, 94, 0.04) !important; /* Soft blue background */
    border-left: 4px solid #0b005e !important; /* Blue left border */
    font-size: 11.5px !important;    /* Reduced size for mobile drawer */
    padding: 8px 16px !important;     /* Compact padding */
    gap: 4px;
}
.mobile-sale-nav-item i {
    font-size: 12px !important;
}
.mobile-sale-nav-item .badge {
    background-color: #0b005e !important; /* Blue badge background */
    font-size: 8px !important;        /* Compact badge text */
    padding: 1.5px 4px !important;     /* Compact badge padding */
    vertical-align: middle;
}

/* Mobile Sidebar Flash Sale Link - Styled dynamically based on active Flash Sale theme color */
.mobile-flash-nav-item {
    color: var(--fs-a) !important;
    background: rgba(var(--fs-rgb), 0.05) !important;
    border-left: 4px solid var(--fs-a) !important;
}
.mobile-flash-nav-item .text-danger {
    color: var(--fs-a) !important;
}
.mobile-flash-nav-item .badge {
    background-color: var(--fs-a) !important;
}

/* Mobile & Desktop Badge Media size overrides */
.mobile-fs-badge-img {
    height: 14px;
    width: auto;
    object-fit: contain;
    border-radius: 2px;
    vertical-align: middle;
}
.hdr-fs-badge-img {
    height: 18px;
    width: auto;
    object-fit: contain;
    border-radius: 2px;
    display: inline-block;
    vertical-align: middle;
}

@keyframes pulseBadge {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.85; transform: scale(1.08); }
}

/* ============================================================
   NAVIGATION PROMO BUTTON GROUP (LEAF SHAPES & RIGHT-ALIGNED)
   ============================================================ */
.nav-promo-group {
    display: flex;
    align-items: center;
    gap: 8px; /* Clean gap between buttons */
}
.nav-promo-group .nav-sale-tab {
    border-radius: 20px 0 20px 0 !important; /* Leaf shape */
    margin: 0 !important;
    height: 36px !important;
    padding: 0 16px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    font-size: 12.5px !important;
}
.nav-promo-group .flash-sale-nav-btn {
    border-radius: 20px 0 20px 0 !important; /* Leaf shape */
    margin: 0 !important;
    height: 36px !important;
    padding: 0 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: none !important;
    font-size: 12.5px !important;
}

/* ============================================================
   FLY TO CART ANIMATION STYLES
   ============================================================ */
.flying-cart-item {
    position: absolute;
    z-index: 999999;
    pointer-events: none;
    box-shadow: 0 12px 30px rgba(11, 0, 94, 0.45);
    border: 2px solid #ffffff;
    border-radius: 12px;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.flying-cart-item-fallback {
    position: absolute;
    z-index: 999999;
    pointer-events: none;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #0b005e, #16098c);
    border: 2px solid #ffffff;
    border-radius: 50%;
    box-shadow: 0 10px 25px rgba(11, 0, 94, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

@keyframes cartIconPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.35); }
    100% { transform: scale(1); }
}

.cart-pulse {
    animation: cartIconPulse 0.45s ease-out !important;
}

/* ============================================================
   CATEGORY CARD PREMIUM COLOR THEMES & MICRO-ANIMATIONS
   ============================================================ */
/* Animated Category Icons keyframes */
@keyframes iconWobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg); }
    75% { transform: rotate(8deg); }
}
.icon-anim-wobble {
    display: inline-block !important;
    animation: iconWobble 2.5s ease-in-out infinite;
    transform-origin: bottom center;
}

@keyframes iconSpinSlow {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}
.icon-anim-spin-slow {
    display: inline-block !important;
    animation: iconSpinSlow 7s linear infinite;
}

@keyframes iconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}
.icon-anim-bounce {
    display: inline-block !important;
    animation: iconBounce 2s ease-in-out infinite;
}

@keyframes iconPulseScale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}
.icon-anim-pulse-scale {
    display: inline-block !important;
    animation: iconPulseScale 2.2s ease-in-out infinite;
}

@keyframes iconShake {
    0%, 100% { transform: translateX(0) rotate(0deg); }
    20%, 60% { transform: translateX(-2px) rotate(-3deg); }
    40%, 80% { transform: translateX(2px) rotate(3deg); }
}
.icon-anim-shake {
    display: inline-block !important;
    animation: iconShake 3s ease-in-out infinite;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-4px) rotate(2deg); }
}
.icon-anim-float {
    display: inline-block !important;
    animation: iconFloat 2.5s ease-in-out infinite;
}

/* Hover Speed-up transitions */
.category-card:hover .icon-anim-wobble,
.cat-mobile-card:hover .icon-anim-wobble { animation-duration: 0.8s; }
.category-card:hover .icon-anim-bounce,
.cat-mobile-card:hover .icon-anim-bounce { animation-duration: 0.7s; }
.category-card:hover .icon-anim-spin-slow,
.cat-mobile-card:hover .icon-anim-spin-slow { animation-duration: 2s; }
.category-card:hover .icon-anim-pulse-scale,
.cat-mobile-card:hover .icon-anim-pulse-scale { animation-duration: 1.1s; }
.category-card:hover .icon-anim-shake,
.cat-mobile-card:hover .icon-anim-shake { animation-duration: 1.2s; }
.category-card:hover .icon-anim-float,
.cat-mobile-card:hover .icon-anim-float { animation-duration: 1.2s; }

/* Unified Category Cards Color Theme (#0e026d) */
.category-card-icon,
.cat-mobile-icon {
    background: rgba(14, 2, 109, 0.08) !important;
    color: #0e026d !important;
}
.category-card:hover .category-card-icon,
.cat-mobile-card:hover .cat-mobile-icon {
    background: linear-gradient(135deg, #18099e, #0e026d) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(14, 2, 109, 0.25) !important;
}
.category-card:hover {
    border-color: #0e026d !important;
}

/* Catalog index pages: make animated icons in cat-card-header match */
.cat-card-icon-wrap {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.25) !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.cat-card:hover .cat-card-icon-wrap {
    transform: scale(1.1);
    background: #ffffff !important;
}
.cat-card:hover .cat-card-icon-wrap i {
    color: #0b005e !important;
}

/* =====================================================
   GLOBAL CATEGORY ICON HOVER ANIMATIONS
   ===================================================== */
/* 1. Spin Animation (e.g. for mixers, fans) */
@keyframes globalSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
.category-card:hover .icon-anim-spin-slow,
.cat-mobile-card:hover .icon-anim-spin-slow,
.cat-sidebar-item:hover .icon-anim-spin-slow,
.cat-card:hover .icon-anim-spin-slow {
    animation: globalSpin 4s linear infinite;
}

/* 2. Wobble Animation (e.g. for blenders, juicers) */
@keyframes globalWobble {
    0%, 100% { transform: rotate(0deg); }
    25% { transform: rotate(-8deg) scale(1.05); }
    75% { transform: rotate(8deg) scale(1.05); }
}
.category-card:hover .icon-anim-wobble,
.cat-mobile-card:hover .icon-anim-wobble,
.cat-sidebar-item:hover .icon-anim-wobble,
.cat-card:hover .icon-anim-wobble {
    animation: globalWobble 0.8s ease-in-out infinite;
}

/* 3. Float Animation (e.g. general float) */
@keyframes globalFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}
.category-card:hover .icon-anim-float,
.cat-mobile-card:hover .icon-anim-float,
.cat-sidebar-item:hover .icon-anim-float,
.cat-card:hover .icon-anim-float {
    animation: globalFloat 1.8s ease-in-out infinite;
}

/* 4. Bounce Animation (e.g. for scales, baby items) */
@keyframes globalBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}
.category-card:hover .icon-anim-bounce,
.cat-mobile-card:hover .icon-anim-bounce,
.cat-sidebar-item:hover .icon-anim-bounce,
.cat-card:hover .icon-anim-bounce {
    animation: globalBounce 0.8s ease-in-out infinite;
}

/* 5. Pulse/Scale Animation */
@keyframes globalPulseScale {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}
.category-card:hover .icon-anim-pulse-scale,
.cat-mobile-card:hover .icon-anim-pulse-scale,
.cat-sidebar-item:hover .icon-anim-pulse-scale,
.cat-card:hover .icon-anim-pulse-scale {
    animation: globalPulseScale 1.5s ease-in-out infinite;
}

/* 6. Shake/Wiggle Animation */
@keyframes globalShake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-2px); }
    75% { transform: translateX(2px); }
}
.category-card:hover .icon-anim-shake,
.cat-mobile-card:hover .icon-anim-shake,
.cat-sidebar-item:hover .icon-anim-shake,
.cat-card:hover .icon-anim-shake {
    animation: globalShake 0.5s ease-in-out infinite;
}

/* ══════════════════════════════════════════════════════════════════ */
/* ULTRA-PREMIUM PROMOTIONAL BANNERS SYSTEM (SUBTLE & SOFT AMBIENT SHADOW) */
/* ══════════════════════════════════════════════════════════════════ */
.promo-banners-section {
    position: relative;
    overflow: visible;
}

.promo-banner-glow-wrap {
    position: relative;
    display: block;
    border-radius: 16px;
    transition: transform 0.3s ease;
}

/* Subtle, Soft Ambient Colored Glow */
.promo-banner-ambient-glow {
    position: absolute;
    top: 8px;
    left: 8px;
    right: 8px;
    bottom: -6px;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    filter: blur(16px) saturate(130%) brightness(0.96);
    opacity: 0.28;
    transform: scale(0.97) translateZ(0);
    border-radius: 20px;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.35s ease, filter 0.35s ease, transform 0.35s ease;
}

.promo-banner-glow-wrap:hover .promo-banner-ambient-glow {
    opacity: 0.45;
    filter: blur(20px) saturate(145%) brightness(1.0);
    transform: scale(1.0) translateY(3px);
}

.promo-banner-card {
    position: relative;
    z-index: 2;
    border-radius: 14px;
    background: #ffffff;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
    text-decoration: none;
    display: block;
    transform: translateZ(0);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.promo-banner-glow-wrap:hover .promo-banner-card {
    transform: translateY(-2px) scale(1.004);
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.08);
    border-color: rgba(12, 0, 102, 0.12);
}

.promo-banner-inner {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: inherit;
}

/* Subtle, Soft Light Reflection on Hover */
.promo-banner-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: -120%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transform: skewX(-20deg);
    transition: left 0.8s ease;
    z-index: 3;
    pointer-events: none;
}

.promo-banner-glow-wrap:hover .promo-banner-inner::before {
    left: 150%;
}

.promo-banner-img {
    width: 100% !important;
    height: auto !important;
    max-height: none !important;
    min-height: 0 !important;
    display: block !important;
    object-fit: contain !important;
    border-radius: inherit;
    transition: transform 0.35s ease;
}

.promo-banner-glow-wrap:hover .promo-banner-img {
    transform: scale(1.008);
}

/* Landscape Banner */
.promo-banner-landscape {
    border-radius: 16px;
}

@media (max-width: 991px) {
    .promo-banner-card {
        border-radius: 12px;
    }
    .promo-banner-ambient-glow {
        filter: blur(14px) saturate(120%);
        opacity: 0.22;
    }
}

@media (max-width: 767px) {
    .promo-banner-card {
        border-radius: 10px;
    }
    .promo-banner-ambient-glow {
        filter: blur(12px) saturate(120%);
        top: 6px;
        left: 4px;
        right: 4px;
        bottom: -4px;
        opacity: 0.2;
    }
    .promo-banner-glow-wrap:hover .promo-banner-card {
        transform: translateY(-1px);
    }
}

/* ══════════════════════════════════════════════════════════════════ */
/* 60FPS BUTTER-SMOOTH SCROLL REVEAL & SPEED ANIMATIONS */
/* ══════════════════════════════════════════════════════════════════ */
.reveal-fade-up {
    opacity: 0;
    transform: translateY(24px) translateZ(0);
    transition: opacity 0.65s cubic-bezier(0.16, 1, 0.3, 1), transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal-fade-up.is-revealed {
    opacity: 1;
    transform: translateY(0) translateZ(0);
}

.reveal-fade {
    opacity: 0;
    transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity;
}
.reveal-fade.is-revealed {
    opacity: 1;
}

/* Stagger Delay Classes */
.stagger-1 { transition-delay: 0.04s; }
.stagger-2 { transition-delay: 0.08s; }
.stagger-3 { transition-delay: 0.12s; }
.stagger-4 { transition-delay: 0.16s; }
.stagger-5 { transition-delay: 0.20s; }
.stagger-6 { transition-delay: 0.24s; }

/* Micro-Interaction for Buttons */
.btn, .btn-primary, .btn-secondary, .btn-admin-primary, .btn-quick-view, .btn-add-cart, .add-to-cart-btn {
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.btn:active, .btn-primary:active, .btn-add-cart:active, .add-to-cart-btn:active {
    transform: scale(0.96) translateZ(0) !important;
}

/* Hardware Accelerated Product Cards */
.product-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease !important;
    will-change: transform, box-shadow;
    transform: translateZ(0);
}
.product-card:hover {
    transform: translateY(-5px) translateZ(0) !important;
    box-shadow: 0 12px 28px -4px rgba(10, 0, 88, 0.14) !important;
}

/* Category Cards Smooth Lift */
.category-card {
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.35s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.35s ease !important;
    transform: translateZ(0);
}
.category-card:hover {
    transform: translateY(-4px) translateZ(0) !important;
}

/* Off-Screen Section Performance Booster */
.section-content-visibility {
    content-visibility: auto;
    contain-intrinsic-size: 1px 500px;
}

/* Product Page Description H5 Blue Background & White Text */
.product-description h5,
.product-tab-content h5,
.product-details-content h5,
#productDescriptionContent h5 {
    font-size: 13.5px !important;
    font-weight: 700 !important;
    background: var(--primary, #0a0058) !important;
    color: #ffffff !important;
    padding: 6px 12px !important;
    border-radius: 6px !important;
    margin-top: 0.9rem !important;
    margin-bottom: 0.45rem !important;
    line-height: 1.4 !important;
    display: inline-block !important;
    max-width: 100% !important;
    box-shadow: 0 2px 6px rgba(10, 0, 88, 0.10) !important;
}
.product-description h5 *,
.product-tab-content h5 *,
.product-details-content h5 *,
#productDescriptionContent h5 * {
    color: #ffffff !important;
}

/* Product Page Description H2 Modern Ribbon Accent */
.product-description h2,
.product-tab-content h2,
.product-details-content h2,
#productDescriptionContent h2 {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: var(--primary, #0a0058) !important;
    background: linear-gradient(90deg, rgba(10, 0, 88, 0.05) 0%, rgba(74, 90, 247, 0.02) 80%, transparent 100%) !important;
    border-left: 4px solid var(--primary, #0a0058) !important;
    padding: 6px 12px !important;
    border-radius: 0 6px 6px 0 !important;
    margin-top: 1.2rem !important;
    margin-bottom: 0.6rem !important;
    line-height: 1.35 !important;
}





