:root {
    --primary: #e02020;
    --primary-dark: #b91c1c;
    --primary-light: #fee2e2;
    --secondary: #f97316;
    --secondary-dark: #ea580c;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #0f0f0f;
    --dark-800: #1a1a1a;
    --gray: #64748b;
    --gray-light: #f1f5f9;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition-fast: 150ms ease;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

* {
    transition: var(--transition);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--dark);
    background: var(--white);
    padding-bottom: 100px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6, .fw-black, .fw-800 {
    font-family: 'Rajdhani', 'Inter', -apple-system, sans-serif;
    letter-spacing: 0.3px;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
}

.navbar {
    box-shadow: var(--shadow-sm);
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid #e02020;
    padding: 0.75rem 0;
}

.navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: #fff;
    letter-spacing: -0.5px;
}

.nav-link {
    font-weight: 600;
    color: rgba(255,255,255,0.75) !important;
    padding: 0.625rem 1.25rem !important;
    border-radius: var(--radius-md);
    font-size: 0.95rem;
}

.nav-link:hover, .nav-link.active {
    color: #fff !important;
    background: rgba(224,32,32,0.18);
}

/* Override for Bootstrap nav-tabs (product page tabs etc.) — white bg context */
.nav-tabs .nav-link {
    color: #555 !important;
    background: transparent;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.nav-tabs .nav-link:hover {
    color: var(--primary) !important;
    background: rgba(224,32,32,0.06);
}

.nav-tabs .nav-link.active {
    color: var(--primary) !important;
    background: #fff;
    border-color: #dee2e6 #dee2e6 #fff;
}

/* ═══════════════════════════════════════════════════════════
   HEADER — two-row layout
   Row 1: Logo | Instagram | Search | Icons
   Row 2: Nav links
═══════════════════════════════════════════════════════════ */

/* ── Base ────────────────────────────────────────────────── */
.sh-header {
    background: rgba(15,15,15,0.98);
    box-shadow: 0 2px 12px rgba(0,0,0,0.4);
    z-index: 1030;
}

/* ══════════════════════════════════════════════════════════
   ROW 1
══════════════════════════════════════════════════════════ */
.sh-row1 {
    padding: 0.55rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sh-row1__inner {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Logo */
.sh-logo {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}
.sh-logo img {
    height: 48px;
    width: auto;
    max-width: 190px;
    object-fit: contain;
    display: block;
}

/* Instagram pill */
.sh-insta {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    text-decoration: none;
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    border: 1.5px solid rgba(193,53,132,0.5);
    transition: border-color 0.2s, background 0.2s;
    white-space: nowrap;
}
.sh-insta:hover {
    background: rgba(193,53,132,0.12);
    border-color: #c13584;
}
.sh-insta__icon {
    font-size: 1rem;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.sh-insta__label {
    font-size: 0.8rem;
    font-weight: 700;
    color: #e879c0;
    letter-spacing: 0.02em;
}

/* Search bar */
.sh-search {
    flex: 1 1 0;
    min-width: 0;
    position: relative;
}
.sh-search__wrap {
    display: flex;
    align-items: center;
    height: 42px;
    background: rgba(255,255,255,0.09);
    border: 1.5px solid rgba(255,255,255,0.16);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.2s, background 0.2s;
}
.sh-search__wrap:focus-within {
    background: rgba(255,255,255,0.13);
    border-color: rgba(224,32,32,0.55);
}
.sh-search__cat {
    flex: 0 0 auto;
    height: 100%;
    background: rgba(255,255,255,0.07);
    border: none;
    border-right: 1.5px solid rgba(255,255,255,0.13);
    color: rgba(255,255,255,0.78);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 0 1.2rem 0 0.7rem;
    min-width: 68px;
    max-width: 115px;
    cursor: pointer;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='rgba(255,255,255,0.45)'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.4rem center;
    background-color: rgba(255,255,255,0.07);
}
.sh-search__cat option { background: #1a1a1a; color: #fff; }
.sh-search__input {
    flex: 1 1 0;
    min-width: 0;
    height: 100%;
    background: transparent;
    border: none;
    color: #fff;
    font-size: 0.88rem;
    padding: 0 0.65rem;
    outline: none;
}
.sh-search__input::placeholder { color: rgba(255,255,255,0.35); }
.sh-search__btn {
    flex: 0 0 42px;
    height: 100%;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    cursor: pointer;
    transition: color 0.18s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sh-search__btn:hover { color: #e02020; }

/* Live search results */
.sh-search__live {
    position: absolute;
    top: calc(100% + 5px);
    left: 0; right: 0;
    background: #1c1c1c;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    overflow: hidden;
    z-index: 1100;
    box-shadow: 0 8px 28px rgba(0,0,0,0.55);
}

/* Desktop search hidden on mobile */
/* .sh-search--desktop { display: flex; } */

/* Icon group */
.sh-icons {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 0.15rem;
    margin-left: auto;
}
.sh-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 9px;
    background: transparent;
    border: none;
    color: rgba(255,255,255,0.78);
    font-size: 1.22rem;
    text-decoration: none;
    cursor: pointer;
    transition: background 0.17s, color 0.17s;
    position: relative;
    flex-shrink: 0;
}
.sh-icon-btn:hover {
    background: rgba(224,32,32,0.18);
    color: #fff;
}
.sh-icon-btn--cart { }
.sh-cart-badge {
    position: absolute;
    top: 2px; right: 2px;
    min-width: 17px;
    height: 17px;
    padding: 0 3px;
    background: #e02020;
    color: #fff;
    border-radius: 999px;
    font-size: 0.6rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    pointer-events: none;
}
.sh-hamburger { font-size: 1.4rem; }

/* Account dropdown */
.sh-dropdown {
    background: #1a1a1a;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 0.35rem;
    min-width: 195px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.5);
}
.sh-dropdown__item {
    border-radius: 7px;
    padding: 0.6rem 0.9rem;
    color: rgba(255,255,255,0.82) !important;
    font-size: 0.88rem;
    font-weight: 500;
    transition: background 0.14s;
}
.sh-dropdown__item:hover { background: rgba(255,255,255,0.08); }

/* ══════════════════════════════════════════════════════════
   MOBILE ROW 1b — always-visible search bar
══════════════════════════════════════════════════════════ */
.sh-mobile-search {
    padding: 0.45rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}
.sh-search--mobile .sh-search__wrap {
    height: 42px;
    border-radius: 10px;
}

/* ══════════════════════════════════════════════════════════
   ROW 2 — Desktop nav bar
══════════════════════════════════════════════════════════ */
.sh-row2 {
    background: rgba(10,10,10,0.95);
    border-top: 1px solid rgba(255,255,255,0.05);
}
.sh-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    align-items: stretch;
    min-height: 40px;
}
.sh-nav__item {
    position: relative;
    display: flex;
    align-items: stretch;
}
.sh-nav__item--push { margin-left: auto; }
.sh-nav__link {
    display: inline-flex;
    align-items: center;
    padding: 0 0.65rem;
    color: rgba(255,255,255,0.75);
    font-size: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: color 0.16s, background 0.16s;
    position: relative;
}
.sh-nav__link::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%; right: 50%;
    height: 2px;
    background: #e02020;
    transition: left 0.2s, right 0.2s;
}
.sh-nav__link:hover,
.sh-nav__link.active {
    color: #fff;
}
.sh-nav__link:hover::after,
.sh-nav__link.active::after {
    left: 0.6rem;
    right: 0.6rem;
}
.sh-nav__chev {
    font-size: 0.62rem;
    margin-left: 0.28rem;
    transition: transform 0.2s;
}
.sh-nav__item--dd:hover .sh-nav__chev { transform: rotate(180deg); }

/* ── Nav — fluid scaling between 768px and 1420px only ───────
   Below 768 the nav is hidden (mobile menu). Above 1420 the
   original sizes apply. Only this range needs to be adjusted. */
@media (min-width: 768px) and (max-width: 1420px) {
    .sh-nav {
        flex-wrap: nowrap;
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    .sh-nav::-webkit-scrollbar { display: none; }
    .sh-row2 .container { overflow: visible; }

    .sh-nav__link {
        /* Scale font and padding linearly from 768 → 1420 */
        font-size: clamp(0.58rem, 0.6vw + 0.1rem, 0.75rem);
        padding: 0 clamp(0.28rem, 0.4vw, 0.65rem);
        letter-spacing: 0.02em;
    }
    .sh-nav__chev {
        font-size: 0.55rem;
        margin-left: 0.18rem;
    }
}

/* Sale badge */
.sh-nav__link--sale {
    color: #e02020 !important;
    font-weight: 800;
}
.sh-nav__link--sale:hover {
    color: #fff !important;
    background: #e02020 !important;
}
.sh-nav__link--sale::after { display: none; }

/* Categories hover dropdown */
.sh-nav__dropdown {
    display: none;
    position: absolute;
    top: 100%; left: 0;
    background: #1c1c1c;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 0 0 10px 10px;
    list-style: none;
    padding: 0.35rem;
    margin: 0;
    min-width: 195px;
    z-index: 1000;
    box-shadow: 0 8px 28px rgba(0,0,0,0.5);
}
.sh-nav__item--dd:hover .sh-nav__dropdown { display: block; }
.sh-nav__dd-item {
    display: block;
    padding: 0.55rem 0.9rem;
    color: rgba(255,255,255,0.78);
    font-size: 0.86rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 7px;
    transition: background 0.14s, color 0.14s;
}
.sh-nav__dd-item:hover {
    background: rgba(224,32,32,0.14);
    color: #fff;
}

/* ══════════════════════════════════════════════════════════
   MOBILE — Collapsible nav menu
══════════════════════════════════════════════════════════ */
.sh-nav-collapse {
    background: #111;
    border-top: 2px solid rgba(224,32,32,0.3);
}
.sh-mobile-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 1px;
}
.sh-mobile-nav__link {
    display: flex;
    align-items: center;
    padding: 0.72rem 0.9rem;
    color: rgba(255,255,255,0.82);
    font-size: 0.93rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: background 0.14s, color 0.14s;
}
.sh-mobile-nav__link:hover,
.sh-mobile-nav__link.active {
    background: rgba(224,32,32,0.14);
    color: #fff;
}
.sh-mobile-nav__link--group {
    color: #fff;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.sh-mobile-nav__link--group:hover { color: #e02020; background: rgba(255,255,255,0.04); }
.sh-mobile-nav__link--sub {
    padding-left: 1.6rem;
    font-size: 0.86rem;
    font-weight: 500;
    color: rgba(255,255,255,0.6);
}
.sh-mobile-nav__link--sub:hover { color: #fff; }
.sh-mobile-nav__link--sale { color: #e02020 !important; font-weight: 800; }
.sh-mobile-nav__link--sale:hover { background: rgba(224,32,32,0.18) !important; color: #fff !important; }
.sh-mobile-nav__link--signup {
    background: #e02020;
    color: #fff !important;
    justify-content: center;
    margin-top: 0.25rem;
    font-weight: 700;
}
.sh-mobile-nav__link--signup:hover { background: #b91c1c !important; }
.sh-mobile-nav__link--danger { color: #f87171 !important; }
.sh-mobile-nav__link--admin  { color: #60a5fa !important; }
.sh-mobile-nav__sep {
    height: 1px;
    background: rgba(255,255,255,0.09);
    margin: 0.4rem 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 767px) {
    /* On mobile, hide desktop search — use sh-mobile-search instead */
    .sh-search--desktop { display: none !important; }

    .sh-row1__inner { gap: 0.6rem; }
    .sh-logo img { height: 40px; max-width: 160px; }
    .sh-icon-btn  { width: 38px; height: 38px; font-size: 1.15rem; }
    .sh-icons     { gap: 0.1rem; margin-left: auto; }
}

@media (max-width: 480px) {
    .sh-logo img  { height: 34px; max-width: 140px; }
    .sh-insta     { padding: 0.22rem 0.5rem; }
    .sh-insta__label { font-size: 0.75rem; }
}

@media (min-width: 768px) {
    /* On desktop, hide the always-visible mobile search row */
    .sh-mobile-search { display: none !important; }
}



.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-md);
    font-weight: 700;
    padding: 0.875rem 2rem;
}

.btn-outline-primary:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}
    background:
        linear-gradient(135deg, rgba(10,10,10,0.82) 0%, rgba(180,0,0,0.55) 60%, rgba(10,10,10,0.65) 100%),
        url('../images/hero-bg.webp') center center / cover no-repeat;
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
    min-height: 520px;
}

/* Override text colours so they read on the dark photo */
.hero-section .text-gray { color: rgba(226,232,240,0.9) !important; }
.hero-section .text-gradient {
    background: linear-gradient(135deg, #fca5a5 0%, #f87171 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero-section h1 { color: #fff; }
.hero-section .badge {
    background: rgba(255,255,255,0.15) !important;
    color: #fca5a5 !important;
    backdrop-filter: blur(8px);
}
.hero-section .border-top { border-color: rgba(255,255,255,0.15) !important; }
.hero-section .fw-bold.h3 { color: #fca5a5; }
.hero-section .text-gray.small,
.hero-section [style*="font-size: 0.9rem"] { color: rgba(203,213,225,0.85) !important; }

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 50%, rgba(37,99,235,0.18) 0%, transparent 65%);
    pointer-events: none;
}

@keyframes float {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@media (max-width: 767px) {
    .hero-section {
        padding: 3.5rem 0;
        min-height: auto;
        background-position: 70% center;
    }
}

/* Stroke Hub — Bike Accessories Store UI */
.transition-all { transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1); }
.transition-scale { transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1); }
.transition-colors { transition: color 0.2s ease, background-color 0.2s ease; }
.transition-translate { transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease; }

.shadow-hover:hover { box-shadow: 0 20px 40px rgba(0,0,0,0.08) !important; }
.group:hover .transition-scale { transform: scale(1.08); }
.group:hover .transition-translate { transform: translateY(0); opacity: 1 !important; }
.transition-translate { transform: translateY(10px); }

.aspect-ratio-1 { aspect-ratio: 1 / 1; }
.fw-black { font-weight: 900; }
.tracking-wider { letter-spacing: 0.05em; }
.line-clamp-1 { display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

.product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

.product-card .card-body {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-card .card-title {
    font-weight: 700;
    font-size: 1.05rem;
    color: #0f172a;
    margin-bottom: 0.5rem;
    line-height: 1.4;
    min-height: 2.8em; /* Force exactly 2 lines height */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .text-muted.small.line-clamp-1 {
    min-height: 1.5em; /* Force exactly 1 line height */
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card .mt-auto {
    margin-top: auto;
}

.product-card .aspect-ratio-1 {
    aspect-ratio: 1 / 1;
    background-color: #f8f9fa;
    width: 100%;
    overflow: hidden;
    border-radius: 1rem;
}

.product-card .card-img-top {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

/* Ensure price and button are aligned at bottom */
.product-card .price-section {
    min-height: 2.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.product-card .btn {
    width: 100%;
    border-radius: 50px;
    padding: 0.6rem 1rem;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-white { background: white; color: var(--dark); }
.btn-white:hover { background: #f8f9fa; transform: scale(1.1); }

.hover-text-primary:hover { color: var(--primary) !important; }

/* Filter Sidebar Modern Styles */
.shop-filter-column {
    position: sticky;
    top: 130px;
    align-self: flex-start;
}

.filter-sidebar {
    border: none;
    background: white;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    max-height: calc(100vh - 150px);
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #e2e8f0 transparent;
}

.filter-sidebar::-webkit-scrollbar {
    width: 4px;
}

.filter-sidebar::-webkit-scrollbar-track {
    background: transparent;
}

.filter-sidebar::-webkit-scrollbar-thumb {
    background: #e2e8f0;
    border-radius: 4px;
}

.filter-sidebar .card-header {
    border-bottom: 1px solid #f1f5f9;
    padding: 1.5rem;
}

.filter-sidebar .card-body {
    padding: 1.5rem;
}

/* Custom Checkbox/Radio styling */
.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

/* Range Slider Premium Look */
.dual-range-slider {
    position: relative;
    height: 6px;
    background: #e2e8f0;
    border-radius: 10px;
    margin: 20px 0;
}

.slider-range {
    position: absolute;
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
}

.slider-input {
    position: absolute;
    width: 100%;
    height: 6px;
    top: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
}

.slider-input::-webkit-slider-thumb {
    height: 20px;
    width: 20px;
    border-radius: 50%;
    background: white;
    border: 2px solid var(--primary);
    pointer-events: auto;
    -webkit-appearance: none;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

/* Shop Toolbar */
.shop-toolbar {
    background: white;
    border-radius: 16px;
    border: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
}

/* Mobile responsive adjustments */
@media (max-width: 991.98px) {
    .shop-filter-column {
        position: static;
    }

    .filter-sidebar {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1050;
        border-radius: 24px 24px 0 0;
        max-height: 85vh;
        overflow-y: auto;
        transform: translateY(100%);
        transition: transform 0.3s ease-in-out;
    }
    
    .filter-sidebar.show {
        transform: translateY(0);
    }
}
    background: #fef2f2;
    transform: scale(1.1);
}

.wishlist-btn i {
    color: #64748b;
    font-size: 0.85rem;
    transition: color 0.15s ease;
}

.wishlist-btn:hover i {
    color: #ef4444;
}

.mobile-bottom-nav {
    z-index: 1030;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.3);
    background: rgba(15,15,15,0.98);
    backdrop-filter: blur(20px);
    border-top: 1px solid rgba(224,32,32,0.3);
}

.mobile-bottom-nav a {
    color: rgba(255,255,255,0.6);
    font-weight: 600;
    transition: var(--transition-fast);
}

.mobile-bottom-nav a:hover, .mobile-bottom-nav a.active {
    color: #e02020;
}

.power-selector {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.power-option {
    padding: 0.875rem 1.25rem;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    cursor: pointer;
    font-weight: 700;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    background: white;
}

.power-option:hover, .power-option.active {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}

.section-title {
    font-weight: 800;
    font-size: 2.25rem;
    background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -1px;
}

.card {
    border: none;
    border-radius: var(--radius-lg);
}

.card-header {
    background: white;
    border-bottom: 1px solid #f1f5f9;
}

.benefit-card {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border: 1px solid rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.25rem;
    color: #fff;
    font-size: 2rem;
    box-shadow: var(--shadow-md);
}

footer {
    background: linear-gradient(180deg, #0f0f0f 0%, #000000 100%);
    color: #fff;
    position: relative;
}

.sticky-cart-btn {
    position: fixed;
    bottom: 100px;
    right: 24px;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: #e02020;
    color: #fff;
    border: none;
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    z-index: 1029;
    transition: var(--transition);
}

#newsletterBtn {
    background-color: #e02020;
    border-color: #e02020;
    color: #fff;
}

#newsletterBtn:hover {
    background-color: #b91c1c;
    border-color: #b91c1c;
}

.sticky-cart-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 25px 50px -12px rgba(224, 32, 32, 0.5);
}

@media (min-width: 768px) {
    .sticky-cart-btn {
        bottom: 40px;
        right: 40px;
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }
}

.price {
    font-weight: 800;
    font-size: 1.8rem;
    letter-spacing: -0.5px;
    color: #e02020;
}

.original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.25rem;
    font-weight: 600;
}

.btn-primary {
    background: linear-gradient(135deg, #e02020 0%, #b91c1c 100%);
    border: none;
    border-radius: 20px;
    font-weight: 800;
    padding: 1.1rem 2.5rem;
    box-shadow: 0 4px 15px rgba(224, 32, 32, 0.3);
    font-size: 1.2rem;
    letter-spacing: 0.2px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(224, 32, 32, 0.4);
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 20px;
    font-weight: 800;
    padding: 1.1rem 1.5rem;
}

/* Dual Range Slider Styles */
.dual-range-slider {
    position: relative;
    height: 6px;
    margin: 20px 0;
}

.slider-track {
    position: absolute;
    width: 100%;
    height: 6px;
    background: #e2e8f0;
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-range {
    position: absolute;
    height: 6px;
    background: var(--primary);
    border-radius: 3px;
    top: 50%;
    transform: translateY(-50%);
}

.slider-input {
    position: absolute;
    width: 100%;
    height: 6px;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    top: 50%;
    transform: translateY(-50%);
}

.slider-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 18px;
    height: 18px;
    background: var(--primary);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.slider-input::-webkit-slider-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(37, 99, 235, 0.3);
}

.slider-input::-moz-range-thumb {
    width: 18px;
    height: 18px;
    background: var(--primary);
    border: 3px solid white;
    border-radius: 50%;
    cursor: pointer;
    pointer-events: all;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    transition: all 0.2s ease;
}

.slider-input::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 0 3px 8px rgba(37, 99, 235, 0.3);
}

.slider-input:focus {
    outline: none;
}

.slider-input:focus::-webkit-slider-thumb {
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.slider-input:focus::-moz-range-thumb {
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

/* Product Gallery Styles */
.product-gallery .main-swiper {
    cursor: zoom-in;
}

.product-gallery .main-swiper .swiper-button-next,
.product-gallery .main-swiper .swiper-button-prev {
    color: var(--primary);
    background: rgba(255, 255, 255, 0.8);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.product-gallery .main-swiper .swiper-button-next:after,
.product-gallery .main-swiper .swiper-button-prev:after {
    font-size: 18px;
    font-weight: bold;
}

.product-gallery .thumb-swiper {
    padding: 10px 0;
}

.product-gallery .thumb-swiper .swiper-slide {
    opacity: 0.6;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1/1; /* Force equal-sized square boxes */
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.product-gallery .thumb-swiper .swiper-slide-thumb-active {
    opacity: 1;
    border-color: var(--primary) !important;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.15);
}

.product-gallery .thumb-swiper img {
    height: 100%;
    width: 100%;
    object-fit: contain; /* Keep product ratio clean inside the box */
    padding: 5px;
}

.product-gallery .main-swiper img {
    aspect-ratio: 1/1;
    object-fit: contain;
    background: #fff;
    padding: 20px;
}

@media (max-width: 768px) {
    .product-gallery .thumb-swiper img {
        padding: 3px;
    }
    .product-gallery .main-swiper img {
        padding: 10px;
    }
}

.gallery-main-link {
    display: block;
    width: 100%;
}

.related-products {
    background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
}

.review-card {
    border: none;
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
    position: relative;
    overflow: hidden;
}

.review-card::before {
    content: '\201C';
    position: absolute;
    top: -8px;
    right: 1.25rem;
    font-size: 5rem;
    color: var(--primary);
    opacity: 0.08;
    font-family: Georgia, serif;
    line-height: 1;
    pointer-events: none;
}

.review-card:hover {
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
    transform: translateY(-2px);
}

.review-card .review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), #ff6b6b);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.review-card .review-stars i {
    font-size: 0.8rem;
    color: #f59e0b;
}

.review-card .review-comment {
    font-size: 0.95rem;
    color: #4a5568;
    line-height: 1.65;
    margin: 0;
}

.review-card .review-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #1a202c;
    margin: 0;
}

.review-card .review-date {
    font-size: 0.78rem;
    color: #a0aec0;
}

.rating-stars {
    color: #f59e0b;
}

.form-control, .form-select {
    border-radius: var(--radius-md);
    border: 2px solid #e2e8f0;
    padding: 0.875rem 1.125rem;
    font-size: 1rem;
    transition: var(--transition-fast);
    background: white;
}

.form-control:focus, .form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(224, 32, 32, 0.1);
}

.category-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.category-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
}

.payment-option {
    transition: var(--transition);
    border: 2px solid #e2e8f0;
}

.payment-option:hover, .payment-option.active {
    border-color: var(--primary);
    background: var(--primary-light);
}

.btn-sm {
    padding: 0.625rem 1.25rem;
    font-size: 0.9rem;
}

.badge {
    font-weight: 700;
    padding: 0.5rem 0.875rem;
}

.shadow-hover {
    transition: var(--transition);
}

.shadow-hover:hover {
    box-shadow: var(--shadow-xl);
}

.gradient-bg {
    background: linear-gradient(135deg, var(--primary-light) 0%, #e0f2fe 100%);
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cart-item {
    border-bottom: 1px solid #f1f5f9;
}

.cart-item:last-child {
    border-bottom: none;
}

.table-responsive {
    border-radius: var(--radius-lg);
}

.table {
    margin-bottom: 0;
}

.alert {
    border-radius: var(--radius-lg);
    border: none;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
}

.alert-danger {
    background: #fee2e2;
    color: #991b1b;
}

.progress {
    border-radius: 50px;
    height: 8px;
}

.breadcrumb {
    background: transparent;
    padding: 0;
}

.breadcrumb-item a {
    color: var(--gray);
    font-weight: 600;
    text-decoration: none;
}

.breadcrumb-item.active {
    color: var(--primary);
    font-weight: 700;
}

.quantity-selector {
    display: inline-flex;
    align-items: center;
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    overflow: hidden;
}

.quantity-selector button {
    border: none;
    background: white;
    padding: 0.625rem 1.125rem;
    font-weight: 700;
    font-size: 1.125rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.quantity-selector button:hover {
    background: #f1f5f9;
}

.quantity-selector span {
    padding: 0.625rem 1.5rem;
    font-weight: 800;
    font-size: 1.125rem;
    border-left: 2px solid #e2e8f0;
    border-right: 2px solid #e2e8f0;
    min-width: 60px;
    text-align: center;
}

.upload-area {
    border: 3px dashed #cbd5e1;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    background: #f8fafc;
}

.upload-area:hover {
    border-color: var(--primary);
    background: var(--primary-light);
}

.upload-area i {
    font-size: 3rem;
    color: var(--gray);
}

.upload-area:hover i {
    color: var(--primary);
}

.pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.5;
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-outline-primary {
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: var(--radius-xl);
    font-weight: 800;
    padding: 0.875rem 2rem;
}

/* ── Hero section — text on dark photo ──────────────────────────────────── */
.hero-section .lead { font-size: 1rem !important; }

@media (max-width: 575px) {
    .product-card .card-body { padding: 0.65rem 0.75rem; }
    .product-card .card-title { font-size: 0.78rem; }
    .product-card .price { font-size: 0.92rem; }
}

/* ═══════════════════════════════════════════════════════════
   LENSKART-INSPIRED HOMEPAGE STYLES
═══════════════════════════════════════════════════════════ */

/* ── Hero Banner ─────────────────────────────────────────── */
.lk-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

@media (max-width: 767px) {
    .lk-hero { height: 380px; }
}

.lk-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
}

.lk-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(100deg, rgba(10,10,10,0.85) 0%, rgba(10,10,10,0.5) 55%, rgba(10,10,10,0.15) 100%);
}

.lk-hero .container { position: relative; z-index: 2; height: 100%; }

.lk-hero__tag {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #fca5a5;
    border: 1px solid rgba(255,255,255,0.25);
    backdrop-filter: blur(6px);
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
}

.lk-hero__title {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

.lk-hero__title span {
    background: linear-gradient(135deg, #fca5a5, #f87171);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lk-hero__sub {
    color: rgba(226,232,240,0.88);
    font-size: 1rem;
    margin-bottom: 1.75rem;
    max-width: 480px;
}

@media (max-width: 575px) {
    .lk-hero__title { font-size: 1.9rem; }
    .lk-hero__sub { font-size: 0.88rem; }
}

.lk-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.65rem 1.6rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
    border: 2px solid transparent;
}

.lk-btn--white {
    background: #fff;
    color: #b91c1c;
}

.lk-btn--white:hover {
    background: #fee2e2;
    color: #b91c1c;
    transform: translateY(-2px);
}

.lk-btn--outline {
    background: transparent;
    color: #fff;
    border-color: rgba(255,255,255,0.6);
}

.lk-btn--outline:hover {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border-color: #fff;
}

/* ── Trust Bar ───────────────────────────────────────────── */
.lk-trust-bar {
    background: #1e293b;
    padding: 0.75rem 0;
}

.lk-trust-item {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.5rem 1rem;
    border-right: 1px solid rgba(255,255,255,0.08);
}

.lk-trust-item:last-child { border-right: none; }

.lk-trust-item i {
    font-size: 1.4rem;
    color: #f87171;
    flex-shrink: 0;
}

.lk-trust-item strong {
    display: block;
    color: #f1f5f9;
    font-size: 0.82rem;
    font-weight: 700;
    line-height: 1.2;
}

.lk-trust-item span {
    color: #94a3b8;
    font-size: 0.72rem;
}

@media (max-width: 575px) {
    .lk-trust-item { padding: 0.4rem 0.5rem; gap: 0.4rem; }
    .lk-trust-item i { font-size: 1.1rem; }
    .lk-trust-item strong { font-size: 0.72rem; }
    .lk-trust-item span { font-size: 0.65rem; }
}

/* ── Section wrapper ─────────────────────────────────────── */
.lk-section {
    padding: 3rem 0;
}

.lk-section--gray {
    background: #f8fafc;
}

.lk-section__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.lk-section__head h2 {
    font-size: 1.45rem;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: -0.4px;
    margin: 0;
}

.lk-section__desc {
    color: #64748b;
    font-size: 0.9rem;
    margin-top: 0.25rem;
}

.lk-link-all {
    font-size: 0.82rem;
    font-weight: 700;
    color: #e02020;
    text-decoration: none;
    white-space: nowrap;
}

.lk-link-all:hover { text-decoration: underline; }

/* ── Category Tiles ──────────────────────────────────────── */
.lk-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 767px) {
    .lk-cat-grid { grid-template-columns: repeat(2, 1fr); }
}

.lk-cat-tile {
    border-radius: 14px;
    overflow: hidden;
    text-decoration: none;
    display: block;
    box-shadow: 0 2px 10px rgba(0,0,0,0.07);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    background: #fff;
}

.lk-cat-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.lk-cat-tile__img {
    height: 160px;
    background-size: cover;
    background-position: center;
}

@media (max-width: 575px) {
    .lk-cat-tile__img { height: 110px; }
}

.lk-cat-tile__body {
    padding: 0.75rem 0.9rem;
    background: #fff;
}

.lk-cat-tile__name {
    display: block;
    font-weight: 700;
    font-size: 0.88rem;
    color: #0f172a;
}

.lk-cat-tile__sub {
    display: block;
    font-size: 0.74rem;
    color: #64748b;
    margin-top: 0.1rem;
}

/* ── Offer Banners ───────────────────────────────────────── */
.lk-offer-banner {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    position: relative;
    height: 220px;
    background-size: cover;
    background-position: center;
    text-decoration: none;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.lk-offer-banner:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.22);
}

/* Gradient from RIGHT so background shows clearly on the left */
.lk-offer-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to left,
        rgba(8, 10, 30, 0.88) 0%,
        rgba(8, 10, 30, 0.72) 38%,
        rgba(8, 10, 30, 0.10) 70%,
        rgba(8, 10, 30, 0.00) 100%
    );
    border-radius: 14px;
    z-index: 1;
}

/* Content pinned to the RIGHT */
.lk-offer-banner__content {
    position: absolute;
    z-index: 2;
    right: 0;
    top: 0;
    bottom: 0;
    width: 55%;
    padding: 1.5rem 1.75rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
}

.lk-offer-banner__tag {
    display: inline-block;
    background: rgba(255,255,255,0.18);
    color: #fca5a5;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    backdrop-filter: blur(6px);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.lk-offer-banner__content h3 {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    margin: 0 0 0.3rem;
    letter-spacing: -0.3px;
    line-height: 1.25;
}

.lk-offer-banner__content p {
    color: rgba(226,232,240,0.82);
    font-size: 0.8rem;
    margin: 0 0 0.85rem;
}

.lk-offer-banner__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    background: #fff;
    color: #b91c1c;
    padding: 0.38rem 1rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 700;
    width: fit-content;
    transition: background 0.18s, color 0.18s;
}

.lk-offer-banner:hover .lk-offer-banner__cta {
    background: #e02020;
    color: #fff;
}

/* ── Horizontal product scroll ───────────────────────────── */
.lk-product-scroll {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: visible;
    padding-bottom: 1rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
}

.lk-product-scroll::-webkit-scrollbar { height: 4px; }
.lk-product-scroll::-webkit-scrollbar-track { background: transparent; }
.lk-product-scroll::-webkit-scrollbar-thumb { background: #cbd5e1; border-radius: 4px; }

.lk-product-scroll__item {
    flex: 0 0 200px;
    scroll-snap-align: start;
}

@media (max-width: 575px) {
    .lk-product-scroll__item { flex: 0 0 155px; }
}

/* ── Coupon Strip ────────────────────────────────────────── */
.lk-coupon-strip {
    background: #e02020;
    padding: 0.65rem 0;
    overflow: hidden;
}

.lk-coupon-strip__inner {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: #fff;
    font-size: 0.82rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.lk-coupon-strip__inner i {
    font-size: 1rem;
    flex-shrink: 0;
    color: #fca5a5;
}

.lk-coupon-strip__inner strong { color: #fde68a; }

/* ── Why cards ───────────────────────────────────────────── */
.lk-why-card {
    text-align: center;
    padding: 1.5rem 1rem;
    border-radius: 14px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.lk-why-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.lk-why-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.85rem;
    color: #fff;
    font-size: 1.3rem;
}

.lk-why-card h6 {
    font-weight: 700;
    font-size: 0.88rem;
    color: #0f172a;
    margin-bottom: 0.2rem;
}

.lk-why-card p {
    font-size: 0.76rem;
    color: #64748b;
    margin: 0;
}

/* ── Newsletter ──────────────────────────────────────────── */
.lk-newsletter {
    padding: 2.5rem 0;
    background: #1a1a1a;
}

.lk-newsletter__box {
    background: #1a1a1a;
    border-radius: 18px;
    padding: 2.5rem 2rem;
}

.lk-newsletter__box h3 {
    color: #fff;
    font-weight: 800;
    font-size: 1.4rem;
    margin-bottom: 0.4rem;
}

.lk-newsletter__box p {
    color: rgba(226,232,240,0.75);
    font-size: 0.88rem;
    margin: 0;
}

.lk-newsletter__form {
    display: flex;
    gap: 0.5rem;
}

.lk-newsletter__form input {
    flex: 1;
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.2rem;
    font-size: 0.88rem;
    outline: none;
}

.lk-newsletter__form button {
    background: #e02020;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 0.65rem 1.4rem;
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}

.lk-newsletter__form button:hover { background: #b91c1c; }

@media (max-width: 575px) {
    .lk-newsletter__form { flex-direction: column; }
    .lk-newsletter__form input,
    .lk-newsletter__form button { border-radius: 12px; }
}

/* Public information pages */
.info-hero {
    background:
        linear-gradient(105deg, rgba(10,10,10,0.88) 0%, rgba(180,0,0,0.65) 58%, rgba(249,115,22,0.28) 100%),
        url('../images/hero-banner3.jpg') center center / cover no-repeat;
    color: #fff;
    padding: 5rem 0;
}

.info-hero__inner {
    max-width: 760px;
}

.info-hero h1 {
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 900;
    line-height: 1.05;
    margin: 0.8rem 0 1rem;
}

.info-hero p {
    color: rgba(226,232,240,0.9);
    font-size: 1.05rem;
    max-width: 620px;
    margin: 0;
}

.info-kicker {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 0.45rem 0.9rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.16);
    border: 1px solid rgba(255,255,255,0.24);
    color: #fee2e2;
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.info-card,
.info-side-panel,
.info-policy {
    height: 100%;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(15,23,42,0.06);
}

.info-card {
    padding: 1.5rem;
}

.info-card i,
.info-side-panel i {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 8px;
    background: #fee2e2;
    color: #e02020;
    font-size: 1.4rem;
    margin-bottom: 1rem;
}

.info-card h2,
.info-side-panel h2,
.info-policy h2 {
    color: #0f172a;
    font-size: 1.15rem;
    font-weight: 900;
    margin-bottom: 0.6rem;
}

.info-card p,
.info-side-panel p,
.info-policy p,
.info-accordion .accordion-body {
    color: #64748b;
    font-size: 0.94rem;
}

.info-side-panel,
.info-policy {
    padding: 2rem;
}

.info-policy h2:not(:first-child) {
    margin-top: 1.75rem;
}

.info-accordion .accordion-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 0.85rem;
    box-shadow: 0 10px 24px rgba(15,23,42,0.04);
}

.info-accordion .accordion-button {
    padding: 1.2rem 1.4rem;
    font-weight: 900;
    color: #0f172a;
}

.info-accordion .accordion-button:not(.collapsed) {
    color: #e02020;
    background: #fff5f5;
}

.info-feature {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 2rem;
    border-radius: 8px;
    background: #0f172a;
    color: #fff;
}

.info-feature h2 {
    max-width: 700px;
    margin: 0.8rem 0 0.5rem;
    font-weight: 900;
}

.info-feature p {
    max-width: 760px;
    margin: 0;
    color: rgba(226,232,240,0.86);
}

@media (max-width: 767px) {
    .info-hero { padding: 3.25rem 0; }
    .info-feature { display: block; }
    .info-feature .btn { width: 100%; margin-top: 1.5rem; }
}

/* ── Hero Slider — multi-slide support ───────────────────── */
.lk-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
}

@media (max-width: 767px) { .lk-hero { height: 380px; } }
@media (max-width: 575px) { .lk-hero { height: 320px; } }

.lk-hero__slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.7s ease;
    pointer-events: none;
}

.lk-hero__slide.active {
    opacity: 1;
    pointer-events: auto;
}

/* Arrows */
.lk-hero__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.18);
    border: 1.5px solid rgba(255,255,255,0.35);
    color: #fff;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(6px);
    transition: background 0.2s ease;
}

.lk-hero__arrow:hover { background: rgba(255,255,255,0.32); }
.lk-hero__arrow--prev { left: 16px; }
.lk-hero__arrow--next { right: 16px; }

@media (max-width: 575px) {
    .lk-hero__arrow { 
        display: none !important;
    }
}

/* Dots */
.lk-hero__dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    gap: 8px;
}

.lk-hero__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.25s ease;
}

.lk-hero__dot.active {
    background: #fff;
    width: 24px;
    border-radius: 4px;
}

/* ── Hero Deal Card — redesigned ────────────────────────── */
.lk-hero-deal {
    width: 260px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: #fff;
    transition: transform 0.22s ease, box-shadow 0.22s ease;
    box-shadow: 0 8px 32px rgba(0,0,0,0.35);
    position: relative;
}
.lk-hero-deal:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.45);
    color: #fff;
}

/* Red "Limited Offer" badge top-right */
.lk-hero-deal__badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: #e02020;
    color: #fff;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.22rem 0.6rem;
    border-radius: 20px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
}

/* Product image section */
.lk-hero-deal__img-wrap {
    width: 100%;
    height: 170px;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 0.75rem;
}
.lk-hero-deal__img-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
    transition: transform 0.25s ease;
}
.lk-hero-deal:hover .lk-hero-deal__img-wrap img {
    transform: scale(1.06) translateY(-3px);
}

/* Text body */
.lk-hero-deal__body {
    padding: 1rem 1.1rem 1.15rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    background: rgba(0,0,0,0.18);
}
.lk-hero-deal__label {
    display: block;
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    line-height: 1.2;
}
.lk-hero-deal__name {
    color: rgba(226,232,240,0.8);
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.lk-hero-deal__cta {
    display: inline-flex;
    align-items: center;
    margin-top: 0.35rem;
    color: #fff;
    font-weight: 700;
    font-size: 0.82rem;
    background: #e02020;
    padding: 0.35rem 0.85rem;
    border-radius: 20px;
    align-self: flex-start;
    transition: background 0.18s;
}
.lk-hero-deal:hover .lk-hero-deal__cta { background: #b91c1c; }

@media (max-width: 1199px) {
    .lk-hero-deal { width: 230px; }
    .lk-hero-deal__img-wrap { height: 145px; }
    .lk-hero-deal__label { font-size: 1rem; }
}

/* ── Wider container — less wasted side space ────────────── */
.container {
    max-width: 1500px !important;
    padding-left: 1.25rem !important;
    padding-right: 1.25rem !important;
}

@media (min-width: 1200px) {
    .container {
        padding-left: 2rem !important;
        padding-right: 2rem !important;
    }
}

@media (max-width: 767px) {
    .container {
        padding-left: 0.85rem !important;
        padding-right: 0.85rem !important;
    }
}

/* Modern Auth Pages */
.auth-shell {
    position: relative;
    min-height: calc(100vh - 96px);
    padding: 4rem 0;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(248,250,252,0.96) 0%, rgba(224,242,254,0.9) 42%, rgba(255,247,237,0.88) 100%),
        url('../images/hero-banner2.jpg') center center / cover no-repeat;
}

.auth-wrap {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(380px, 520px);
    align-items: stretch;
    gap: 1.25rem;
    max-width: 1180px;
    margin: 0 auto;
}

.auth-wrap--reverse {
    grid-template-columns: minmax(380px, 520px) minmax(0, 1fr);
}

.auth-wrap--reverse .auth-visual {
    order: 2;
}

.auth-panel,
.auth-visual {
    min-height: 620px;
}

.auth-visual {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    padding: 3.5rem;
    color: #fff;
    background:
        linear-gradient(135deg, rgba(10,10,10,0.9) 0%, rgba(180,0,0,0.72) 58%, rgba(249,115,22,0.42) 100%),
        url('../images/hero-banner.jpg') center center / cover no-repeat;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.18);
}

.auth-visual::after {
    content: '';
    position: absolute;
    inset: auto 2rem 2rem auto;
    width: 180px;
    height: 180px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    box-shadow: inset 0 0 0 28px rgba(255,255,255,0.06);
}

.auth-kicker {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    width: fit-content;
    padding: 0.45rem 0.85rem;
    margin-bottom: 1.25rem;
    border: 1px solid rgba(255,255,255,0.28);
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    font-size: 0.78rem;
    font-weight: 800;
}

.auth-visual h1 {
    position: relative;
    z-index: 1;
    max-width: 620px;
    margin-bottom: 1rem;
    font-size: 3rem;
    line-height: 1.08;
    font-weight: 900;
}

.auth-visual p {
    position: relative;
    z-index: 1;
    max-width: 560px;
    margin-bottom: 2rem;
    color: rgba(226,232,240,0.9);
    font-size: 1rem;
}

.auth-benefits {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.auth-benefit {
    padding: 1rem;
    border-radius: 8px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.16);
    backdrop-filter: blur(10px);
}

.auth-benefit i {
    display: block;
    margin-bottom: 0.55rem;
    color: #fca5a5;
    font-size: 1.35rem;
}

.auth-benefit span {
    display: block;
    color: #fff;
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.3;
}

.auth-panel {
    display: flex;
    align-items: center;
}

.auth-card {
    width: 100%;
    border-radius: 8px;
    padding: 2.5rem;
    background: rgba(255,255,255,0.94);
    border: 1px solid rgba(226,232,240,0.9);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.12);
    backdrop-filter: blur(18px);
}

.auth-card__icon {
    width: 58px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    border-radius: 8px;
    background: linear-gradient(135deg, #e02020 0%, #0f0f0f 100%);
    color: #fff;
    font-size: 1.55rem;
    box-shadow: 0 14px 30px rgba(224,32,32,0.25);
}

.auth-card h2 {
    margin-bottom: 0.35rem;
    color: #0f172a;
    font-size: 2rem;
    line-height: 1.15;
    font-weight: 900;
}

.auth-subtitle {
    margin-bottom: 1.5rem;
    color: #64748b;
    font-size: 0.94rem;
}

.auth-form {
    display: grid;
    gap: 1rem;
}

.auth-field .form-label {
    margin-bottom: 0.45rem;
    color: #334155;
    font-size: 0.85rem;
    font-weight: 800;
}

.auth-input {
    position: relative;
}

.auth-input i {
    position: absolute;
    top: 50%;
    left: 1rem;
    z-index: 2;
    color: #94a3b8;
    transform: translateY(-50%);
}

.auth-input .form-control {
    min-height: 54px;
    padding-left: 2.9rem;
    border-radius: 8px;
    background: #fff;
}

.auth-form .btn-primary {
    margin-top: 0.35rem;
    border-radius: 8px;
    padding: 0.95rem 1.25rem;
    font-size: 1rem;
}

.auth-small-link,
.auth-switch a {
    color: #e02020;
    font-weight: 800;
    text-decoration: none;
}

.auth-small-link {
    font-size: 0.82rem;
    white-space: nowrap;
}

.auth-small-link:hover,
.auth-switch a:hover {
    color: #b91c1c;
    text-decoration: underline;
}

.auth-switch {
    display: flex;
    justify-content: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    margin-top: 1.5rem;
    color: #64748b;
    font-size: 0.92rem;
}

@media (max-width: 991px) {
    .auth-shell {
        padding: 2rem 0;
    }

    .auth-wrap,
    .auth-wrap--reverse {
        grid-template-columns: 1fr;
    }

    .auth-wrap--reverse .auth-visual {
        order: 0;
    }

    .auth-panel,
    .auth-visual {
        min-height: auto;
    }

    .auth-visual {
        padding: 2rem;
    }

    .auth-visual h1 {
        font-size: 2.2rem;
    }
}

@media (max-width: 575px) {
    .auth-shell {
        padding: 1rem 0 2rem;
    }

    .auth-visual {
        padding: 1.4rem;
    }

    .auth-visual h1 {
        font-size: 1.75rem;
    }

    .auth-benefits {
        grid-template-columns: 1fr;
    }

    .auth-card {
        padding: 1.35rem;
    }

    .auth-card h2 {
        font-size: 1.55rem;
    }
}


/* ═══════════════════════════════════════════════════════════
   ANNOUNCEMENT TICKER
═══════════════════════════════════════════════════════════ */
.sh-ticker {
    background: #e02020;
    color: #fff;
    font-size: 0.76rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    overflow: hidden;
    white-space: nowrap;
    height: 30px;
    display: flex;
    align-items: center;
}
.sh-ticker__track {
    display: inline-flex;
    align-items: center;
    gap: 1.2rem;
    animation: sh-ticker-scroll 38s linear infinite;
    will-change: transform;
}
.sh-ticker:hover .sh-ticker__track { animation-play-state: paused; }
.sh-ticker__item { flex-shrink: 0; }
.sh-ticker__sep {
    flex-shrink: 0;
    opacity: 0.55;
    font-size: 0.85rem;
}
@keyframes sh-ticker-scroll {
    0%   { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ═══════════════════════════════════════════════════════════
   BRAND STRIP
═══════════════════════════════════════════════════════════ */
.sh-brand-strip {
    background: #0f0f0f;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 1rem;
    overflow: hidden;
}
.sh-brand-strip__label {
    flex-shrink: 0;
    color: rgba(255,255,255,0.45);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0 1.25rem;
    border-right: 1px solid rgba(255,255,255,0.1);
    white-space: nowrap;
}
.sh-brand-strip__scroller {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    overflow-x: auto;
    padding: 0 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.sh-brand-strip__scroller::-webkit-scrollbar { display: none; }
.sh-brand-pill {
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    border: 1.5px solid rgba(255,255,255,0.15);
    color: rgba(255,255,255,0.7);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.sh-brand-pill:hover {
    border-color: #e02020;
    color: #fff;
    background: rgba(224,32,32,0.12);
}
@media (max-width: 575px) {
    .sh-brand-strip__label { display: none; }
}

/* ═══════════════════════════════════════════════════════════
   QUICK-SHOP GRID
═══════════════════════════════════════════════════════════ */
.sh-quickshop {
    padding: 2.5rem 0 2rem;
    background: #fff;
}
.sh-qs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-top: 1.25rem;
}
@media (max-width: 991px) { .sh-qs-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 575px) { .sh-qs-grid { grid-template-columns: repeat(1, 1fr); gap: 0.6rem; } }

.sh-qs-tile {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.1rem;
    border-radius: 12px;
    border: 1.5px solid #e8ecf0;
    background: #fafafa;
    text-decoration: none;
    color: #0f172a;
    transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s, background 0.18s;
    position: relative;
    overflow: hidden;
}
.sh-qs-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent, #e02020);
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 0;
}
.sh-qs-tile:hover {
    border-color: var(--accent, #e02020);
    box-shadow: 0 4px 18px rgba(0,0,0,0.09);
    transform: translateY(-2px);
    color: #0f172a;
}
.sh-qs-tile:hover::before { opacity: 0.04; }

.sh-qs-tile__icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--accent, #e02020);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: #fff;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px color-mix(in srgb, var(--accent, #e02020) 35%, transparent);
}
.sh-qs-tile__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
    position: relative;
    z-index: 1;
}
.sh-qs-tile__name {
    font-size: 0.88rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sh-qs-tile__sub {
    font-size: 0.74rem;
    color: #64748b;
    margin-top: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sh-qs-tile__arr {
    flex-shrink: 0;
    font-size: 0.85rem;
    color: #94a3b8;
    position: relative;
    z-index: 1;
    transition: transform 0.18s, color 0.18s;
}
.sh-qs-tile:hover .sh-qs-tile__arr {
    transform: translateX(4px);
    color: var(--accent, #e02020);
}
.sh-qs-tile--sale .sh-qs-tile__name { color: #e02020; }

/* ═══════════════════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════════════════ */
.sh-stats-strip {
    background: #0f172a;
    padding: 1.5rem 0;
}
.sh-stats-strip__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}
.sh-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 2.5rem;
    text-align: center;
}
.sh-stat__num {
    font-size: 1.7rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    font-family: 'Rajdhani', sans-serif;
}
.sh-stat__num sup {
    font-size: 0.7em;
    color: #e02020;
}
.sh-stat__label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.5);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}
.sh-stat__div {
    width: 1px;
    height: 2.5rem;
    background: rgba(255,255,255,0.12);
    flex-shrink: 0;
}
@media (max-width: 767px) {
    .sh-stat { padding: 0.5rem 1.2rem; }
    .sh-stat__num { font-size: 1.3rem; }
    .sh-stat__div { height: 1.8rem; }
}
@media (max-width: 480px) {
    .sh-stats-strip__inner { gap: 0; }
    .sh-stat { padding: 0.5rem 0.8rem; }
    .sh-stat__div { display: none; }
    .sh-stats-strip__inner { justify-content: space-around; }
}

/* ═══════════════════════════════════════════════════════════
   SOCIAL ICONS — Row 1 (replaces Instagram pill)
═══════════════════════════════════════════════════════════ */
.sh-social-icons {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    flex-shrink: 0;
}
.sh-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    font-size: 1rem;
    text-decoration: none;
    color: rgba(255,255,255,0.6);
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.1);
    transition: color 0.18s, background 0.18s, border-color 0.18s, transform 0.18s;
}
.sh-social-icon:hover { transform: translateY(-2px); color: #fff; }

/* per-platform hover colours */
.sh-social-icon--fb:hover  { background: #1877f2; border-color: #1877f2; color: #fff; }
.sh-social-icon--ig:hover  { background: linear-gradient(135deg,#f58529,#dd2a7b,#8134af,#515bd4); border-color: #dd2a7b; color: #fff; }
.sh-social-icon--tw:hover  { background: #000; border-color: #555; color: #fff; }
.sh-social-icon--yt:hover  { background: #ff0000; border-color: #ff0000; color: #fff; }

/* hide on very small mobile — keep only cart + hamburger */
@media (max-width: 400px) {
    .sh-social-icons { display: none; }
}

/* ── Shop by Bike — brand group label in dropdown ─────────── */
.sh-nav__dd-brand { padding: 0.35rem 1rem 0.1rem; pointer-events: none; }
.sh-nav__dd-brand:not(:first-child) { border-top: 1px solid rgba(255,255,255,0.07); margin-top: 0.25rem; padding-top: 0.5rem; }
.sh-nav__dd-brand-label {
    display: block;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #e02020;
}
.sh-nav__dd-item--sub { padding-left: 1.5rem !important; font-size: 0.82rem; }

/* ═══════════════════════════════════════════════════════════
   SHOP BY BIKE — homepage grid
═══════════════════════════════════════════════════════════ */
.sh-bike-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
    margin-top: 1.25rem;
}
@media (max-width: 1199px) { .sh-bike-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767px)  { .sh-bike-grid { grid-template-columns: repeat(3, 1fr); gap: 0.75rem; } }
@media (max-width: 480px)  { .sh-bike-grid { grid-template-columns: repeat(2, 1fr); gap: 0.6rem; } }

.sh-bike-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #0f172a;
    border-radius: 12px;
    border: 1.5px solid #e8ecf0;
    overflow: hidden;
    background: #fafafa;
    transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.sh-bike-tile:hover {
    border-color: #e02020;
    box-shadow: 0 6px 20px rgba(0,0,0,0.09);
    transform: translateY(-3px);
    color: #0f172a;
}
.sh-bike-tile__img {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sh-bike-tile__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.sh-bike-tile:hover .sh-bike-tile__img img { transform: scale(1.05); }
.sh-bike-tile__img--placeholder {
    font-size: 2.5rem;
    color: #cbd5e1;
}
.sh-bike-tile__body {
    padding: 0.6rem 0.75rem 0.75rem;
    text-align: center;
    width: 100%;
}
.sh-bike-tile__model {
    display: block;
    font-size: 0.82rem;
    font-weight: 700;
    color: #0f172a;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.sh-bike-tile__brand {
    display: block;
    font-size: 0.7rem;
    color: #94a3b8;
    margin-top: 0.1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════
   SHOP BY BIKE — carousel (screenshot-matched UI)
═══════════════════════════════════════════════════════════ */
.sh-bikeshop-section {
    background: #fff;
    padding: 2.5rem 0 2rem;
}
.sh-bikeshop-title {
    font-size: 1.1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #0f172a;
    margin-bottom: 1.5rem;
}
.sh-bikeshop-title span { color: #e02020; }

/* Wrapper: track + arrows */
.sh-bikeshop-wrap {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Scrollable track */
.sh-bikeshop-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.5rem 0.25rem;
    flex: 1;
}
.sh-bikeshop-track::-webkit-scrollbar { display: none; }

/* Each card */
.sh-bikeshop-card {
    flex: 0 0 calc(16.66% - 0.85rem);   /* 6 visible at once */
    min-width: 148px;
    max-width: 200px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #0f172a;
    border-radius: 16px;
    /* background: #f4f6f8; */
    padding: 1rem 0.75rem 0.85rem;
    transition: box-shadow 0.18s, transform 0.18s, background 0.18s;
}
.sh-bikeshop-card:hover {
    /* box-shadow: 0 6px 22px rgba(0,0,0,0.11); */
    transform: translateY(-10px);
    background: #fff;
    color: #0f172a;
}

/* Image area */
.sh-bikeshop-card__img {
    width: 100%;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-bottom: 0.75rem;
}
.sh-bikeshop-card__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s;
}
.sh-bikeshop-card:hover .sh-bikeshop-card__img img { transform: scale(1.07); }
.sh-bikeshop-card__img .bi-bicycle {
    font-size: 3rem;
    color: #cbd5e1;
}

/* Brand name */
.sh-bikeshop-card__name {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0f172a;
    text-align: center;
}
.sh-bikeshop-card__model {
    font-size: 0.68rem;
    color: #94a3b8;
    text-align: center;
    margin-top: 0.15rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

/* Arrows */
.sh-bikeshop-arrow {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: none;
    background: #1e293b;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.18s, opacity 0.18s, transform 0.18s;
    z-index: 2;
}
.sh-bikeshop-arrow:hover { background: #e02020; transform: scale(1.08); }

/* Responsive */
@media (max-width: 991px) {
    .sh-bikeshop-card { flex: 0 0 calc(25% - 0.75rem); }
}
@media (max-width: 767px) {
    .sh-bikeshop-card { flex: 0 0 calc(33.33% - 0.7rem); min-width: 120px; }
    .sh-bikeshop-card__img { height: 80px; }
}
@media (max-width: 480px) {
    .sh-bikeshop-card { flex: 0 0 calc(50% - 0.5rem); }
}

/* ── Floating WhatsApp FAB — stacked above cart ─────────── */
.sh-wa-fab {
    position: fixed;
    bottom: 7rem;   /* sits above the sticky cart button (40px + 68px + gap) */
    right: 1.5rem;
    z-index: 1040;
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(37,211,102,0.45);
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
}
.sh-wa-fab:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 22px rgba(37,211,102,0.55);
    color: #fff;
}
.sh-wa-fab__tooltip {
    position: absolute;
    right: 62px;
    background: #1a1d29;
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s;
}
.sh-wa-fab:hover .sh-wa-fab__tooltip { opacity: 1; }

/* Desktop: align right edge with sticky cart */
@media (min-width: 768px) {
    .sh-wa-fab {
        bottom: 8rem;   /* 40px cart bottom + 68px cart height + 20px gap */
        right: 40px;
        width: 54px;
        height: 54px;
    }
}
/* Mobile: push above the bottom nav */
@media (max-width: 767px) {
    .sh-wa-fab { bottom: 5.5rem; right: 1rem; width: 46px; height: 46px; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT PAGE SHARE BUTTONS
═══════════════════════════════════════════════════════════ */
.sh-share-btn {
    display: inline-flex;
    align-items: center;
    font-size: 0.78rem;
    font-weight: 600;
    border-radius: 20px;
    padding: 0.3rem 0.85rem;
    border: 1.5px solid transparent;
    transition: opacity 0.18s, transform 0.18s;
    text-decoration: none;
}
.sh-share-btn:hover { transform: translateY(-1px); opacity: 0.88; }
.sh-share-btn--wa   { background: #25d366; color: #fff; border-color: #25d366; }
.sh-share-btn--wa:hover { color: #fff; }
.sh-share-btn--fb   { background: #1877f2; color: #fff; border-color: #1877f2; }
.sh-share-btn--fb:hover { color: #fff; }
.sh-share-btn--tw   { background: #000; color: #fff; border-color: #333; }
.sh-share-btn--tw:hover { color: #fff; }
.sh-share-btn--copy { background: #f8fafc; color: #475569; border-color: #cbd5e1; cursor: pointer; }
.sh-share-btn--copy:hover { background: #f1f5f9; color: #0f172a; }

/* ═══════════════════════════════════════════════════════════
   PRODUCT CARD — Out of Stock state
═══════════════════════════════════════════════════════════ */
.product-card--oos {
    opacity: 0.82;
}
.product-card__img--oos {
    filter: grayscale(40%);
}
