/* Wattnix Global Styles - Extracted from app.blade.php */

        /* ১. ভেরিয়েবল ডিফাইনেশন */
        :root {
            --primary: #FF6600;
            --primary-hover: #E65C00;
            --dark: #111111;
            --nav-bg: #333333;
            --text: #333333;
            --light-text: #888888;
            --bg: #F9F9F9;
            --border: #EEEEEE;
            --success: #22C55E;
            --purple: #7B2FBE;
        }

        /* ২. গ্লোবাল রিসেট */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        .skip-link {
            position: absolute;
            left: -9999px;
            top: auto;
            width: 1px;
            height: 1px;
            overflow: hidden;
        }
        .skip-link:focus {
            position: fixed;
            left: 10px;
            top: 10px;
            z-index: 99999;
            background: var(--primary);
            color: #fff;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 700;
            width: auto;
            height: auto;
        }

        html,
        body {
            font-family: 'Poppins', sans-serif;
            background: var(--bg);
            color: var(--text);
            overflow-x: hidden;
            max-width: 100vw;
        }

        /* =========================================
           ৩. HEADER & NAV CSS
           ========================================= */
        /* Account Dropdown */
        .account-dropdown-wrap {
            position: relative;
        }

        .account-dropdown {
            display: none;
            position: absolute;
            right: 0;
            top: 115%;
            background: #fff;
            border-radius: 14px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            min-width: 220px;
            z-index: 999;
            padding: 8px 0;
            border: 1px solid var(--border);
        }

        .account-dropdown-wrap:hover .account-dropdown {
            display: block;
        }

        .dropdown-header {
            padding: 12px 18px;
            border-bottom: 1px solid var(--border);
        }

        .dropdown-header p {
            font-size: 11px;
            color: #aaa;
        }

        .dropdown-header h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--dark);
        }

        .dropdown-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 11px 18px;
            color: var(--text);
            text-decoration: none;
            font-size: 13px;
            transition: 0.3s;
            cursor: pointer;
            border: none;
            background: none;
            width: 100%;
            text-align: left;
        }

        .dropdown-item:hover {
            background: #fff5f0;
            color: var(--primary);
        }

        .dropdown-item i {
            width: 18px;
            color: var(--primary);
            font-size: 14px;
        }

        .dropdown-item.logout {
            color: #EF4444;
        }

        .dropdown-item.logout:hover {
            background: #FEE2E2;
            color: #DC2626;
        }

        .dropdown-divider {
            border: none;
            border-top: 1px solid var(--border);
            margin: 5px 0;
        }

        /* Header */
        header {
            background: #fff;
        }

        .header-inner {
            max-width: 1300px;
            margin: 0 auto;
            padding: 12px 20px;
            display: flex;
            align-items: center;
            gap: 20px;
        }

        .logo-text {
            flex-shrink: 0;
            font-size: 26px;
            font-weight: 800;
            color: var(--primary);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .logo-text span {
            color: var(--dark);
        }

        .search-bar {
            flex: 1;
            display: flex;
            border: 2px solid var(--border);
            border-radius: 10px;
            overflow: visible;
            transition: 0.3s;
            max-width: 500px;
            margin: 0 auto;
            position: relative;
        }

        .search-bar:focus-within {
            border-color: var(--primary);
        }

        .search-bar input {
            flex: 1;
            padding: 10px 15px;
            border: none;
            outline: none;
            font-size: 14px;
            font-family: 'Hind Siliguri', sans-serif;
            border-radius: 10px 0 0 10px;
        }

        .search-bar button {
            background: var(--primary);
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            font-size: 15px;
            transition: 0.3s;
            border-radius: 0 10px 10px 0;
        }

        .search-bar button:hover {
            background: var(--primary-hover);
        }

        .search-dropdown {
            position: absolute;
            top: 100%;
            left: 0;
            right: 0;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 0 0 10px 10px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.1);
            z-index: 1000;
            display: none;
            max-height: 350px;
            overflow-y: auto;
        }
        .search-dropdown.active {
            display: block;
        }
        .search-dropdown .search-hint {
            font-size: 13px;
            color: #aaa;
            text-align: center;
            padding: 20px;
        }
        .search-dropdown a {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 10px 15px;
            text-decoration: none;
            color: #333;
            font-size: 14px;
            border-bottom: 1px solid #f5f5f5;
            transition: 0.2s;
        }
        .search-dropdown a:last-child {
            border-bottom: none;
        }
        .search-dropdown a:hover,
        .search-dropdown a.active {
            background: #fff5f0;
            color: var(--primary);
        }
        .search-dropdown a i {
            color: #ccc;
            font-size: 14px;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 15px;
            flex-shrink: 0;
        }

        .header-icons {
            display: flex;
            align-items: center;
            gap: 2px;
        }

        .icon-btn {
            color: var(--text);
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            font-size: 10px;
            font-weight: 600;
            gap: 3px;
            position: relative;
            padding: 8px 10px;
            border-radius: 10px;
            transition: 0.3s;
            white-space: nowrap;
            cursor: pointer;
            border: none;
            background: none;
        }

        .icon-btn i {
            font-size: 20px;
        }

        .icon-btn:hover {
            color: var(--primary);
            background: #fff5f0;
        }

        .badge {
            position: absolute;
            top: 2px;
            right: 4px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            width: 17px;
            height: 17px;
            font-size: 9px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        /* More Dropdown */
        .more-wrapper {
            position: relative;
        }

        .more-dropdown {
            display: none;
            position: absolute;
            right: 0;
            top: 110%;
            background: #fff;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
            min-width: 200px;
            z-index: 999;
            padding: 10px 0;
            border: 1px solid var(--border);
            text-align: left;
        }

        .more-wrapper:hover .more-dropdown {
            display: block;
        }

        .more-dropdown a {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 18px;
            color: var(--text);
            text-decoration: none;
            font-size: 14px;
            transition: 0.3s;
        }

        .more-dropdown a:hover {
            background: #fff5f0;
            color: var(--primary);
        }

        .more-dropdown a i {
            width: 20px;
            color: var(--primary);
        }

        /* Navbar */
        nav.desktop-dark-menu {
            background: var(--nav-bg);
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
        }

        .nav-inner {
            max-width: 1300px;
            margin: 0 auto;
            padding: 0 20px;
            display: flex;
            align-items: center;
            overflow-x: auto;
        }

        .nav-inner::-webkit-scrollbar {
            display: none;
        }

        .nav-inner a {
            padding: 12px 16px;
            color: #ccc;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            border-bottom: 3px solid transparent;
            transition: 0.3s;
            white-space: nowrap;
        }

        .nav-inner a:hover,
        .nav-inner a.active {
            color: #fff;
            border-bottom-color: var(--primary);
        }

        /* Mobile Header */
        .mobile-header {
            display: none;
            background: #fff;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 10px 15px;
            align-items: center;
            justify-content: space-between;
        }

        .mobile-menu-btn {
            font-size: 24px;
            color: var(--text);
            background: none;
            border: none;
            cursor: pointer;
        }

        .mobile-cart-btn {
            position: relative;
            font-size: 24px;
            color: var(--text);
            background: none;
            border: none;
            cursor: pointer;
            text-decoration: none;
        }

        .mobile-wish-btn {
            position: relative;
            font-size: 24px;
            color: var(--text);
            background: none;
            border: none;
            cursor: pointer;
            text-decoration: none;
        }

        .mobile-wish-btn:hover,
        .mobile-cart-btn:hover {
            color: var(--primary);
        }

        .mobile-icon-group {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        /* Mobile Bottom Nav */
        .mobile-nav {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            background: #fff;
            border-top: 2px solid var(--border);
            z-index: 1000;
            padding: 8px 0 4px;
            box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
        }

        .mobile-nav-items {
            display: flex;
            justify-content: space-around;
        }

        .mobile-nav-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 3px;
            color: #666;
            text-decoration: none;
            font-size: 10px;
            font-weight: 700;
            padding: 5px 8px;
            border-radius: 10px;
            transition: 0.3s;
            position: relative;
        }

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

        .mobile-nav-item.active,
        .mobile-nav-item:hover {
            color: var(--primary);
        }

        .mobile-badge {
            position: absolute;
            top: 1px;
            right: 3px;
            background: var(--primary);
            color: #fff;
            border-radius: 50%;
            width: 15px;
            height: 15px;
            font-size: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
        }

        /* ━━ Mobile Nav Drawer ━━ */
        .mobile-nav-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.5);
            z-index: 2999;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }
        .mobile-nav-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .mobile-nav-drawer {
            position: fixed;
            top: 0;
            left: 0;
            width: min(290px, 85vw);
            height: 100%;
            background: #fff;
            z-index: 3000;
            transform: translateX(-100%);
            transition: transform 0.3s ease;
            overflow-y: auto;
            box-shadow: 4px 0 20px rgba(0,0,0,0.15);
        }
        .mobile-nav-drawer.active {
            transform: translateX(0);
        }
        .mnd-header {
            background: linear-gradient(135deg, var(--primary), #FF8C33);
            padding: 20px 18px;
            color: #fff;
            position: relative;
        }
        .mnd-close {
            position: absolute;
            top: 12px;
            right: 14px;
            background: rgba(255,255,255,0.25);
            border: none;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            color: #fff;
            font-size: 14px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.2s;
        }
        .mnd-close:hover {
            background: rgba(255,255,255,0.4);
        }
        .mnd-header h3 {
            font-size: 16px;
            font-weight: 700;
            margin: 0 0 4px 0;
        }
        .mnd-header p {
            font-size: 12px;
            margin: 0;
            opacity: 0.9;
        }
        .mnd-header .mnd-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            border: 2px solid rgba(255,255,255,0.5);
            object-fit: cover;
            margin-bottom: 8px;
        }
        .mnd-header .mnd-links {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }
        .mnd-header .mnd-links a {
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            text-decoration: none;
            background: rgba(255,255,255,0.2);
            padding: 4px 12px;
            border-radius: 20px;
            transition: 0.2s;
        }
        .mnd-header .mnd-links a:hover {
            background: rgba(255,255,255,0.35);
        }
        .mnd-section-title {
            font-size: 11px;
            font-weight: 700;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
            padding: 16px 18px 8px;
        }
        .mnd-link {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 11px 18px;
            color: #333;
            text-decoration: none;
            font-size: 13px;
            font-weight: 500;
            transition: 0.2s;
            border-left: 3px solid transparent;
        }
        .mnd-link:hover,
        .mnd-link.active {
            background: #FFF5EE;
            color: var(--primary);
            border-left-color: var(--primary);
        }
        .mnd-link i {
            width: 20px;
            text-align: center;
            font-size: 14px;
            color: #888;
        }
        .mnd-link:hover i,
        .mnd-link.active i {
            color: var(--primary);
        }
        .mnd-divider {
            height: 1px;
            background: #eee;
            margin: 6px 18px;
        }
        .mnd-footer {
            padding: 16px 18px;
            text-align: center;
            border-top: 1px solid #eee;
            margin-top: 10px;
        }
        .mnd-footer p {
            font-size: 11px;
            color: #aaa;
            margin: 0;
        }

        /* Cart Float & Drawer */
        .cart-float {
            background: var(--primary);
            color: #fff;
            border-radius: 14px;
            padding: 12px 14px;
            text-align: center;
            cursor: pointer;
            box-shadow: 0 5px 20px rgba(255, 102, 0, 0.4);
            min-width: 70px;
            transition: 0.3s;
            text-decoration: none;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            position: fixed;
            right: 15px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 998;
        }

        .cart-float:hover {
            background: var(--primary-hover);
            transform: translateY(-50%) scale(1.05);
        }

        .cart-float i {
            font-size: 24px;
        }

        .cart-float .cart-count {
            font-size: 18px;
            font-weight: 700;
        }

        .cart-float .cart-amount {
            font-size: 11px;
            font-weight: 600;
            border-top: 1px solid rgba(255, 255, 255, 0.3);
            padding-top: 4px;
            width: 100%;
            text-align: center;
        }

        .cart-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 10000;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
        }

        .cart-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .cart-drawer {
            position: fixed;
            top: 0;
            right: -400px;
            width: min(400px, 100vw);
            height: 100%;
            background: #fff;
            z-index: 10001;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.1);
            transition: right 0.4s ease;
            display: flex;
            flex-direction: column;
        }

        .cart-drawer.active {
            right: 0;
        }

        .cart-drawer-header {
            padding: 20px;
            border-bottom: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .cart-drawer-header h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--dark);
            display: flex;
            align-items: center;
            gap: 8px;
            margin: 0;
        }

        .close-cart {
            background: none;
            border: none;
            font-size: 15px;
            font-weight: 600;
            color: #888;
            cursor: pointer;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        .close-cart:hover {
            color: #EF4444;
        }

        .cart-drawer-body {
            flex: 1;
            overflow-y: auto;
            padding: 20px;
        }

        .cart-drawer-footer {
            padding: 20px;
            border-top: 1px solid var(--border);
            background: #f9f9f9;
        }

        .drawer-item {
            display: flex;
            gap: 15px;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #f5f5f5;
            position: relative;
        }

        .drawer-item img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 8px;
            border: 1px solid #eee;
        }

        .drawer-item-info {
            flex: 1;
            padding-right: 25px;
        }

        .drawer-item-info h4 {
            font-size: 13px;
            font-weight: 600;
            margin-bottom: 10px;
            line-height: 1.3;
            color: var(--dark);
        }

        .drawer-price-calc {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            color: #555;
            flex-wrap: wrap;
        }

        .drawer-qty-ctrl {
            display: flex;
            align-items: center;
            border: 1px solid #ddd;
            border-radius: 4px;
            overflow: hidden;
            background: #fff;
            height: 28px;
        }

        .drawer-qty-btn {
            width: 28px;
            height: 100%;
            background: #f9f9f9;
            border: none;
            font-size: 15px;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: 0.3s;
        }

        .drawer-qty-btn:hover {
            background: #eee;
        }

        .drawer-qty-input {
            width: 30px;
            height: 100%;
            border: none;
            text-align: center;
            font-size: 12px;
            font-weight: 600;
            outline: none;
            border-left: 1px solid #ddd;
            border-right: 1px solid #ddd;
            pointer-events: none;
        }

        .drawer-remove {
            position: absolute;
            right: 0;
            top: 0;
            color: #aaa;
            font-size: 18px;
            border: none;
            background: none;
            cursor: pointer;
            transition: 0.3s;
            padding: 5px;
        }

        .drawer-remove:hover {
            color: #EF4444;
        }

        .drawer-total {
            display: flex;
            justify-content: space-between;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 15px;
            color: var(--dark);
        }

        .btn-checkout-drawer {
            display: block;
            width: 100%;
            background: var(--primary);
            color: #fff;
            padding: 12px;
            border-radius: 8px;
            text-align: center;
            text-decoration: none;
            font-weight: 700;
            font-size: 14px;
            transition: 0.3s;
        }

        .btn-checkout-drawer:hover {
            background: var(--primary-hover);
        }

        /* =========================================
           ৪. FOOTER CSS
           ========================================= */
        footer {
            background: var(--dark);
            color: #aaa;
            padding: 60px 20px 30px;
            margin-top: 80px;
            font-family: 'Hind Siliguri', sans-serif;
        }

        .footer-grid {
            max-width: 1300px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-logo {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 15px;
            display: block;
            text-decoration: none;
            font-family: 'Poppins', sans-serif;
        }

        .footer-logo span {
            color: #fff;
        }

        .footer-tagline {
            color: #ccc;
            font-size: 15px;
            margin-bottom: 25px;
            font-weight: 500;
            line-height: 1.6;
        }

        .footer-col p {
            font-size: 14px;
            color: #aaa;
            margin-bottom: 12px;
            line-height: 1.7;
            display: flex;
            align-items: flex-start;
            gap: 10px;
        }

        .footer-col i {
            color: var(--primary);
            margin-top: 4px;
        }

        .footer-col a {
            font-size: 14px;
            color: #aaa;
            text-decoration: none;
            display: block;
            margin-bottom: 12px;
            transition: 0.3s;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col a:hover {
            color: var(--primary);
            padding-left: 5px;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 25px;
            padding-bottom: 10px;
            border-bottom: 3px solid var(--primary);
            display: inline-block;
            font-family: 'Poppins', sans-serif;
        }

        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 25px;
            flex-wrap: wrap;
        }

        .social-links a {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #222;
            color: #aaa;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            transition: all 0.3s ease;
            font-size: 20px;
            border: 1px solid #333;
        }

        .social-links a:hover {
            transform: translateY(-5px);
            border-color: transparent;
        }

        .social-links a.fb:hover {
            background: #1877F2;
            color: #fff;
            box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
        }

        .social-links a.yt:hover {
            background: #FF0000;
            color: #fff;
            box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
        }

        .social-links a.tk:hover {
            background: #000;
            color: #fff;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
        }

        .social-links a.ig:hover {
            background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
            color: #fff;
            box-shadow: 0 5px 15px rgba(220, 39, 67, 0.4);
        }

        .social-links a.wa:hover {
            background: #25D366;
            color: #fff;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
        }

        .footer-bottom {
            max-width: 1300px;
            margin: 0 auto;
            border-top: 1px solid #333;
            padding-top: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 20px;
            font-size: 14px;
            color: #777;
        }

        .payment-icons {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .payment-icons span {
            background: #222;
            color: #aaa;
            padding: 8px 15px;
            border-radius: 6px;
            font-size: 13px;
            font-weight: 700;
            border: 1px solid #333;
            text-transform: uppercase;
        }

        /* WhatsApp Button */
        .whatsapp-btn {
            position: fixed;
            bottom: 85px;
            right: 90px;
            background: #25D366;
            color: #fff;
            width: 52px;
            height: 52px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 26px;
            text-decoration: none;
            box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            z-index: 997;
            transition: 0.3s;
            animation: pulse 2s infinite;
        }

        .whatsapp-btn:hover {
            transform: scale(1.1);
        }

        @keyframes pulse {

            0%,
            100% {
                box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
            }

            50% {
                box-shadow: 0 5px 40px rgba(37, 211, 102, 0.7);
            }
        }

        /* =========================================
           ৫. RESPONSIVE CSS (ALL DEVICES)
           ========================================= */
        @media (max-width: 1200px) {
            /* যদি প্রোডাক্ট গ্রিড থাকে, তবে সেটার জন্য মিডিয়া কুয়েরি বাকি পেজে ব্যবহার করবেন */
        }

        @media (max-width: 768px) {

            header,
            nav {
                display: none;
            }

            .mobile-header {
                display: flex;
            }

            #darkMenuSpacer {
                display: none !important;
            }

            .mobile-nav {
                display: block;
            }

            body {
                padding-bottom: 70px;
            }

            .cart-float {
                transform: translateY(-50%) scale(0.80) !important;
                transform-origin: right center !important;
                right: 0px !important;
                z-index: 9999 !important;
            }

            .whatsapp-btn {
                bottom: 90px !important;
                right: 20px !important;
            }

            footer {
                padding: 40px 15px 25px;
                margin-top: 50px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }

            .social-links {
                justify-content: center;
            }

            .cart-drawer-body {
                padding: 15px;
            }

            .cart-drawer-header {
                padding: 15px;
            }

            .cart-drawer-footer {
                padding: 15px;
            }
        }

        @media (min-width: 769px) and (max-width: 1024px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }
        }

        @media (max-width: 480px) {
            .cart-drawer {
                width: 100%;
                right: -100%;
            }
        }

        /* MOBILE SEARCH OVERLAY */
        .mobile-search-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(4px);
            z-index: 10002;
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            display: flex;
            align-items: flex-start;
            justify-content: center;
            padding-top: 20px;
        }
        .mobile-search-overlay.active {
            opacity: 1;
            visibility: visible;
        }
        .mobile-search-box {
            background: #fff;
            border-radius: 16px;
            width: 92%;
            max-width: 500px;
            box-shadow: 0 20px 50px rgba(0,0,0,0.2);
            overflow: hidden;
            transform: translateY(-30px);
            transition: transform 0.3s ease;
        }
        .mobile-search-overlay.active .mobile-search-box {
            transform: translateY(0);
        }
        .mobile-search-header {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px 18px;
            border-bottom: 1px solid #eee;
            background: #fafafa;
        }
        .mobile-search-header i {
            color: var(--primary);
            font-size: 18px;
        }
        .mobile-search-input {
            flex: 1;
            border: none;
            outline: none;
            font-size: 15px;
            font-family: 'Poppins', 'Hind Siliguri', sans-serif;
            background: transparent;
        }
        .mobile-search-close {
            background: none;
            border: none;
            font-size: 18px;
            color: #888;
            cursor: pointer;
            padding: 4px 8px;
            transition: 0.2s;
        }
        .mobile-search-close:hover {
            color: #EF4444;
        }
        .mobile-search-body {
            max-height: 350px;
            overflow-y: auto;
            padding: 12px 18px;
        }
        .mobile-search-body .search-hint {
            font-size: 13px;
            color: #aaa;
            text-align: center;
            padding: 20px 0;
        }
        .mobile-search-body .search-suggestion {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px solid #f5f5f5;
            color: #333;
            text-decoration: none;
            font-size: 14px;
            transition: 0.2s;
        }
        .mobile-search-body .search-suggestion:last-child {
            border-bottom: none;
        }
        .mobile-search-body .search-suggestion:hover,
        .mobile-search-body .search-suggestion.active {
            color: var(--primary);
        }
        .search-thumb {
            width: 44px;
            height: 44px;
            border-radius: 8px;
            object-fit: cover;
            border: 1px solid #eee;
            flex-shrink: 0;
        }
        .search-info {
            flex: 1;
            min-width: 0;
        }
        .search-info .s-name {
            font-weight: 600;
            font-size: 13px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .search-info .s-meta {
            font-size: 11px;
            color: #999;
            margin-top: 2px;
        }
        .search-info .s-price {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
        }
        .search-info .s-old-price {
            font-size: 11px;
            color: #aaa;
            text-decoration: line-through;
            margin-left: 6px;
        }

        /* ━━ Cart Drawer Size Selector ━━ */
        .drawer-size-select,
        .cart-item-size-select {
            border: 1.5px solid #e0e0e0;
            border-radius: 6px;
            padding: 4px 10px 4px 8px;
            font-size: 12px;
            font-weight: 600;
            cursor: pointer;
            background: #fff;
            color: #333;
            outline: none;
            transition: border-color 0.2s;
            -webkit-appearance: none;
            appearance: none;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-position: right 8px center;
            padding-right: 24px;
        }
        .drawer-size-select:hover,
        .drawer-size-select:focus,
        .cart-item-size-select:hover,
        .cart-item-size-select:focus {
            border-color: var(--primary, #ff6b00);
        }
        .drawer-size-tag {
            font-size: 11px;
            color: #666;
            background: #f5f5f5;
            padding: 2px 8px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 5px;
            border: 1px solid #e5e5e5;
        }

        /* ── Touch Target Minimum 44px (WCAG) ── */
        .action-icon-btn {
            width: 44px !important;
            height: 44px !important;
            display: inline-flex !important;
            align-items: center;
            justify-content: center;
        }
        .btn-order-new,
        .btn-cart-new {
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .color-pill {
            width: 44px !important;
            height: 44px !important;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .size-pill {
            min-width: 44px !important;
            height: 44px !important;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .qty-minus,
        .qty-plus,
        .card-rel-btn,
        .share-btn,
        .coupon-copy-btn,
        .compare-float-bar .btn-view-compare,
        .compare-float-bar .btn-clear-compare,
        .mnd-close {
            min-width: 44px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        @media (max-width: 480px) {
            .qty-minus, .qty-plus { width: 44px !important; height: 44px !important; }
            .qty-val { height: 44px !important; }
        }
