* { box-sizing: border-box; margin: 0; padding: 0; }
        :root { 
            --rescue-red: #b22234;
            --rescue-red-dark: #8b1a1a;
            --rescue-red-light: #d64f4f;
            --text-dark: #1e2b37;
            --text-light: #4a5a6a;
            --border-light: #e2e8f0;
            --price-orange: #ff4500;
            --gray-bg: #f1f5f9;
            --success: #10b981;
            --warning: #f59e0b;
            --danger: #ef4444;
            --white: #ffffff;
            --black: #000000;
            --shadow: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
        }
        body {
            font-family: 'Inter', system-ui, -apple-system, sans-serif;
            background-color: white;
            color: var(--text-dark);
            line-height: 1.4;
        }

        /* UTILITY BAR — sticks to very top */
        .utility-bar {
            background: var(--rescue-red);
            color: white;
            padding: 8px 50px;
            display: flex;
            justify-content: space-between;
            font-size: 13px;
            font-weight: 500;
            position: sticky;
            top: 0;
            z-index: 1002;
        }
        .utility-left {
            display: flex;
            gap: 40px;
        }
        .utility-left span {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .utility-right {
            display: flex;
            gap: 20px;
        }
        .utility-right span {
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 5px;
        }

        /* HEADER — sticks below utility bar */
        header {
            padding: 18px 50px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-bottom: 1px solid var(--border-light);
            background: white;
            position: sticky;
            top: 36px;
            z-index: 1001;
            overflow: visible;
        }
        .logo-area { display: flex; align-items: center; gap: 12px; cursor: pointer; }
        .logo-icon { background: var(--rescue-red); color: white; font-size: 28px; font-weight: 700; width: 48px; height: 48px; display: flex; align-items: center; justify-content: center; border-radius: 12px; }
        .logo-text h1 { margin: 0; font-size: 24px; font-weight: 700; color: var(--text-dark); }
        .logo-text p { margin: 4px 0 0; font-size: 11px; color: #4a5a6a; text-transform: uppercase; }

        /* Search container — flex row */
        .search-container {
            flex-grow: 1;
            max-width: 580px;
            margin: 0 20px;
            position: relative;
            display: flex;
            align-items: center;
        }
        /* Text input — left pill, no right border, joins Search button */
        .search-container input,
        .search-input-animated {
            flex: 1;
            width: 100%;
            height: 46px;
            padding: 0 18px !important;
            border: 2px solid #e0e0e0 !important;
            border-right: none !important;
            border-radius: 30px 0 0 30px !important;
            background: #fff !important;
            outline: none;
            font-size: 14px;
            color: #333;
            transition: border-color 0.2s;
            box-sizing: border-box;
            min-width: 0;
        }
        .search-container input:focus,
        .search-input-animated:focus {
            border-color: var(--rescue-red) !important;
        }
        /* Search button — right pill */
        .search-btn {
            position: static !important;
            height: 46px !important;
            padding: 0 24px !important;
            border-radius: 0 30px 30px 0 !important;
            border: none !important;
            background: var(--rescue-red, #b22234) !important;
            color: white !important;
            font-weight: 700 !important;
            font-size: 14px !important;
            cursor: pointer !important;
            display: flex !important;
            align-items: center !important;
            gap: 7px !important;
            white-space: nowrap !important;
            flex-shrink: 0 !important;
            transition: background 0.2s !important;
        }
        .search-btn:hover { background: #8b1a1a !important; }

        .user-nav { display: flex; gap: 30px; font-weight: 500; align-items: center; }
        .nav-item { display: flex; align-items: center; gap: 8px; cursor: pointer; color: var(--text-dark); transition: color 0.2s; }
        .nav-item:hover { color: var(--rescue-red); }
        .nav-item i { color: var(--rescue-red); font-size: 24px; }
        .cart-wrapper { position: relative; display: flex; align-items: center; gap: 8px; }
        .cart-badge { background: var(--rescue-red); color: white; font-size: 12px; font-weight: 700; padding: 2px 8px; border-radius: 12px; margin-left: -4px; }

        /* NAVBAR — sticks below header */
        .main-nav {
            background: var(--black);
            color: #fff;
            padding: 0 50px;
            height: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            position: sticky;
            top: 96px;
            z-index: 1000;
        }
        .nav-left { display: flex; align-items: center; gap: 24px; flex: 1; overflow: hidden; }
        .all-categories-btn { background: transparent; border: 1px solid #555; color: white; padding: 6px 16px; border-radius: 24px; font-weight: 600; cursor: pointer; white-space: nowrap; display: flex; align-items: center; gap: 8px; transition: background 0.2s; }
        .all-categories-btn:hover { background: #333; }
        .categories-scroll { display: flex; gap: 20px; overflow-x: auto; scrollbar-width: none; white-space: nowrap; padding: 5px 0; }
        .categories-scroll::-webkit-scrollbar { display: none; }
        .categories-scroll span { cursor: pointer; opacity: 0.9; transition: opacity 0.2s; white-space: nowrap; }
        .categories-scroll span:hover { opacity: 1; color: var(--rescue-red); }
        .nav-arrows { display: flex; gap: 16px; margin-left: 16px; }
        .arrow-btn { cursor: pointer; width: 28px; height: 28px; display: flex; align-items: center; justify-content: center; border-radius: 50%; background: #2a2a2a; border: 1px solid #444; transition: all 0.2s; }
        .arrow-btn:hover { background: var(--rescue-red); border-color: var(--rescue-red); }

        /* MEGA DROPDOWN */
        .mega-dropdown { 
            position: fixed; 
            top: auto;
            left: 50px; 
            right: 50px; 
            background: white; 
            border: 1px solid #ddd; 
            box-shadow: 0 10px 25px rgba(0,0,0,0.2); 
            display: none; 
            grid-template-columns: 240px 1fr 240px; 
            gap: 20px; 
            padding: 28px 24px; 
            z-index: 50000; 
            color: #1e2b37; 
            border-radius: 0 0 12px 12px;
        }
        .mega-dropdown.show { display: grid; }
        .mega-cat-column h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; margin-bottom: 12px; border-bottom: 1px solid #eee; padding-bottom: 5px; color: var(--text-dark); }
        .mega-cat-column ul { list-style: none; max-height: 300px; overflow-y: auto; }
        .mega-cat-column ul::-webkit-scrollbar { width: 4px; }
        .mega-cat-column ul::-webkit-scrollbar-track { background: #f1f1f1; }
        .mega-cat-column ul::-webkit-scrollbar-thumb { background: var(--rescue-red); border-radius: 10px; }
        .mega-cat-column li { font-size: 13px; padding: 8px 0; cursor: pointer; color: #333; transition: 0.2s; border-bottom: 1px solid #f5f5f5; }
        .mega-cat-column li:hover { color: var(--rescue-red); padding-left: 5px; background: #fff5f5; }
        .mega-showcase { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 15px; 
            max-height: 400px; 
            overflow-y: auto; 
            padding-right: 10px;
        }
        .mega-showcase::-webkit-scrollbar { width: 4px; }
        .mega-showcase::-webkit-scrollbar-track { background: #f1f1f1; }
        .mega-showcase::-webkit-scrollbar-thumb { background: var(--rescue-red); border-radius: 10px; }
        .mega-product-item { 
            text-align: center; 
            cursor: pointer; 
            padding: 10px;
            border: 1px solid transparent;
            transition: all 0.2s;
            border-radius: 8px;
        }
        .mega-product-item:hover { 
            border-color: var(--rescue-red);
            box-shadow: var(--shadow);
        }
        .mega-product-item img { 
            width: 100%; 
            height: 100px; 
            object-fit: cover; 
            border-radius: 6px; 
            background: #f1f5f9; 
        }
        .mega-product-item p { 
            font-size: 12px; 
            font-weight: 600; 
            margin-top: 8px; 
            color: var(--text-dark);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .mega-product-item .price { 
            color: var(--price-orange); 
            font-weight: 700; 
            font-size: 13px;
        }

        /* HERO BANNER CAROUSEL */
        .hero-section {
            padding: 20px 50px;
            display: grid;
            grid-template-columns: 220px 1fr 220px;
            gap: 15px;
            min-height: 400px;
        }
        .left-col, .right-col {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .side-product {
            flex: 1;
            border-radius: 8px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: flex-end;
            background-size: cover;
            background-position: center;
            cursor: pointer;
            transition: transform 0.2s;
            padding: 15px;
            color: white;
            position: relative;
            overflow: hidden;
            min-height: 120px;
        }
        .side-product::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3));
            z-index: 1;
        }
        .side-product > * {
            position: relative;
            z-index: 2;
        }
        .side-product .product-brand {
            font-size: 11px;
            opacity: 0.9;
            margin-bottom: 4px;
        }
        .side-product .product-name {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .side-product .product-price {
            font-size: 16px;
            font-weight: 800;
            color: #ffd700;
        }

        /* BANNER CAROUSEL */
        .banner-carousel {
            position: relative;
            width: 100%;
            height: 100%;
            border-radius: 8px;
            overflow: hidden;
        }
        .banner-slides {
            position: relative;
            width: 100%;
            height: 100%;
            min-height: 400px;
        }
        .banner-slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-size: cover;
            background-position: center;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            display: flex;
            align-items: flex-start;
            justify-content: flex-start;
            padding: 40px;
        }
        .banner-slide.active {
            opacity: 1;
            z-index: 2;
        }
        .banner-slide::before {
            display: none;
        }
        .banner-content {
            position: relative;
            z-index: 2;
            display: flex;
            justify-content: flex-start;
            align-items: flex-start;
            width: 100%;
            padding: 0;
        }
        .banner-text-block {
            max-width: 460px;
            display: flex;
            flex-direction: column;
            gap: 14px;
            text-align: left;
            color: #ff0000;
        }
        .banner-subtitle {
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            color: #ff0000;
        }
        .banner-text-block h2 {
            font-size: clamp(32px, 4vw, 48px);
            line-height: 1.05;
            margin: 0;
            color: #ff0000;
        }
        .banner-text-block p {
            font-size: 15px;
            line-height: 1.4;
            margin: 0;
            color: rgba(255, 0, 0, 0.88);
        }
        .banner-text-block .highlighted {
            color: #ff0000;
        }
        .banner-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
        }
        .banner-btn {
            background: transparent;
            color: white;
            border: 2px solid white;
            padding: 12px 40px;
            border-radius: 40px;
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s;
            text-transform: uppercase;
            letter-spacing: 1px;
            backdrop-filter: blur(4px);
            -webkit-backdrop-filter: blur(4px);
        }
        .banner-btn.primary {
            background: #b22234;
            border-color: transparent;
        }
        .banner-btn.secondary {
            background: transparent;
        }
        .banner-btn:hover {
            background: rgba(255,255,255,0.2);
            transform: translateY(-3px);
            border-color: white;
        }
        .carousel-indicators {
            position: absolute;
            bottom: 20px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 10px;
            z-index: 3;
        }
        .indicator {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            cursor: pointer;
            transition: all 0.3s;
        }
        .indicator.active {
            background: white;
            transform: scale(1.2);
        }

        /* Right Side - Quote and Brands */
        .quote-card {
            background: linear-gradient(135deg, var(--rescue-red) 0%, var(--rescue-red-dark) 100%);
            color: white;
            padding: 20px;
            border-radius: 8px;
            min-height: 120px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        .quote-card::before {
            content: '"';
            position: absolute;
            top: -20px;
            right: 10px;
            font-size: 120px;
            opacity: 0.2;
            font-family: serif;
        }
        .quote-text {
            font-size: 14px;
            font-style: italic;
            margin-bottom: 10px;
            position: relative;
            z-index: 2;
        }
        .quote-author {
            font-size: 12px;
            font-weight: 600;
            align-self: flex-end;
            position: relative;
            z-index: 2;
        }

        .brand-card {
            background: white;
            border-radius: 8px;
            padding: 15px;
            display: flex;
            align-items: center;
            gap: 12px;
            border: 1px solid var(--border-light);
            cursor: pointer;
            transition: all 0.2s;
            box-shadow: var(--shadow);
        }
        .brand-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
            border-color: var(--rescue-red);
        }
        .brand-logo {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            background: var(--gray-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .brand-logo img {
            max-width: 100%;
            max-height: 100%;
            object-fit: contain;
        }
        .brand-info h4 {
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 2px;
        }
        .brand-info p {
            font-size: 11px;
            color: var(--text-light);
        }
        .brand-info .featured {
            color: var(--rescue-red);
            font-size: 10px;
            font-weight: 600;
            text-transform: uppercase;
        }

        .equipment-section { padding: 40px 50px; }
        .equipment-section .section-title {
            margin-bottom: 24px;
        }
        .equipment-grid {
            display: grid;
            grid-template-columns: repeat(3, minmax(0, 1fr));
            gap: 24px;
        }
        .equip-group {
            background: #fff;
            border: 1px solid #e8e8e8;
            border-radius: 14px;
            padding: 22px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.04);
        }
        .equip-group h3 {
            margin: 0 0 12px;
            font-size: 16px;
            color: #1a1a1a;
            font-weight: 700;
        }
        .equip-group ul {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .equip-group ul li {
            font-size: 13px;
            margin-bottom: 10px;
            color: #444;
            padding-left: 14px;
            position: relative;
        }
        .equip-group ul li::before {
            content: '•';
            position: absolute;
            left: 0;
            color: #b22234;
        }
        @media (max-width: 1100px) {
            .equipment-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
        }
        @media (max-width: 700px) {
            .equipment-grid { grid-template-columns: 1fr; }
        }

        .stats-row {
            display: flex;
            justify-content: flex-end;
            gap: 15px;
            padding: 10px 50px 20px;
        }
        .stat-badge {
            background: white;
            border-radius: 30px;
            padding: 6px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--border-light);
            font-size: 13px;
            font-weight: 500;
            box-shadow: var(--shadow);
        }
        .stat-badge i { color: var(--rescue-red); }
        .stat-badge span { font-weight: 700; color: var(--rescue-red); }

        .deals-container { 
            display: grid; 
            grid-template-columns: repeat(3, 1fr); 
            gap: 20px; 
            padding: 0 50px 40px; 
        }
        .deal-card { 
            border: 1px solid #eee; 
            padding: 20px; 
            background: white; 
            border-radius: 8px; 
            transition: all 0.2s; 
        }
        .deal-card:hover { 
            box-shadow: var(--shadow-hover); 
            border-color: var(--rescue-red); 
        }
        .deal-title { 
            display: flex; 
            justify-content: space-between; 
            font-weight: 700; 
            color: var(--rescue-red); 
            margin-bottom: 15px; 
            border-bottom: 1px solid #f1f1f1; 
            padding-bottom: 10px; 
        }
        .deal-items { 
            display: flex; 
            gap: 15px; 
        }
        .deal-item { 
            flex: 1; 
            text-align: center; 
            cursor: pointer; 
        }
        .deal-item img { 
            width: 100%; 
            height: 120px; 
            object-fit: cover; 
            border-radius: 4px; 
            margin-bottom: 8px; 
        }
        .price-red { 
            color: var(--rescue-red); 
            font-weight: 700; 
            font-size: 15px; 
        }
        .old-price { 
            color: #999; 
            font-size: 12px; 
            text-decoration: line-through; 
            margin-left: 4px; 
        }

        /* CLINICAL PRODUCTS SECTION - 5 per row */
        .clinical-supplies { 
            padding: 40px 50px; 
            text-align: center; 
            background: var(--gray-bg); 
        }
        .section-title { 
            margin-bottom: 40px; 
            font-size: 28px; 
            color: var(--text-dark); 
            text-align: center;
            position: relative;
            display: block;
            width: 100%;
        }
        .section-title:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: var(--rescue-red);
            margin: 10px auto 0;
            border-radius: 2px;
        }

        /* PRODUCT GRID */
        .product-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 20px;
            margin-bottom: 30px;
        }
        .product-card {
            background: #fff;
            border-radius: 10px;
            border: 1px solid #e8e8e8;
            overflow: hidden;
            cursor: pointer;
            transition: transform 0.2s, box-shadow 0.2s;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .product-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 24px rgba(0,0,0,0.12);
            border-color: #e8e8e8;
        }
        .stock-badge-pill {
            position: absolute;
            top: 10px; right: 10px;
            background: #f59e0b;
            color: #fff;
            font-size: 11px; font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
            z-index: 2;
            letter-spacing: 0.3px;
        }
        .stock-badge-pill.out { background: #ef4444; }
        .stock-badge {
            position: absolute; top: 10px; right: 10px;
            padding: 3px 10px; border-radius: 20px;
            font-size: 11px; font-weight: 700; z-index: 2;
        }
        .stock-badge.in-stock { background: #10b981; color: white; }
        .stock-badge.low-stock { background: #f59e0b; color: white; }
        .stock-badge.out-of-stock { background: #ef4444; color: white; }
        .card-img-wrap {
            position: relative; overflow: hidden;
            height: 190px; background: #f8f8f8;
            flex-shrink: 0;
        }
        .card-img-wrap img {
            width: 100%; height: 100%;
            object-fit: cover; transition: transform 0.3s;
        }
        .product-card img {
            width: 100%; height: 190px; object-fit: cover;
        }
        .product-card:hover .card-img-wrap img { transform: scale(1.04); }
        .qv-overlay {
            position: absolute; inset: 0;
            display: flex; align-items: flex-end; justify-content: center;
            padding-bottom: 14px;
            opacity: 0; transition: opacity 0.2s;
            background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
        }
        .product-card:hover .qv-overlay { opacity: 1; }
        .qv-btn {
            background: var(--rescue-red, #b22234);
            color: white; border: none;
            border-radius: 25px; padding: 8px 20px;
            font-size: 13px; font-weight: 700; cursor: pointer;
            display: flex; align-items: center; gap: 7px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.3);
            transition: background 0.2s;
        }
        .qv-btn:hover { background: #8b1a1a; }
        .quick-view-overlay {
            position: absolute; top: 0; left: 0;
            width: 100%; height: 190px;
            display: flex; align-items: flex-end; justify-content: center;
            padding-bottom: 14px;
            opacity: 0; transition: opacity 0.2s;
            background: linear-gradient(to top, rgba(0,0,0,0.25), transparent);
            z-index: 5;
        }
        .product-card:hover .quick-view-overlay { opacity: 1; }
        .quick-view-btn {
            background: var(--rescue-red, #b22234);
            color: white; border: none;
            border-radius: 25px; padding: 8px 20px;
            font-size: 13px; font-weight: 700; cursor: pointer;
            display: flex; align-items: center; gap: 7px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.3);
            transition: background 0.2s;
        }
        .product-card:hover .quick-view-btn { transform: none; }
        .quick-view-btn:hover { background: #8b1a1a; }
        .product-info {
            padding: 13px 13px 11px;
            display: flex; flex-direction: column; flex: 1;
        }
        .product-category, .product-category-label {
            font-size: 11px; font-weight: 700;
            color: var(--rescue-red, #b22234);
            text-transform: uppercase; letter-spacing: 0.5px;
            margin: 0 0 4px;
        }
        .product-name, .product-name-v2 {
            font-size: 14px; font-weight: 700;
            color: #1a1a1a; margin: 0 0 2px; line-height: 1.25;
        }
        .product-description, .product-desc-v2 {
            font-size: 12px; color: #666;
            margin: 0 0 9px; line-height: 1.5; flex: 1;
        }
        .product-price-row, .price-action-row {
            display: flex; align-items: center;
            justify-content: flex-start; margin-bottom: 4px;
            gap: 10px;
        }
        .product-price, .price-v2 {
            font-size: 17px; font-weight: 800;
            color: var(--rescue-red, #b22234);
        }
        .price-original, .product-old-price {
            font-size: 12px; color: #aaa;
            text-decoration: line-through; margin-left: 4px;
        }
        .product-bottom-row {
            display: flex; align-items: center;
            justify-content: space-between; gap: 10px;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        .product-bottom-row > div:first-child {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .product-actions {
            display: flex; align-items: center; gap: 8px;
            justify-content: flex-end;
        }
        .action-icons-row { display: flex; gap: 6px; }
        .icon-btn {
            width: 32px; height: 32px; border-radius: 50%;
            border: 1px solid #e0e0e0; background: #fff;
            color: #555; font-size: 13px;
            display: flex; align-items: center; justify-content: center;
            cursor: pointer; transition: all 0.2s;
        }
        .icon-btn:hover, .icon-btn.cart-icon:hover {
            background: var(--rescue-red, #b22234);
            color: white; border-color: var(--rescue-red, #b22234);
        }
        .product-actions { display: flex; align-items: center; gap: 6px; margin-top: 4px; }
        .action-icon {
            width: 30px; height: 30px; border-radius: 50%;
            border: 1px solid #e0e0e0; display: flex;
            align-items: center; justify-content: center;
            cursor: pointer; color: #666; background: white;
            transition: all 0.2s; font-size: 13px;
        }
        .action-icon:hover { background: var(--rescue-red); color: white; border-color: var(--rescue-red); }
        .action-icon.add-to-cart {
            background: var(--rescue-red); color: white; border: none;
            flex: 1; border-radius: 6px; width: auto;
            padding: 6px 12px; gap: 6px; font-size: 12px; font-weight: 600;
            display: flex; align-items: center; justify-content: center;
        }
        .action-icon.add-to-cart:hover { background: #8b1a1a; }
        .action-icon.request-btn {
            background: #f59e0b; color: white; border: none;
            width: auto; padding: 6px 12px; border-radius: 6px;
            font-size: 12px; font-weight: 600;
            display: flex; align-items: center; gap: 4px;
        }
        .product-rating, .rating-row {
            display: flex; align-items: center; gap: 4px;
            font-size: 11px; color: #fbbf24;
        }
        .product-rating span, .rating-count { color: #888; font-size: 11px; }
        .stars-v2 { color: #f59e0b; font-size: 12px; }
        .rating-text {
            font-size: 13px;
            color: #1a1a1a;
            font-weight: 700;
            white-space: nowrap;
        }

        .view-btn { 
            border: 2px solid var(--black); 
            background: white; 
            padding: 12px 40px; 
            font-weight: 700; 
            cursor: pointer; 
            text-transform: uppercase; 
            transition: all 0.2s; 
            border-radius: 30px; 
        }
        .view-btn:hover { background: var(--black); color: white; }

        /* FOR YOU SECTION */
        .for-you-section { 
            padding: 60px 50px; 
            background: linear-gradient(135deg, var(--rescue-red) 0%, var(--rescue-red-dark) 100%);
            position: relative;
            overflow: hidden;
        }
        .for-you-section::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 50%);
            animation: rotate 30s linear infinite;
        }
        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }
        .for-you-section h2 { 
            text-align: left; 
            margin-bottom: 30px; 
            font-size: 28px; 
            color: white;
            position: relative;
            z-index: 2;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .for-you-grid { 
            display: grid; 
            grid-template-columns: repeat(2, 1fr); 
            gap: 25px; 
            position: relative;
            z-index: 2;
        }
        .for-you-card { 
            background: rgba(255,255,255,0.95);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 16px; 
            overflow: hidden; 
            display: flex; 
            align-items: center; 
            border: 1px solid rgba(255,255,255,0.3); 
            height: 160px; 
            cursor: pointer; 
            transition: all 0.3s; 
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }
        .for-you-card:hover { 
            transform: translateY(-8px) scale(1.02); 
            box-shadow: 0 20px 40px rgba(0,0,0,0.3); 
            border-color: white; 
        }
        .card-content { 
            padding: 25px; 
            flex: 1; 
            text-align: left; 
        }
        .card-content h3 { 
            font-size: 18px; 
            margin-bottom: 6px; 
            color: #333; 
        }
        .card-content p { 
            color: #666; 
            font-size: 13px; 
        }
        .card-content .card-link {
            color: var(--rescue-red);
            font-weight: 600;
            margin-top: 8px;
            display: inline-block;
        }
        .card-img { 
            width: 160px; 
            height: 100%; 
            object-fit: cover; 
            clip-path: polygon(10% 0%, 100% 0%, 100% 100%, 0% 100%);
        }

        /* MODALS */
        .modal {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.7);
            z-index: 3000;
            align-items: center;
            justify-content: center;
            backdrop-filter: blur(8px);
        }
        .modal.active {
            display: flex;
        }
        .modal-content {
            background: white;
            max-width: 1000px;
            width: 90%;
            border-radius: 16px;
            position: relative;
            box-shadow: var(--shadow-hover);
            max-height: 80vh;
            overflow-y: auto;
        }
        .modal-close {
            position: absolute;
            top: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--rescue-red);
            color: white;
            border: none;
            font-size: 24px;
            cursor: pointer;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: all 0.2s;
        }
        .modal-close:hover {
            background: var(--rescue-red-dark);
            transform: scale(1.1);
        }
        .quick-view-layout {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            padding: 40px;
        }
        .qv-gallery { display: flex; flex-direction: column; gap: 15px; }
        .qv-main-image { width: 100%; height: 300px; border-radius: 8px; overflow: hidden; border: 1px solid var(--border-light); }
        .qv-main-image img { width: 100%; height: 100%; object-fit: cover; }
        .qv-thumbnails { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
        .qv-thumb { width: 100%; height: 70px; border-radius: 4px; overflow: hidden; cursor: pointer; border: 2px solid transparent; transition: border 0.2s; }
        .qv-thumb:hover, .qv-thumb.active { border-color: var(--rescue-red); }
        .qv-thumb img { width: 100%; height: 100%; object-fit: cover; }
        .qv-info { display: flex; flex-direction: column; gap: 15px; }
        .qv-category { font-size: 12px; color: var(--rescue-red); font-weight: 600; text-transform: uppercase; }
        .qv-title { font-size: 24px; font-weight: 800; margin: 0; }
        .qv-price { font-size: 28px; font-weight: 800; color: var(--price-orange); }
        .qv-rating { display: flex; align-items: center; gap: 10px; }
        .qv-stars { color: #fbbf24; font-size: 16px; }
        .qv-description { font-size: 14px; line-height: 1.6; color: var(--text-light); }
        .qv-stock { padding: 8px 16px; border-radius: 30px; font-weight: 600; display: inline-block; width: fit-content; }
        .qv-stock.in-stock { background: var(--success); color: white; }
        .qv-stock.low-stock { background: var(--warning); color: white; }
        .qv-stock.out-of-stock { background: var(--danger); color: white; }
        .qv-actions { display: flex; gap: 15px; margin-top: 20px; }
        .qv-add-to-cart { flex: 2; background: var(--rescue-red); color: white; border: none; padding: 15px; border-radius: 30px; font-weight: 700; cursor: pointer; transition: all 0.2s; }
        .qv-add-to-cart:hover { background: var(--rescue-red-dark); }
        .qv-view-details { flex: 1; background: white; color: var(--text-dark); border: 1px solid var(--border-light); padding: 15px; border-radius: 30px; font-weight: 600; text-align: center; text-decoration: none; transition: all 0.2s; }
        .qv-view-details:hover { border-color: var(--rescue-red); color: var(--rescue-red); }

        /* REQUEST MODAL */
        .request-modal-content { max-width: 500px; padding: 40px; }
        .request-form { display: flex; flex-direction: column; gap: 20px; margin-top: 20px; }
        .form-group { display: flex; flex-direction: column; gap: 5px; }
        .form-group label { font-size: 13px; font-weight: 600; color: var(--text-dark); }
        .form-group input, .form-group textarea { padding: 12px; border: 1px solid var(--border-light); border-radius: 8px; font-size: 14px; outline: none; }
        .form-group input:focus, .form-group textarea:focus { border-color: var(--rescue-red); }
        .submit-request { background: var(--rescue-red); color: white; border: none; padding: 15px; border-radius: 30px; font-weight: 700; cursor: pointer; transition: all 0.2s; margin-top: 10px; }
        .submit-request:hover { background: var(--rescue-red-dark); }
        .login-prompt { text-align: center; padding: 20px; background: #f8fafc; border-radius: 8px; margin-top: 20px; }
        .login-btn { background: var(--rescue-red); color: white; border: none; padding: 12px 30px; border-radius: 30px; font-weight: 600; cursor: pointer; margin-top: 10px; }

        /* AUTH MODAL */
        .auth-modal-content { max-width: 400px; padding: 40px; }
        .auth-tabs { display: flex; gap: 10px; margin-bottom: 30px; }
        .auth-tab { flex: 1; padding: 12px; background: var(--gray-bg); border: none; border-radius: 30px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
        .auth-tab.active { background: var(--rescue-red); color: white; }

        /* COMPARE BAR */
        .compare-bar { position: fixed; bottom: 20px; right: 96px; background: var(--text-dark); color: white; padding: 12px 20px; border-radius: 40px; display: none; align-items: center; gap: 15px; z-index: 1000; box-shadow: var(--shadow-hover); }
        .compare-count { background: var(--rescue-red); padding: 4px 12px; border-radius: 20px; font-weight: 700; }
        .compare-btn { background: white; color: var(--text-dark); border: none; padding: 6px 16px; border-radius: 30px; font-weight: 600; cursor: pointer; }
        .compare-btn:hover { background: var(--rescue-red); color: white; }
        .clear-btn { background: transparent; color: #999; border: 1px solid #999; padding: 6px 12px; border-radius: 30px; cursor: pointer; }
        .clear-btn:hover { background: white; color: var(--text-dark); border-color: white; }

        /* COMPARE MODAL */
        .comp-modal-content { max-width: 900px; padding: 30px; }
        .comp-table { width: 100%; border-collapse: collapse; }
        .comp-table th, .comp-table td { border: 1px solid var(--border-light); padding: 12px; text-align: left; }
        .comp-table th { background: #f9fafb; font-weight: 700; }

        /* FOOTER */
        footer { background: #fff; padding: 60px 50px 20px; border-top: 1px solid #eee; color: #666; font-size: 13px; }
        .footer-grid { display: grid; grid-template-columns: repeat(3, 1fr) 0.8fr 1.5fr; gap: 20px; margin-bottom: 60px; }
        .footer-col h4 { color: #000; font-size: 13px; font-weight: 800; text-transform: uppercase; margin-bottom: 25px; }
        .footer-col ul { list-style: none; }
        .footer-col ul li { margin-bottom: 12px; cursor: pointer; transition: 0.2s; }
        .footer-col ul li:hover { color: var(--rescue-red); }
        .follow-text { font-size: 15px; color: #1e2b37; display: flex; gap: 15px; }
        .follow-text i { cursor: pointer; transition: color 0.2s; }
        .follow-text i:hover { color: var(--rescue-red); }
        .signup-box { display: flex; border: 1px solid #ccc; margin-bottom: 15px; height: 45px; }
        .signup-box input { border: none; padding: 0 15px; flex: 1; outline: none; font-size: 14px; }
        .signup-box button { background: #000; color: #fff; border: none; padding: 0 25px; cursor: pointer; font-weight: 700; font-size: 14px; transition: background 0.2s; }
        .signup-box button:hover { background: var(--rescue-red); }
        .pay-icons { display: flex; gap: 15px; align-items: center; margin-top: 12px; }
        .pay-icons img { height: 22px; max-width: 60px; object-fit: contain; filter: grayscale(20%); transition: filter 0.2s; }
        .pay-icons img:hover { filter: grayscale(0); }
        .paynow-badge { display: inline-flex; align-items: center; gap: 6px; background: var(--rescue-red, #b22234); color: white; padding: 6px 16px; border-radius: 20px; font-size: 13px; font-weight: 700; letter-spacing: 0.5px; }
        .paynow-badge i { color: #ffd700; }
        .footer-bottom { border-top: 1px solid #eee; padding-top: 20px; margin-top: 10px; display: flex; justify-content: space-between; align-items: flex-start; font-size: 11px; color: #999; }
        .copyright-info { font-size: 12px; color: #999; padding-top: 4px; }
        .legal-area { display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
        .legal-links { display: flex; align-items: center; gap: 4px; }
        .legal-links span { cursor: pointer; color: #999; font-size: 12px; }
        .legal-links span:hover { text-decoration: underline; color: var(--rescue-red); }
        .activate-win { font-size: 12px; color: #aaa; display: flex; align-items: center; gap: 5px; margin-top: 6px; }
        .activate-win i { color: #f59e0b; font-size: 11px; }
        .activate-win a { color: #aaa; text-decoration: none; transition: color 0.2s; }
        .activate-win a:hover { color: var(--rescue-red); text-decoration: underline; }

        /* NOTIFICATION */
        #notification { position: fixed; top: 20px; right: 20px; padding: 12px 24px; border-radius: 40px; font-weight: 600; z-index: 9999; transform: translateX(400px); transition: transform 0.3s ease; box-shadow: var(--shadow-hover); color: white; }
        #notification.success { background: var(--success); }
        #notification.error { background: var(--danger); }
        #notification.info { background: #3b82f6; }

        /* LOADING */
        #loading { position: fixed; top: 50%; left: 50%; transform: translate(-50%, -50%); background: var(--rescue-red); color: white; padding: 16px 32px; border-radius: 40px; font-weight: 700; z-index: 10000; box-shadow: var(--shadow-hover); display: none; }

        /* RESPONSIVE */
        @media (max-width: 1200px) {
            .product-grid { grid-template-columns: repeat(4, 1fr); }
        }
        @media (max-width: 992px) {
            .hero-section { grid-template-columns: 1fr; height: auto; }
            .product-grid { grid-template-columns: repeat(3, 1fr); }
            .deals-container { grid-template-columns: repeat(2, 1fr); }
            .quick-view-layout { grid-template-columns: 1fr; }
        }
        @media (max-width: 768px) {
            .product-grid { grid-template-columns: repeat(2, 1fr); }
            .deals-container { grid-template-columns: 1fr; }
            .for-you-grid { grid-template-columns: 1fr; }
            .footer-grid { grid-template-columns: 1fr; }
            .utility-bar { padding: 8px 20px; }
            header { padding: 14px 20px; top: 34px; }
            .main-nav { padding: 0 20px; top: 84px; }
        }
        @media (max-width: 480px) {
            .product-grid { grid-template-columns: 1fr; }
        }

        /* Star ratings */
        .fa-star, .fa-star-half-alt, .far.fa-star { color: #fbbf24; }

/* ══════════════════════════════════════════════════════
   MOBILE RESPONSIVE — Complete Fix
   ══════════════════════════════════════════════════════ */

/* Global overflow fix — MUST be first */
html, body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
}
*, *::before, *::after {
    box-sizing: border-box;
}
img, video, iframe { max-width: 100%; }

/* ── Tablet (≤900px) ── */
@media (max-width: 900px) {
    .utility-bar { padding: 6px 16px !important; }
    .utility-left { gap: 16px !important; font-size: 12px; }
    header { padding: 12px 20px !important; }
    .main-nav { padding: 0 20px !important; }
    .equipment-section,
    .featured-section,
    .deals-section,
    .for-you-section { padding: 24px 20px !important; }
}

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

    /* Utility bar — hide text, keep only phone short version */
    .utility-bar { padding: 5px 12px !important; flex-wrap: nowrap; overflow: hidden; }
    .utility-left { display: none !important; }
    .utility-right {
        width: 100%;
        gap: 0 !important;
        font-size: 11px;
        overflow: hidden;
    }
    .utility-right > span { display: none !important; }
    .utility-right > span:first-child { display: flex !important; font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .util-notif-wrap { margin-left: auto; }
    .udiv { display: none !important; }

    /* Header */
    header {
        padding: 8px 12px !important;
        top: 30px !important;
        gap: 8px;
        flex-wrap: nowrap !important;
        overflow: visible !important;
    }

    /* Logo */
    .logo-area { flex-shrink: 0; min-width: 0; }
    .logo-wrap { gap: 6px; }
    .site-logo-img { height: 32px !important; max-width: 80px; object-fit: contain; }
    .logo-tagline { display: none !important; }

    /* Hide location picker */
    .location-picker, #locationPickerWrap { display: none !important; }

    /* Search box — shrinks but stays visible */
    .search-container, #searchContainerWrap {
        flex: 1 1 0 !important;
        min-width: 0 !important;
        max-width: none !important;
        margin: 0 8px !important;
    }
    .search-container input,
    .search-input-animated {
        height: 36px !important;
        font-size: 12px !important;
        padding: 0 10px !important;
    }
    .search-btn {
        height: 36px !important;
        padding: 0 10px !important;
        font-size: 0 !important; /* hide "Search" text */
        min-width: 36px !important;
    }
    .search-btn i { font-size: 14px !important; display: inline !important; }
    .search-btn::before { content: none; }

    /* User nav — icons only */
    .user-nav { gap: 10px !important; flex-shrink: 0; }
    .nav-label { display: none !important; }
    .nav-item { gap: 0 !important; }
    .nav-item i, .nav-icon { font-size: 20px !important; }
    .nav-avatar { width: 28px !important; height: 28px !important; }

    /* Hamburger visible */
    #rrMobileMenuBtn { display: inline-flex !important; align-items: center; }

    /* Category nav — compact */
    .main-nav {
        padding: 0 12px !important;
        height: auto !important;
        min-height: 40px;
        top: 0 !important;
        position: relative !important;
        overflow-x: auto;
    }
    .nav-left { overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .all-categories-btn { font-size: 11px; padding: 4px 10px; white-space: nowrap; }
    .categories-scroll { font-size: 12px; gap: 14px; }
    .nav-arrows { display: none !important; }

    /* Breadcrumb */
    .rr-bc-a, .rr-bc-b { padding: 5px 12px !important; }
    .rr-bc-list { font-size: 11px !important; }
    .rr-bc-home-link span { display: none !important; }
    .rr-bc-allcats { font-size: 11px !important; }

    /* Content padding */
    .equipment-section,
    .featured-section,
    .deals-section,
    .for-you-section,
    .section-wrapper,
    .page-wrapper,
    .content-wrapper,
    .page-content,
    .main-content { padding-left: 12px !important; padding-right: 12px !important; }

    /* Product grids — 2 cols */
    .product-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .products-row { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .deals-container { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
    .for-you-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }

    /* Hero */
    .hero-section {
        grid-template-columns: 1fr !important;
        padding: 10px 12px !important;
        gap: 10px !important;
        height: auto !important;
    }
    .hero-side-panels { display: none !important; }
    .banner-carousel, .hero-banner-carousel { min-height: 200px !important; }

    /* Layouts */
    .cart-layout,
    .checkout-layout,
    .profile-layout,
    .quick-view-layout,
    .product-detail-layout { grid-template-columns: 1fr !important; }

    /* Modals */
    .modal-content { padding: 16px !important; margin: 8px auto !important; max-width: calc(100vw - 16px) !important; border-radius: 12px; }
    .auth-modal-content { max-width: calc(100vw - 16px) !important; }
    .comp-modal-content { padding: 12px !important; }

    /* Footer */
    .rr-footer-inner { grid-template-columns: 1fr 1fr !important; padding: 24px 14px 16px !important; gap: 20px 12px !important; }
    .rr-footer-brand { grid-column: 1 / -1; }
    .rr-footer-bottom { flex-direction: column; padding: 12px 14px; gap: 8px; }
    .rr-pay-grid { flex-wrap: wrap !important; }
    .rr-pay-img { height: 22px !important; }

    /* Chat widget */
    #rr-win { width: calc(100vw - 8px) !important; right: 4px !important; bottom: 70px !important; height: calc(100vh - 80px) !important; max-height: calc(100vh - 80px) !important; }
    #rr-launcher { bottom: 12px !important; right: 12px !important; width: 48px !important; height: 48px !important; font-size: 20px !important; }
    #rr-badge { bottom: 54px !important; right: 6px !important; }
}

/* ── Small phones (≤480px) ── */
@media (max-width: 480px) {
    .product-grid { gap: 8px !important; }
    .card-img { height: 140px !important; }
    .rr-footer-inner { grid-template-columns: 1fr !important; }
    .utility-bar { display: none !important; }
    header { top: 0 !important; }
    .main-nav { top: 0 !important; }
}

/* Hamburger button */
@media (min-width: 769px) {
    #rrMobileMenuBtn { display: none !important; }
}

/* Hide long phone/email on small screens */
@media (max-width: 768px) {
    .ub-phone, .ub-email { display: none !important; }
    .utility-right { justify-content: flex-end; }
}