/* ============================================
   LeakMasti.shop — Light Professional E-Commerce
   Clean, Corporate, High-Trust Retail Aesthetic
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ---------- Light Professional CSS Variables ---------- */
:root {
    --bg-primary: #f8fafc;
    --bg-surface: #ffffff;
    --bg-secondary: #f1f5f9;
    --bg-muted: #e2e8f0;
    
    --text-primary: #0f172a;
    --text-secondary: #475569;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    
    --accent-blue: #2563eb;
    --accent-blue-hover: #1d4ed8;
    --accent-blue-light: #eff6ff;
    --accent-cyan: #0284c7;
    --accent-orange: #ea580c;
    --accent-orange-hover: #c2410c;
    --accent-orange-light: #fff7ed;
    --accent-green: #16a34a;
    --accent-green-light: #f0fdf4;
    --accent-red: #dc2626;
    --accent-amber: #d97706;

    --border-color: #e2e8f0;
    --border-light: #f1f5f9;
    --border-focus: #3b82f6;

    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 10px 25px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -4px rgba(0, 0, 0, 0.04);
    --shadow-glow: 0 0 20px rgba(37, 99, 235, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 18px;
    --radius-full: 9999px;

    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;
    --max-width: 1280px;
    --header-height: 72px;
    --top-bar-height: 38px;
}

/* ---------- Global Reset ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: var(--font-heading);
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

a {
    color: var(--accent-blue);
    text-decoration: none;
    transition: all 0.2s ease;
}
a:hover {
    color: var(--accent-orange);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: var(--font-heading);
    transition: all 0.2s ease;
}

input, select, textarea {
    font-family: var(--font-body);
    outline: none;
    border: 1px solid var(--border-color);
    background: var(--bg-surface);
    color: var(--text-primary);
    border-radius: var(--radius-sm);
    padding: 11px 16px;
    font-size: 14px;
    transition: all 0.2s ease;
}
input:focus, select:focus, textarea:focus {
    border-color: var(--border-focus);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.15);
    background: #ffffff;
}

/* Custom Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: #94a3b8; }

/* ============================================
   TOP ANNOUNCEMENT BAR
   ============================================ */
.top-bar {
    height: var(--top-bar-height);
    background: #0f172a;
    color: #ffffff;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    position: relative;
    z-index: 1001;
    overflow: hidden;
}

.top-bar-content {
    display: flex;
    align-items: center;
    gap: 16px;
    white-space: nowrap;
}

.top-bar .live-indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(220, 38, 38, 0.2);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #fca5a5;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background: #ef4444;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.6; }
    100% { transform: scale(0.9); opacity: 1; }
}

.coupon-pill {
    background: rgba(255, 255, 255, 0.15);
    border: 1px dashed rgba(255, 255, 255, 0.4);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: monospace;
    font-weight: 800;
    color: #fde047;
    cursor: pointer;
}
.coupon-pill:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* ============================================
   MAIN HEADER / NAVIGATION
   ============================================ */
.header {
    position: fixed;
    top: var(--top-bar-height);
    left: 0;
    right: 0;
    height: var(--header-height);
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    z-index: 1000;
    display: flex;
    align-items: center;
    padding: 0 24px;
    transition: all 0.3s;
}

.header-content {
    max-width: var(--max-width);
    margin: 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 26px;
    font-weight: 900;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.logo-fire {
    font-size: 28px;
    filter: drop-shadow(0 2px 4px rgba(234, 88, 12, 0.3));
}

.logo-text {
    color: #0f172a;
    font-weight: 900;
}

.logo-domain {
    font-size: 11px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--accent-orange), #ea580c);
    color: #fff;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    vertical-align: middle;
    margin-left: 2px;
}

/* Header Live Search */
.header-search {
    flex: 1;
    max-width: 460px;
    position: relative;
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon {
    position: absolute;
    left: 14px;
    color: var(--text-muted);
    font-size: 15px;
    pointer-events: none;
}

.header-search input {
    width: 100%;
    padding: 10px 16px 10px 42px;
    border-radius: var(--radius-full);
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    font-size: 13.5px;
}
.header-search input:focus {
    border-color: var(--accent-blue);
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.search-clear-btn {
    position: absolute;
    right: 12px;
    background: transparent;
    color: var(--text-muted);
    font-size: 14px;
    display: none;
}
.search-clear-btn:hover { color: var(--text-primary); }

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 14px;
}

.cart-pill-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #f8fafc;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 8px 18px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    box-shadow: var(--shadow-xs);
    transition: all 0.25s;
}
.cart-pill-btn:hover {
    border-color: var(--accent-blue);
    background: #eff6ff;
    color: var(--accent-blue);
    transform: translateY(-1px);
}

.cart-pill-badge {
    background: var(--accent-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cart-pill-badge.hidden { display: none; }

.cart-pill-total {
    color: var(--accent-blue);
    font-weight: 800;
}

/* ============================================
   HERO BANNER — LIGHT PROFESSIONAL SPLIT
   ============================================ */
.hero {
    margin-top: calc(var(--header-height) + var(--top-bar-height));
    padding: 48px 24px 40px;
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 50%, #eff6ff 100%);
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.hero-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 40px;
    align-items: center;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 18px;
}

.hero h1 {
    font-size: 46px;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 16px;
    color: #0f172a;
}

.hero h1 .text-gradient {
    color: #2563eb;
    background: linear-gradient(135deg, #2563eb 0%, #0284c7 60%, #ea580c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 17px;
    color: #475569;
    line-height: 1.6;
    margin-bottom: 26px;
    max-width: 540px;
}

/* Countdown Box */
.deal-countdown-box {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 14px 20px;
    margin-bottom: 28px;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow-sm);
}

.countdown-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    color: #dc2626;
    letter-spacing: 0.5px;
}

.countdown-digits {
    display: flex;
    align-items: center;
    gap: 6px;
}

.digit-box {
    background: #0f172a;
    color: #ffffff;
    padding: 6px 10px;
    border-radius: 6px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    min-width: 42px;
    text-align: center;
}

.digit-unit {
    display: block;
    font-size: 9px;
    color: #94a3b8;
    font-weight: 600;
    text-transform: uppercase;
}

.digit-colon {
    font-size: 20px;
    font-weight: 800;
    color: #dc2626;
}

.hero-actions {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent-orange);
    color: #fff;
    padding: 14px 28px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
    transition: all 0.25s;
}
.btn-hero-primary:hover {
    background: var(--accent-orange-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(234, 88, 12, 0.45);
    color: #fff;
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    color: var(--text-primary);
    padding: 14px 24px;
    border-radius: var(--radius-full);
    font-size: 15px;
    font-weight: 700;
    box-shadow: var(--shadow-xs);
    transition: all 0.25s;
}
.btn-hero-secondary:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: #eff6ff;
}

/* Right Hero Spotlight Card */
.hero-spotlight {
    position: relative;
}

.spotlight-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.spotlight-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: var(--accent-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 5px 12px;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
}

.spotlight-image-wrap {
    height: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
    margin-bottom: 18px;
    background: #f8fafc;
    cursor: pointer;
}

.spotlight-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.spotlight-card:hover .spotlight-image {
    transform: scale(1.05);
}

.spotlight-brand {
    font-size: 12px;
    font-weight: 800;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.spotlight-title {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #0f172a;
}

.spotlight-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 14px;
}

.spotlight-deal-price {
    font-size: 28px;
    font-weight: 900;
    color: #0f172a;
}

.spotlight-mrp {
    font-size: 16px;
    color: var(--text-light);
    text-decoration: line-through;
}

.spotlight-save-badge {
    background: #dcfce7;
    color: #15803d;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 4px;
}

.claim-progress-wrap {
    margin-bottom: 16px;
}

.claim-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 6px;
}

.claim-text {
    color: #dc2626;
    display: flex;
    align-items: center;
    gap: 4px;
}

.claim-percent {
    color: var(--text-muted);
}

.claim-bar {
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.claim-fill {
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #f97316);
    border-radius: var(--radius-full);
}

.btn-spotlight-buy {
    width: 100%;
    padding: 13px;
    background: var(--accent-blue);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 15px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.25);
    transition: all 0.2s;
}
.btn-spotlight-buy:hover {
    background: var(--accent-blue-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
}

/* ============================================
   BRAND STRIP
   ============================================ */
.brands-strip {
    padding: 16px 24px;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
}

.brands-container {
    max-width: var(--max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.brands-label {
    font-size: 12px;
    font-weight: 800;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brands-list {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.brand-badge {
    background: #f8fafc;
    border: 1px solid var(--border-color);
    color: #334155;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 700;
    transition: all 0.2s;
}
.brand-badge:hover {
    background: #eff6ff;
    border-color: var(--accent-blue);
    color: var(--accent-blue);
}

/* ============================================
   CATEGORIES SECTION
   ============================================ */
.section-container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

.categories-section {
    padding: 32px 0 16px;
}

.categories-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.categories-title {
    font-size: 20px;
    font-weight: 800;
}

.category-filters {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
}
.category-filters::-webkit-scrollbar { display: none; }

.category-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-full);
    color: #475569;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: var(--shadow-xs);
}
.category-btn:hover {
    border-color: var(--accent-blue);
    color: var(--accent-blue);
    background: #eff6ff;
}
.category-btn.active {
    background: var(--accent-blue);
    border-color: var(--accent-blue);
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.category-btn .cat-count {
    background: rgba(0, 0, 0, 0.08);
    padding: 2px 8px;
    border-radius: var(--radius-full);
    font-size: 11px;
}
.category-btn.active .cat-count {
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

/* ============================================
   PRODUCTS GRID
   ============================================ */
.products-section {
    padding: 20px 0 60px;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.section-title {
    font-size: 26px;
    font-weight: 900;
    display: flex;
    align-items: center;
    gap: 10px;
}

.section-title .count {
    font-size: 14px;
    font-weight: 700;
    color: #475569;
    background: #ffffff;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    border: 1px solid var(--border-color);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}

/* Light Product Card */
.product-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all 0.25s ease;
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-sm);
}
.product-card:hover {
    transform: translateY(-4px);
    border-color: #93c5fd;
    box-shadow: var(--shadow-lg);
}

.card-badge-top {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--accent-orange);
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    padding: 4px 9px;
    border-radius: 6px;
    z-index: 2;
    box-shadow: 0 2px 6px rgba(234, 88, 12, 0.25);
}

.card-timer-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #fca5a5;
    color: #b91c1c;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-image-wrap {
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    position: relative;
    background: #f8fafc;
    cursor: pointer;
    border-bottom: 1px solid #f1f5f9;
}

.product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.product-card:hover .product-image {
    transform: scale(1.06);
}

.product-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-brand {
    font-size: 11px;
    font-weight: 800;
    color: var(--accent-blue);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 4px;
}

.product-name {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 40px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
}

.rating-stars {
    color: #f59e0b;
    font-size: 13px;
    letter-spacing: -1px;
}

.rating-value {
    font-size: 13px;
    font-weight: 800;
    color: #0f172a;
}

.rating-count {
    font-size: 11px;
    color: var(--text-muted);
}

.card-claim-wrap {
    margin-bottom: 12px;
}

.card-claim-label {
    display: flex;
    justify-content: space-between;
    font-size: 11px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #dc2626;
}

.card-claim-bar {
    width: 100%;
    height: 4px;
    background: #e2e8f0;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.card-claim-fill {
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #f97316);
    border-radius: var(--radius-full);
}

.product-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 14px;
}

.highlight-tag {
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1e40af;
    font-size: 11px;
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 600;
}

.product-pricing {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-top: auto;
    margin-bottom: 14px;
    flex-wrap: wrap;
}

.deal-price {
    font-size: 22px;
    font-weight: 900;
    color: #0f172a;
}

.original-price {
    font-size: 13px;
    color: var(--text-light);
    text-decoration: line-through;
}

.save-amount {
    font-size: 11px;
    color: #15803d;
    font-weight: 800;
    background: #dcfce7;
    padding: 2px 6px;
    border-radius: 4px;
}

.add-to-cart-btn {
    width: 100%;
    padding: 11px 0;
    background: var(--accent-blue);
    color: #ffffff;
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.2s;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.2);
}
.add-to-cart-btn:hover {
    background: var(--accent-blue-hover);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* ============================================
   CUSTOMER REVIEWS & SOCIAL PROOF
   ============================================ */
.reviews-section {
    padding: 60px 0;
    background: #f1f5f9;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.reviews-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #dcfce7;
    color: #15803d;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.reviews-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #0f172a;
}

.reviews-subtitle {
    color: var(--text-secondary);
    font-size: 15px;
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.25s;
}
.review-card:hover {
    transform: translateY(-3px);
    border-color: #93c5fd;
    box-shadow: var(--shadow-md);
}

.review-stars {
    color: #f59e0b;
    font-size: 15px;
    margin-bottom: 12px;
}

.review-text {
    font-size: 14px;
    color: #334155;
    line-height: 1.6;
    margin-bottom: 18px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #eff6ff;
    color: var(--accent-blue);
    border: 1px solid #bfdbfe;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 15px;
}

.author-info h4 {
    font-size: 14px;
    font-weight: 700;
    color: #0f172a;
}

.author-location {
    font-size: 12px;
    color: var(--text-muted);
}

.verified-buyer {
    font-size: 11px;
    color: #15803d;
    font-weight: 700;
}

/* ============================================
   VIP CLUB CARD
   ============================================ */
.vip-club-section {
    padding: 50px 0;
}

.vip-club-card {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 44px;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 36px;
    align-items: center;
    box-shadow: var(--shadow-lg);
}

.vip-content h3 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 10px;
    color: #ffffff;
}

.vip-content p {
    color: #dbeafe;
    font-size: 15px;
    line-height: 1.6;
}

.vip-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.vip-input-row {
    display: flex;
    gap: 10px;
}

.vip-input-row input {
    flex: 1;
    background: #ffffff;
    color: #0f172a;
    border: none;
}

.btn-vip-join {
    background: var(--accent-orange);
    color: #fff;
    padding: 12px 22px;
    border-radius: var(--radius-sm);
    font-weight: 800;
    font-size: 14px;
    white-space: nowrap;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}
.btn-vip-join:hover {
    background: var(--accent-orange-hover);
}

/* ============================================
   MODALS (PRODUCT, CART, CHECKOUT, POLICY)
   ============================================ */
.modal-overlay, .checkout-overlay, .order-confirmation-overlay, .policy-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}
.modal-overlay.active, .checkout-overlay.active, .order-confirmation-overlay.active, .policy-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content, .checkout-container, .order-confirmation, .policy-modal {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    color: #0f172a;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-close, .checkout-close, .policy-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    color: #475569;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
}
.modal-close:hover, .checkout-close:hover, .policy-modal-close:hover {
    background: #fee2e2;
    color: #dc2626;
    border-color: #fca5a5;
}

.modal-content { width: 90%; max-width: 820px; }
.modal-product { display: grid; grid-template-columns: 1fr 1fr; }
.modal-image-section {
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f8fafc;
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}
.modal-image-section img {
    width: 100%;
    max-height: 380px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.modal-details { padding: 32px; }
.modal-details .product-brand { font-size: 12px; margin-bottom: 6px; }
.modal-details .product-name { font-size: 22px; margin-bottom: 12px; -webkit-line-clamp: unset; }
.modal-details .deal-price { font-size: 28px; }
.modal-specs { margin: 20px 0; }
.modal-specs h4 { font-size: 14px; font-weight: 800; color: #475569; margin-bottom: 10px; text-transform: uppercase; }
.spec-row { display: flex; padding: 8px 0; border-bottom: 1px solid #f1f5f9; font-size: 13px; }
.spec-label { width: 130px; flex-shrink: 0; color: #64748b; font-weight: 600; }
.spec-value { color: #0f172a; flex: 1; }

.modal-add-btn {
    width: 100%;
    padding: 14px 0;
    background: var(--accent-orange);
    color: #fff;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-weight: 800;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
}
.modal-add-btn:hover { background: var(--accent-orange-hover); }

/* Cart Drawer */
.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(3px);
    z-index: 3000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s ease;
}
.cart-overlay.active { opacity: 1; visibility: visible; }

.cart-drawer {
    position: fixed;
    top: 0;
    right: -440px;
    width: 440px;
    max-width: 100vw;
    height: 100vh;
    background: #ffffff;
    border-left: 1px solid var(--border-color);
    z-index: 3001;
    display: flex;
    flex-direction: column;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
}
.cart-drawer.active { right: 0; }

.cart-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid var(--border-color);
}
.cart-header h2 { font-size: 20px; font-weight: 800; display: flex; align-items: center; gap: 8px; }
.cart-close { background: #f1f5f9; border: 1px solid var(--border-color); color: #475569; width: 32px; height: 32px; border-radius: 50%; font-size: 16px; }
.cart-close:hover { background: #fee2e2; color: #dc2626; }

.shipping-progress { padding: 12px 24px; background: #f8fafc; border-bottom: 1px solid var(--border-color); }
.shipping-text { font-size: 13px; color: #475569; margin-bottom: 6px; }
.shipping-text .amount { color: #15803d; font-weight: 800; }
.progress-bar { width: 100%; height: 6px; background: #e2e8f0; border-radius: var(--radius-full); overflow: hidden; }
.progress-fill { height: 100%; background: linear-gradient(90deg, var(--accent-blue), var(--accent-green)); border-radius: var(--radius-full); transition: width 0.4s ease; }

.cart-items { flex: 1; overflow-y: auto; padding: 16px 24px; }
.cart-empty { text-align: center; padding: 60px 0; color: var(--text-muted); }
.cart-empty .empty-icon { font-size: 48px; margin-bottom: 12px; }

.cart-item { display: flex; gap: 14px; padding: 14px 0; border-bottom: 1px solid #f1f5f9; }
.cart-item-image { width: 72px; height: 72px; border-radius: var(--radius-sm); object-fit: cover; background: #f8fafc; border: 1px solid #e2e8f0; flex-shrink: 0; }
.cart-item-details { flex: 1; min-width: 0; }
.cart-item-name { font-size: 14px; font-weight: 700; color: #0f172a; margin-bottom: 4px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.cart-item-price { font-size: 15px; font-weight: 800; color: var(--accent-blue); margin-bottom: 8px; }
.cart-item-controls { display: flex; align-items: center; }
.qty-btn { width: 28px; height: 28px; background: #f1f5f9; border: 1px solid #cbd5e1; color: #0f172a; font-size: 15px; font-weight: 800; display: flex; align-items: center; justify-content: center; }
.qty-btn:first-child { border-radius: 6px 0 0 6px; }
.qty-btn:last-child { border-radius: 0 6px 6px 0; }
.qty-btn:hover { background: #e2e8f0; }
.qty-value { width: 36px; height: 28px; display: flex; align-items: center; justify-content: center; background: #ffffff; border-top: 1px solid #cbd5e1; border-bottom: 1px solid #cbd5e1; font-size: 13px; font-weight: 700; color: #0f172a; }
.cart-item-remove { background: none; color: #94a3b8; font-size: 18px; padding: 4px; align-self: flex-start; margin-left: auto; }
.cart-item-remove:hover { color: #dc2626; }

.coupon-section { padding: 14px 24px; border-top: 1px solid var(--border-color); background: #f8fafc; }
.coupon-input-row { display: flex; gap: 8px; }
.coupon-input-row input { flex: 1; text-transform: uppercase; font-weight: 700; font-size: 13px; padding: 8px 12px; }
.coupon-apply-btn { background: var(--accent-blue); color: #fff; padding: 8px 18px; border-radius: var(--radius-sm); font-weight: 700; font-size: 13px; }
.coupon-apply-btn:hover { background: var(--accent-blue-hover); }
.coupon-message { font-size: 12px; margin-top: 6px; display: none; }
.coupon-message.success { color: #15803d; display: block; }
.coupon-message.error { color: #dc2626; display: block; }
.coupon-applied { display: flex; align-items: center; justify-content: space-between; background: #dcfce7; border: 1px solid #86efac; padding: 8px 12px; border-radius: var(--radius-sm); font-size: 13px; color: #15803d; font-weight: 700; }
.coupon-remove-btn { background: none; color: #dc2626; font-size: 18px; padding: 0 4px; }

.cart-footer { border-top: 1px solid var(--border-color); padding: 20px 24px; background: #ffffff; }
.cart-summary-row { display: flex; justify-content: space-between; font-size: 14px; margin-bottom: 8px; color: #475569; }
.cart-summary-row.discount { color: #15803d; font-weight: 700; }
.cart-summary-row.total { font-size: 20px; font-weight: 900; color: #0f172a; margin-top: 12px; padding-top: 12px; border-top: 1px solid var(--border-color); }
.checkout-btn { width: 100%; padding: 15px 0; background: var(--accent-orange); color: #fff; border-radius: var(--radius-sm); font-size: 16px; font-weight: 800; margin-top: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3); }
.checkout-btn:hover { background: var(--accent-orange-hover); }

/* Checkout Modal */
.checkout-container { width: 90%; max-width: 580px; padding: 34px; }
.checkout-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.checkout-header h2 { font-size: 22px; font-weight: 800; }
.checkout-form .form-group { margin-bottom: 16px; }
.checkout-form label { display: block; font-size: 13px; font-weight: 700; color: #334155; margin-bottom: 6px; }
.checkout-form label .required { color: #dc2626; }
.checkout-form input, .checkout-form select { width: 100%; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.payment-options { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.payment-option { display: flex; align-items: center; gap: 12px; padding: 14px 16px; background: #f8fafc; border: 2px solid var(--border-color); border-radius: var(--radius-sm); cursor: pointer; transition: all 0.2s; }
.payment-option:hover { border-color: var(--accent-blue); background: #f0f7ff; }
.payment-option.selected { border-color: var(--accent-blue); background: #eff6ff; }
.payment-option input[type="radio"] { display: none; }
.payment-radio { width: 20px; height: 20px; border: 2px solid #94a3b8; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.payment-option.selected .payment-radio { border-color: var(--accent-blue); }
.payment-option.selected .payment-radio::after { content: ''; width: 10px; height: 10px; background: var(--accent-blue); border-radius: 50%; }
.payment-label { font-weight: 800; font-size: 14px; color: #0f172a; }
.payment-desc { font-size: 12px; color: #64748b; }

.place-order-btn { width: 100%; padding: 16px 0; background: var(--accent-green); color: #fff; border-radius: var(--radius-sm); font-size: 16px; font-weight: 800; display: flex; align-items: center; justify-content: center; gap: 8px; box-shadow: 0 4px 12px rgba(22, 163, 74, 0.3); }
.place-order-btn:hover { background: #15803d; }
.form-error { font-size: 12px; color: #dc2626; margin-top: 4px; display: none; }

/* Order Confirmation Modal */
.order-confirmation { width: 90%; max-width: 620px; padding: 40px 32px; text-align: center; }
.order-success-icon { width: 72px; height: 72px; background: #dcfce7; border: 2px solid var(--accent-green); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 36px; color: var(--accent-green); margin: 0 auto 20px; }
.order-confirmation h2 { font-size: 26px; font-weight: 900; color: #0f172a; margin-bottom: 8px; }
.order-confirmation .order-id span { color: var(--accent-blue); font-weight: 800; }
.invoice-table { width: 100%; border-collapse: collapse; text-align: left; margin: 20px 0; font-size: 14px; }
.invoice-table th { background: #f8fafc; padding: 10px 14px; font-weight: 700; color: #475569; border-bottom: 1px solid var(--border-color); }
.invoice-table td { padding: 10px 14px; border-bottom: 1px solid #f1f5f9; color: #0f172a; }
.invoice-total { display: flex; justify-content: space-between; padding: 14px 0; font-size: 20px; font-weight: 900; border-top: 2px solid var(--accent-blue); margin-top: 10px; color: #0f172a; }
.order-actions { display: flex; gap: 12px; justify-content: center; margin-top: 24px; }
.order-actions button { padding: 12px 24px; border-radius: var(--radius-sm); font-weight: 700; font-size: 14px; }
.print-btn { background: #f1f5f9; border: 1px solid var(--border-color); color: #0f172a; }
.print-btn:hover { background: #e2e8f0; }
.continue-btn { background: var(--accent-blue); color: #fff; }
.continue-btn:hover { background: var(--accent-blue-hover); }

/* Policy Modal */
.policy-modal { width: 90%; max-width: 760px; padding: 36px; }
.policy-modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 20px; }
.policy-modal-header h2 { font-size: 24px; font-weight: 800; color: #0f172a; }
.policy-modal-body { color: #334155; font-size: 14px; line-height: 1.75; }
.policy-modal-body h2 { font-size: 20px; color: #0f172a; margin: 22px 0 10px; }
.policy-modal-body h3 { font-size: 16px; color: #0f172a; margin: 18px 0 8px; }
.policy-modal-body p { margin-bottom: 12px; }
.policy-modal-body ul { padding-left: 24px; margin-bottom: 12px; }
.policy-modal-body ul li { margin-bottom: 6px; list-style: disc; }
.policy-modal-body table { width: 100%; border-collapse: collapse; margin: 14px 0; }
.policy-modal-body table th, .policy-modal-body table td { padding: 10px 14px; border: 1px solid var(--border-color); text-align: left; font-size: 13px; }
.policy-modal-body table th { background: #f8fafc; color: #0f172a; font-weight: 700; }

/* Features Strip */
.features-strip { background: #ffffff; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); padding: 36px 24px; }
.features-grid { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.feature-item { display: flex; align-items: center; gap: 16px; }
.feature-icon-wrap { width: 52px; height: 52px; border-radius: var(--radius-md); background: #eff6ff; border: 1px solid #bfdbfe; display: flex; align-items: center; justify-content: center; font-size: 24px; flex-shrink: 0; }
.feature-title { font-size: 15px; font-weight: 800; color: #0f172a; margin-bottom: 2px; }
.feature-desc { font-size: 12px; color: var(--text-muted); }

/* Footer */
.footer { background: #0f172a; color: #94a3b8; border-top: 1px solid var(--border-color); padding: 56px 24px 28px; }
.footer-content { max-width: var(--max-width); margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .logo .logo-text { color: #ffffff; }
.footer-brand p { font-size: 13px; color: #94a3b8; line-height: 1.65; margin-bottom: 18px; max-width: 380px; }
.footer-column h4 { font-size: 14px; font-weight: 800; color: #ffffff; margin-bottom: 18px; text-transform: uppercase; letter-spacing: 0.8px; }
.footer-column ul li { margin-bottom: 10px; }
.footer-column ul li a { color: #94a3b8; font-size: 13px; transition: all 0.2s; }
.footer-column ul li a:hover { color: #60a5fa; padding-left: 4px; }
.footer-bottom { max-width: var(--max-width); margin: 0 auto; padding-top: 28px; margin-top: 36px; border-top: 1px solid #1e293b; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 14px; }
.footer-bottom p { font-size: 12px; color: #64748b; }
.footer-badges { display: flex; gap: 14px; flex-wrap: wrap; }
.footer-badge { display: flex; align-items: center; gap: 6px; font-size: 12px; color: #94a3b8; background: #1e293b; padding: 4px 10px; border-radius: var(--radius-full); }

/* Standalone Policy Pages */
.policy-page-container {
    max-width: 900px;
    margin: calc(var(--header-height) + var(--top-bar-height) + 36px) auto 60px;
    padding: 0 24px;
    min-height: calc(100vh - 450px);
}
.policy-card {
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 44px;
    box-shadow: var(--shadow-sm);
}
.policy-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #eff6ff;
    border: 1px solid #bfdbfe;
    color: #1d4ed8;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 16px;
}
.policy-title { font-size: 34px; font-weight: 900; color: #0f172a; line-height: 1.2; margin-bottom: 8px; }
.policy-meta { font-size: 13px; color: var(--text-muted); border-bottom: 1px solid var(--border-color); padding-bottom: 16px; margin-bottom: 28px; display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.policy-body { color: #334155; font-size: 15px; line-height: 1.8; }
.policy-body h2 { font-size: 22px; font-weight: 800; color: #0f172a; margin: 32px 0 12px; border-bottom: 1px solid var(--border-color); padding-bottom: 8px; }
.policy-body h2:first-of-type { margin-top: 0; }
.policy-body h3 { font-size: 17px; font-weight: 700; color: #0f172a; margin: 22px 0 8px; }
.policy-body p { margin-bottom: 16px; }
.policy-body ul, .policy-body ol { margin: 12px 0 18px 24px; }
.policy-body ul li { list-style: disc; margin-bottom: 8px; }
.policy-body ol li { list-style: decimal; margin-bottom: 8px; }
.policy-body table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 14px; background: #ffffff; border-radius: var(--radius-sm); overflow: hidden; border: 1px solid var(--border-color); }
.policy-body th, .policy-body td { padding: 12px 16px; text-align: left; border-bottom: 1px solid var(--border-color); }
.policy-body th { background: #f8fafc; color: #0f172a; font-weight: 700; }
.policy-body tr:last-child td { border-bottom: none; }
.legal-box { background: #f8fafc; border: 1px solid var(--border-color); border-left: 4px solid var(--accent-blue); border-radius: var(--radius-sm); padding: 20px 24px; margin: 20px 0; }
.legal-box p { margin-bottom: 8px; }
.legal-box p:last-child { margin-bottom: 0; }
.policy-nav-bar { display: flex; gap: 12px; align-items: center; flex-wrap: wrap; margin-top: 36px; padding-top: 24px; border-top: 1px solid var(--border-color); }
.btn-secondary { display: inline-flex; align-items: center; gap: 8px; background: #ffffff; border: 1px solid var(--border-color); color: #0f172a; padding: 10px 18px; border-radius: var(--radius-sm); font-size: 14px; font-weight: 700; box-shadow: var(--shadow-xs); transition: all 0.2s; }
.btn-secondary:hover { background: #eff6ff; border-color: var(--accent-blue); color: var(--accent-blue); }

/* Toast */
.toast {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #0f172a;
    color: #fff;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 700;
    z-index: 9999;
    opacity: 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-lg);
}
.toast.show { transform: translateX(-50%) translateY(0); opacity: 1; }

/* ============================================
   MOBILE SEARCH CONTAINER & FLOATING CART BAR
   ============================================ */
.mobile-search-container {
    display: none;
    padding: 10px 16px;
    background: #ffffff;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: calc(var(--header-height) + var(--top-bar-height));
    z-index: 999;
}

.mobile-search-container .search-input-wrapper {
    width: 100%;
}

.mobile-search-container input {
    width: 100%;
    padding: 9px 14px 9px 38px;
    border-radius: var(--radius-full);
    background: #f1f5f9;
    border: 1px solid var(--border-color);
    font-size: 14px;
    color: var(--text-primary);
}
.mobile-search-container input:focus {
    background: #ffffff;
    border-color: var(--accent-blue);
}

/* Floating Bottom Cart Bar for Mobile */
.mobile-floating-cart {
    position: fixed;
    bottom: 16px;
    left: 14px;
    right: 14px;
    background: #0f172a;
    color: #ffffff;
    padding: 12px 18px;
    border-radius: var(--radius-full);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.4);
    display: none;
    align-items: center;
    justify-content: space-between;
    z-index: 2500;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s;
    animation: slideUpFloat 0.35s ease;
}

@keyframes slideUpFloat {
    from { transform: translateY(80px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.floating-cart-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-cart-icon {
    font-size: 20px;
}

.floating-cart-count {
    font-size: 11px;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.floating-cart-total {
    font-size: 16px;
    font-weight: 900;
    color: #38bdf8;
    line-height: 1.1;
}

.floating-cart-action {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-orange);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 13px;
    font-weight: 800;
    box-shadow: 0 2px 8px rgba(234, 88, 12, 0.3);
}

@media (min-width: 769px) {
    .mobile-floating-cart {
        display: none !important;
    }
}

/* ============================================
   RESPONSIVE DESIGN — TABLETS (<= 992px)
   ============================================ */
@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 16px;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .vip-club-card {
        grid-template-columns: 1fr;
        padding: 32px 24px;
    }
}

/* ============================================
   RESPONSIVE DESIGN — MOBILE & PHONES (<= 768px)
   ============================================ */
@media (max-width: 768px) {
    :root {
        --header-height: 60px;
        --top-bar-height: 34px;
    }

    /* Top Announcement Bar */
    .top-bar {
        font-size: 11px;
        padding: 0 10px;
    }
    .top-bar .desktop-only {
        display: none !important;
    }
    .top-bar-content {
        gap: 10px;
    }

    /* Header */
    .header {
        padding: 0 16px;
    }
    .header-search {
        display: none;
    }
    .logo {
        font-size: 22px;
    }
    .logo-fire {
        font-size: 24px;
    }
    .mobile-search-container {
        display: block;
    }

    .cart-pill-btn {
        padding: 7px 14px;
        font-size: 13px;
        gap: 6px;
    }
    .cart-pill-total {
        display: none;
    }

    /* Hero Section */
    .hero {
        padding: 28px 16px 24px;
    }
    .hero-tag {
        font-size: 11px;
        padding: 4px 10px;
        margin-bottom: 12px;
    }
    .hero h1 {
        font-size: 30px;
        line-height: 1.18;
        margin-bottom: 12px;
    }
    .hero p {
        font-size: 14px;
        margin-bottom: 20px;
        line-height: 1.5;
    }

    .deal-countdown-box {
        width: 100%;
        justify-content: space-between;
        padding: 10px 14px;
        margin-bottom: 20px;
        gap: 8px;
    }
    .countdown-label {
        font-size: 11.5px;
    }
    .digit-box {
        font-size: 15px;
        min-width: 36px;
        padding: 4px 6px;
    }
    .digit-unit {
        font-size: 8px;
    }

    .hero-actions {
        width: 100%;
        gap: 10px;
    }
    .btn-hero-primary, .btn-hero-secondary {
        flex: 1;
        padding: 12px 14px;
        font-size: 13.5px;
        justify-content: center;
        text-align: center;
    }

    /* Spotlight Card */
    .spotlight-card {
        padding: 18px;
        border-radius: var(--radius-md);
    }
    .spotlight-image-wrap {
        height: 180px;
        margin-bottom: 14px;
    }
    .spotlight-title {
        font-size: 17px;
        margin-bottom: 8px;
    }
    .spotlight-deal-price {
        font-size: 22px;
    }
    .spotlight-mrp {
        font-size: 14px;
    }
    .spotlight-save-badge {
        font-size: 11px;
    }
    .btn-spotlight-buy {
        padding: 11px 0;
        font-size: 13.5px;
    }

    /* Brands Marquee on Mobile */
    .brands-strip {
        padding: 12px 16px;
    }
    .brands-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .brands-label {
        font-size: 11px;
    }
    .brands-list {
        width: 100%;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding-bottom: 4px;
        gap: 8px;
        scrollbar-width: none;
        -webkit-overflow-scrolling: touch;
    }
    .brands-list::-webkit-scrollbar {
        display: none;
    }
    .brand-badge {
        flex-shrink: 0;
        padding: 5px 12px;
        font-size: 11.5px;
    }

    /* Categories Tabs */
    .categories-section {
        padding: 22px 0 12px;
    }
    .section-container {
        padding: 0 14px;
    }
    .categories-header {
        margin-bottom: 12px;
    }
    .categories-title {
        font-size: 17px;
    }
    .category-filters {
        gap: 8px;
        padding-bottom: 6px;
        -webkit-overflow-scrolling: touch;
    }
    .category-btn {
        padding: 8px 14px;
        font-size: 12.5px;
    }

    /* Products Grid — 2-Column Compact Layout */
    .products-section {
        padding: 16px 0 40px;
    }
    .section-header {
        margin-bottom: 16px;
    }
    .section-title {
        font-size: 20px;
    }
    .section-title .count {
        font-size: 12px;
        padding: 2px 8px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card {
        border-radius: var(--radius-sm);
    }
    .card-badge-top {
        top: 6px;
        left: 6px;
        font-size: 9px;
        padding: 2px 6px;
        border-radius: 4px;
    }
    .card-timer-badge {
        display: none; /* Hide timer badge on 2-col mobile cards to avoid cluttering */
    }

    .product-info {
        padding: 10px 10px 12px;
    }
    .product-brand {
        font-size: 9.5px;
        margin-bottom: 2px;
    }
    .product-name {
        font-size: 12.5px;
        line-height: 1.3;
        min-height: 32px;
        margin-bottom: 6px;
    }

    .product-rating {
        margin-bottom: 6px;
        gap: 4px;
    }
    .rating-stars {
        font-size: 11px;
    }
    .rating-value {
        font-size: 11px;
    }
    .rating-count {
        font-size: 10px;
    }

    .card-claim-wrap {
        margin-bottom: 8px;
    }
    .card-claim-label {
        font-size: 10px;
        margin-bottom: 3px;
    }
    .card-claim-bar {
        height: 3px;
    }

    .product-highlights {
        display: none; /* Hide highlight pills on small cards */
    }

    .product-pricing {
        margin-bottom: 10px;
        gap: 4px;
    }
    .deal-price {
        font-size: 16px;
    }
    .original-price {
        font-size: 11px;
    }
    .save-amount {
        font-size: 10px;
        padding: 1px 4px;
    }

    .add-to-cart-btn {
        padding: 9px 0;
        font-size: 12.5px;
        border-radius: 6px;
    }

    /* Customer Reviews */
    .reviews-section {
        padding: 36px 0;
    }
    .reviews-header {
        margin-bottom: 24px;
    }
    .reviews-badge {
        font-size: 11px;
        padding: 3px 10px;
    }
    .reviews-title {
        font-size: 22px;
    }
    .reviews-subtitle {
        font-size: 13.5px;
    }
    .review-card {
        padding: 18px 16px;
    }
    .review-text {
        font-size: 13px;
        margin-bottom: 14px;
    }

    /* VIP Club */
    .vip-club-section {
        padding: 24px 0 36px;
    }
    .vip-club-card {
        padding: 24px 16px;
        border-radius: var(--radius-md);
        gap: 20px;
    }
    .vip-content h3 {
        font-size: 20px;
        line-height: 1.25;
    }
    .vip-content p {
        font-size: 13px;
    }
    .vip-input-row {
        flex-direction: column;
        gap: 8px;
    }
    .btn-vip-join {
        width: 100%;
        padding: 12px;
        font-size: 14px;
    }

    /* Features Strip */
    .features-strip {
        padding: 24px 14px;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px 10px;
    }
    .feature-item {
        gap: 10px;
    }
    .feature-icon-wrap {
        width: 40px;
        height: 40px;
        font-size: 18px;
        border-radius: var(--radius-sm);
    }
    .feature-title {
        font-size: 13px;
    }
    .feature-desc {
        font-size: 11px;
    }

    /* Footer — COMPACT 2-COLUMN MOBILE LAYOUT */
    .footer {
        padding: 36px 14px 24px;
    }
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 24px 14px;
    }
    .footer-brand {
        grid-column: 1 / -1;
    }
    .footer-brand p {
        font-size: 12px;
        margin-bottom: 12px;
        max-width: 100%;
    }
    .footer-column h4 {
        font-size: 13px;
        margin-bottom: 10px;
    }
    .footer-column ul li {
        margin-bottom: 8px;
    }
    .footer-column ul li a {
        font-size: 12px;
    }
    .footer-column:last-child {
        grid-column: 1 / -1;
        background: #1e293b;
        padding: 14px;
        border-radius: var(--radius-sm);
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding-top: 20px;
        margin-top: 24px;
    }
    .footer-badges {
        justify-content: center;
        gap: 8px;
    }
    .footer-badge {
        font-size: 11px;
        padding: 3px 8px;
    }

    /* Modals & Cart Drawer */
    .modal-product {
        grid-template-columns: 1fr;
    }
    .modal-image-section {
        padding: 20px;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    }
    .modal-image-section img {
        max-height: 260px;
    }
    .modal-details {
        padding: 20px;
    }
    .modal-details .product-name {
        font-size: 18px;
    }
    .modal-details .deal-price {
        font-size: 24px;
    }

    .cart-drawer {
        width: 100vw;
        right: -100vw;
    }
    .cart-header {
        padding: 16px 18px;
    }
    .shipping-progress {
        padding: 10px 18px;
    }
    .cart-items {
        padding: 12px 18px;
    }
    .coupon-section {
        padding: 12px 18px;
    }
    .cart-footer {
        padding: 16px 18px;
    }

    .checkout-container {
        width: 95%;
        padding: 22px 16px;
    }
    .checkout-header h2 {
        font-size: 19px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    .checkout-form input, .checkout-form select {
        font-size: 16px; /* Prevents auto-zoom on iOS */
    }

    .order-confirmation {
        width: 95%;
        padding: 28px 16px;
    }
    .order-confirmation h2 {
        font-size: 22px;
    }

    /* Policy Pages */
    .policy-page-container {
        padding: 0 12px;
        margin-top: calc(var(--header-height) + var(--top-bar-height) + 16px);
    }
    .policy-card {
        padding: 22px 14px;
        border-radius: var(--radius-md);
    }
    .policy-title {
        font-size: 24px;
    }
    .policy-body {
        font-size: 13.5px;
    }
    .policy-body h2 {
        font-size: 18px;
        margin: 24px 0 10px;
    }
    .policy-body h3 {
        font-size: 15px;
    }
    .policy-body table th, .policy-body table td {
        padding: 8px 10px;
        font-size: 12px;
    }
    .legal-box {
        padding: 16px 14px;
    }
    .policy-nav-bar {
        gap: 8px;
    }
    .btn-secondary {
        font-size: 12.5px;
        padding: 8px 14px;
    }
}

/* ============================================
   EXTRA SMALL SCREENS (<= 380px)
   ============================================ */
@media (max-width: 380px) {
    .logo { font-size: 19px; }
    .hero h1 { font-size: 26px; }
    .products-grid { gap: 8px; }
    .product-info { padding: 8px 6px 10px; }
    .product-name { font-size: 11.5px; min-height: 30px; }
    .deal-price { font-size: 14.5px; }
    .add-to-cart-btn { font-size: 11.5px; padding: 7px 0; }
}

