/* =========================================================
   MOTOFY STORE â€” Premium Dark Â· v3 redesign
   Brand: Jet Black (#0A0A0A) Â· Electric Yellow (#FCFF00, from logo)
   Type: Oswald (display/labels) + Inter (body/UI)
   ========================================================= */

.notice {
    padding: 0px !important;
}

:root {
    /* Brand */
    --accent: #FCFF00;
    /* electric logo yellow */
    --accent-dim: #d6d800;
    --accent-deep: #b8ba00;

    /* Dark surfaces */
    --bg: #0A0A0A;
    /* page */
    --surface-1: #121212;
    /* cards */
    --surface-2: #181818;
    /* elevated panels / dropdowns */
    --surface-3: #232323;
    /* hover */
    --img-panel: #f3f3f3;
    /* light panel behind product photos */

    /* Lines */
    --line: rgba(255, 255, 255, 0.08);
    --line-strong: rgba(255, 255, 255, 0.16);

    /* Text */
    --text: #ffffff;
    --text-soft: rgba(255, 255, 255, 0.70);
    --text-muted: rgba(255, 255, 255, 0.50);
    --text-dim: rgba(255, 255, 255, 0.34);

    --radius: 10px;
    --radius-lg: 16px;
    --max-w: 1280px;
    --header-h: 82px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif !important;
}

.display {
    font-family: 'Oswald', 'Inter', sans-serif;
}

/* eyebrow label */
.eyebrow {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--accent);
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.eyebrow::before {
    content: '';
    width: 26px;
    height: 2px;
    background: var(--accent);
}

/* =========================================================
   ANNOUNCEMENT BAR
   ========================================================= */
.announcement-bar {
    background: var(--accent);
    color: #000;
    font-family: 'Oswald', sans-serif;
    font-size: 12.5px;
    font-weight: 500;
    height: 34px;
    overflow: hidden;
    display: flex;
    align-items: center;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.announcement-track {
    display: flex;
    align-items: center;
    gap: 26px;
    white-space: nowrap;
    animation: marquee 40s linear infinite;
    padding-left: 100%;
    flex-shrink: 0;
}

.announcement-track .sep {
    color: rgba(0, 0, 0, 0.4);
}

@keyframes marquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* =========================================================
   HEADER + MEGA MENU
   ========================================================= */
.site-header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(10, 10, 10, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--line);
}

.header-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    height: var(--header-h);
    max-width: 1440px;
    margin: 0 auto;
    gap: 22px;
}

.site-logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    mix-blend-mode: screen;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    flex: 1;
    justify-content: center;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-link {
    font-family: 'Oswald', sans-serif;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 10px 14px;
    border-radius: 7px;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.15s, background 0.15s;
    cursor: pointer;
}

.nav-item:hover>.nav-link,
.nav-link:hover {
    color: #fff;
}

.nav-item:hover>.nav-link {
    color: var(--accent);
}

.nav-chevron {
    font-size: 8px;
    opacity: 0.5;
    transition: transform 0.2s;
}

.nav-item:hover .nav-chevron {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--accent);
}

.nav-link.nav-sale {
    color: var(--accent);
}

.nav-link.nav-sale::after {
    content: 'HOT';
    font-size: 8px;
    background: var(--accent);
    color: #000;
    padding: 1px 4px;
    border-radius: 3px;
    font-weight: 700;
    margin-left: 2px;
    letter-spacing: 0.05em;
}

/* dropdown / mega menu */
.dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: var(--surface-2);
    border: 1px solid var(--line);
    border-top: 2px solid var(--accent);
    border-radius: 0 0 14px 14px;
    padding: 26px 28px;
    z-index: 500;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
}

.nav-item:hover .dropdown {
    display: flex;
    gap: 36px;
}

.dropdown-cols {
    display: flex;
    gap: 38px;
}

.dropdown-col {
    min-width: 140px;
}

.dropdown-heading {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
    padding-bottom: 9px;
    border-bottom: 1px solid var(--line);
}

.dropdown-col a {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    font-weight: 400;
    padding: 6px 0;
    transition: color 0.12s, padding-left 0.12s;
}

.dropdown-col a:hover {
    color: #fff;
    padding-left: 6px;
}

/* featured card inside mega menu */
.mega-feature {
    width: 230px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    min-height: 230px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
}

.mega-feature::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.2) 70%);
}

.mega-feature-body {
    position: relative;
    z-index: 1;
    padding: 18px;
}

.mega-feature-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 6px;
}

.mega-feature-h {
    font-family: 'Oswald', sans-serif;
    font-size: 19px;
    font-weight: 600;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 12px;
    white-space: normal;
}

.mega-feature-cta {
    font-size: 11px;
    font-weight: 700;
    color: #000;
    background: var(--accent);
    padding: 7px 14px;
    border-radius: 6px;
    display: inline-block;
}

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

.header-phone {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-muted);
    margin-right: 8px;
    white-space: nowrap;
}

.header-phone a {
    color: var(--text-soft);
    transition: color 0.15s;
}

.header-phone a:hover {
    color: var(--accent);
}

.icon-btn {
    background: none;
    border: none;
    color: var(--text-soft);
    cursor: pointer;
    padding: 9px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    position: relative;
    transition: color 0.15s, background 0.15s;
}

.icon-btn:hover {
    color: var(--accent);
    background: rgba(255, 255, 255, 0.06);
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--accent);
    color: #000;
    font-size: 9px;
    font-weight: 800;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

/* =========================================================
   HERO SLIDER
   ========================================================= */
.hero-slider {
    position: relative;
    overflow: hidden;
    height: 560px;
    background: #000;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
}

.slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.7) 42%, rgba(0, 0, 0, 0.15) 75%, transparent 100%);
}

.slide-content {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    padding: 0 80px;
    z-index: 1;
}

.slide-body {
    max-width: 560px;
}

.slide-tag {
    font-family: 'Oswald', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.slide-tag::before {
    content: '';
    width: 30px;
    height: 2px;
    background: var(--accent);
}

.slide-h1 {
    font-family: 'Oswald', sans-serif;
    color: #fff;
    font-size: 76px;
    font-weight: 700;
    line-height: 0.96;
    letter-spacing: 0.005em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.slide-h1 em {
    color: var(--accent);
    font-style: normal;
}

.slide-desc {
    color: var(--text-soft);
    font-size: 15.5px;
    line-height: 1.65;
    margin-bottom: 32px;
    max-width: 460px;
}

.slide-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.btn-yellow {
    font-family: 'Oswald', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 8px;
    transition: background 0.15s, transform 0.1s, box-shadow 0.2s;
}

.btn-yellow:hover {
    background: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(252, 255, 0, 0.25);
}

.btn-ghost {
    font-family: 'Oswald', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 13px 28px;
    border-radius: 8px;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    transition: border-color 0.15s, background 0.15s;
}

.btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
}

.slider-dots {
    position: absolute;
    bottom: 26px;
    left: 80px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.slider-dot {
    width: 28px;
    height: 4px;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: background 0.2s;
    padding: 0;
}

.slider-dot.active {
    background: var(--accent);
}

.slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;
    transition: background 0.15s, border-color 0.15s;
    font-size: 18px;
}

.slider-arrow:hover {
    background: var(--accent);
    color: #000;
    border-color: var(--accent);
}

.slider-arrow.prev {
    left: 22px;
}

.slider-arrow.next {
    right: 22px;
}

/* =========================================================
   USP STRIP (under hero)
   ========================================================= */
.usp-strip {
    background: var(--surface-1);
    border-bottom: 1px solid var(--line);
}

.usp-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.usp-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 22px 28px;
    border-right: 1px solid var(--line);
}

.usp-item:last-child {
    border-right: none;
}

.usp-ic {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 9px;
    background: rgba(252, 255, 0, 0.1);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.usp-t {
    font-size: 13px;
    font-weight: 700;
    color: #fff;
}

.usp-d {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 1px;
}

/* =========================================================
   SECTION LAYOUT
   ========================================================= */
.section-wrap {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 40px;
}

.section-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 30px;
    gap: 20px;
}

.section-head-l .eyebrow {
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Oswald', sans-serif;
    font-size: 34px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    line-height: 1;
}

.section-title span {
    color: var(--accent);
}

.view-all {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
    transition: color 0.15s;
    padding-bottom: 4px;
}

.view-all::after {
    content: 'â†’';
    transition: transform 0.15s;
}

.view-all:hover {
    color: var(--accent);
}

.view-all:hover::after {
    transform: translateX(4px);
}

/* =========================================================
   CATEGORIES GRID
   ========================================================= */
.cat-grid {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 14px;
}

.cat-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.cat-img-ring {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--surface-1);
    border: 1px solid var(--line);
    transition: border-color 0.2s, transform 0.2s;
}

.cat-tile:hover .cat-img-ring {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.cat-img-ring img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.cat-tile:hover .cat-img-ring img {
    transform: scale(1.08);
}

.cat-name {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-soft);
    text-align: center;
    transition: color 0.15s;
}

.cat-tile:hover .cat-name {
    color: var(--accent);
}

/* =========================================================
   PRODUCT CARDS (dark card, light image panel)
   ========================================================= */
.product-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.product-card {
    background: var(--surface-1);
    border-radius: var(--radius);
    border: 1px solid var(--line);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s, box-shadow 0.25s;
}

.product-card:hover {
    border-color: rgba(252, 255, 0, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.5);
}

.product-img-wrap {
    position: relative;
    aspect-ratio: 4 / 5;
    background: var(--img-panel);
    overflow: hidden;
}

.product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 14px;
    transition: transform 0.4s;
}

.product-card:hover .product-img-wrap img {
    transform: scale(1.06);
}

.product-badge {
    top: 10px;
    left: 10px;
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: #000;
    color: var(--accent);
    padding: 4px 9px;
    border-radius: 5px;
}

.product-info {
    padding: 14px 14px 16px;
}

.product-brand {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 5px;
}

.product-name {
    font-size: 13.5px;
    font-weight: 500;
    color: var(--text);
    line-height: 1.4;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 38px;
}

.product-price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price {
    font-size: 15px;
    font-weight: 800;
    background: var(--accent);
    color: #000;
    padding: 3px 9px;
    border-radius: 5px;
}

.mrp {
    font-size: 12px;
    color: var(--text-dim);
    text-decoration: line-through;
}

.discount {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--accent);
    letter-spacing: 0.02em;
}

/* =========================================================
   SHOP BY BIKE (NEW)
   ========================================================= */
.bike-section {
    background:
        radial-gradient(circle at 85% 15%, rgba(252, 255, 0, 0.06) 0%, transparent 45%),
        var(--surface-1);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.bike-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 40px;
}

.bike-head {
    text-align: center;
    margin-bottom: 36px;
}

.bike-head .eyebrow {
    justify-content: center;
    margin-bottom: 14px;
}

.bike-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    line-height: 1.05;
    color: #fff;
}

.bike-head h2 span {
    color: var(--accent);
}

.bike-head p {
    color: var(--text-muted);
    font-size: 14.5px;
    margin-top: 10px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.bike-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 14px;
}

.bike-chip {
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 18px;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
}

.bike-chip:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    background: var(--surface-2);
}

.bike-chip-ic {
    font-size: 22px;
}

.bike-chip-name {
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: #fff;
}

.bike-chip-go {
    font-size: 11.5px;
    color: var(--text-muted);
    transition: color 0.15s;
}

.bike-chip:hover .bike-chip-go {
    color: var(--accent);
}

/* =========================================================
   DARK FEATURE (helmets) SHOWCASE
   ========================================================= */
.feature-section {
    background: var(--bg);
}

.feature-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 40px;
}

.feature-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 34px;
    gap: 24px;
}

.feature-h {
    font-family: 'Oswald', sans-serif;
    font-size: 46px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: 0.01em;
    margin-top: 12px;
}

.feature-h span {
    color: var(--accent);
}

.feature-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 380px;
    margin-top: 14px;
}

.feature-link {
    font-family: 'Oswald', sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #fff;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    border-bottom: 2px solid var(--accent);
    padding-bottom: 4px;
    white-space: nowrap;
    transition: gap 0.15s;
}

.feature-link:hover {
    gap: 12px;
}

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

/* =========================================================
   SHOP BY SEASON
   ========================================================= */
.season-section {
    background: var(--surface-1);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.season-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 40px;
}

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

.season-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    height: 300px;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    transition: transform 0.25s;
}

.season-card:hover {
    transform: translateY(-5px);
}

.season-card.summer {
    background: url('references/season-summer.jpg') center/cover;
}

.season-card.monsoon {
    background: url('references/season-monsoon.jpg') center/cover;
}

.season-card.winter {
    background: url('references/season-winter.jpg') center/cover;
}

.season-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.3) 55%, transparent 100%);
}

.season-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 2px solid transparent;
    border-radius: var(--radius-lg);
    transition: border-color 0.2s;
}

.season-card:hover::after {
    border-color: var(--accent);
}

.season-card-icon {
    position: absolute;
    top: 22px;
    right: 22px;
    font-size: 40px;
    opacity: 0.55;
    z-index: 1;
}

.season-card-body {
    position: relative;
    z-index: 1;
    padding: 26px;
}

.season-tag {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 8px;
}

.season-name {
    font-family: 'Oswald', sans-serif;
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    line-height: 1.05;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.season-desc {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
}

/* =========================================================
   COLLECTION (banner + product grid)
   ========================================================= */
.collection-section {
    padding: 64px 0;
}

.collection-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    gap: 18px;
    align-items: stretch;
}

.collection-inner.reverse {
    flex-direction: row-reverse;
}

.coll-banner-panel {
    flex: 0 0 30%;
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    min-height: 520px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center top;
}

.coll-banner-riding {
    background-image: url('references/coll-banner-riding.jpg');
}

.coll-banner-luggage {
    background-image: url('references/coll-banner-luggage.jpg');
}

.coll-banner-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.45) 55%, rgba(0, 0, 0, 0.15) 100%);
}

.coll-banner-text {
    position: relative;
    z-index: 1;
    padding: 38px 32px;
}

.coll-banner-label {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 14px;
}

.coll-banner-h {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.coll-banner-desc {
    font-size: 13.5px;
    color: var(--text-soft);
    line-height: 1.6;
    margin-bottom: 22px;
    max-width: 280px;
}

.coll-banner-cta {
    font-family: 'Oswald', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent);
    color: #000;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 11px 22px;
    border-radius: 7px;
    transition: background 0.15s, transform 0.1s;
}

.coll-banner-cta:hover {
    background: #fff;
    transform: translateY(-2px);
}

.coll-products {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    align-content: start;
}

/* =========================================================
   WATCH & RIDE â€” YOUTUBE (NEW)
   ========================================================= */
.youtube-section {
    background: var(--surface-1);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.youtube-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 40px;
    background-color: #000;
}

.youtube-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 32px;
    gap: 24px;
    flex-wrap: wrap;
}

.youtube-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
    margin-top: 12px;
    color: #fff;

}

.youtube-head h2 span {
    color: var(--accent);
}

.yt-sub {
    font-size: 13.5px;
    color: var(--text-muted);
    margin-top: 8px;
}

.yt-subscribe {
    font-family: 'Oswald', sans-serif;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: #FF0000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 13px 24px;
    border-radius: 8px;
    transition: transform 0.1s, box-shadow 0.2s;
}

.yt-subscribe:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(255, 0, 0, 0.3);
}

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

.yt-card {
    cursor: pointer;
}

.yt-thumb {
    position: relative;
    aspect-ratio: 16 / 10;
    border-radius: var(--radius);
    overflow: hidden;
    background-size: cover;
    background-position: center;
    border: 1px solid var(--line);
}

.yt-thumb::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: background 0.2s;
}

.yt-card:hover .yt-thumb::before {
    background: rgba(0, 0, 0, 0.1);
}

.yt-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background 0.2s, transform 0.2s;
}

.yt-card:hover .yt-play {
    background: #FF0000;
    border-color: #FF0000;
    transform: translate(-50%, -50%) scale(1.08);
}

.yt-play svg {
    margin-left: 3px;
}

.yt-dur {
    position: absolute;
    bottom: 8px;
    right: 8px;
    z-index: 1;
    background: rgba(0, 0, 0, 0.85);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    padding: 2px 7px;
    border-radius: 4px;
}

.yt-title {
    font-size: 13.5px;
    font-weight: 600;
    color: #fff;
    line-height: 1.4;
    margin-top: 12px;
}

.yt-meta {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-top: 4px;
}

/* =========================================================
   EMI / SNAPMINT BAND
   ========================================================= */
.emi-banner {
    background:
        repeating-linear-gradient(-55deg, transparent 0, transparent 38px, rgba(252, 255, 0, 0.04) 38px, rgba(252, 255, 0, 0.04) 39px),
        #0d0d0d;
    border-top: 2px solid var(--accent);
    border-bottom: 2px solid var(--accent);
    padding: 44px 40px;
}

.emi-banner-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.emi-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    border-radius: 14px;
    background: rgba(252, 255, 0, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
}

.emi-text h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 6px;
}

.emi-text h3 span {
    color: var(--accent);
}

.emi-text p {
    font-size: 13.5px;
    color: var(--text-muted);
    line-height: 1.6;
}

.emi-cta {
    font-family: 'Oswald', sans-serif;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #000;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 14px 30px;
    border-radius: 8px;
    transition: background 0.15s, transform 0.1s;
}

.emi-cta:hover {
    background: #fff;
    transform: translateY(-2px);
}

/* =========================================================
   RIDE JOURNAL â€” BLOG (NEW)
   ========================================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.blog-card {
    background: var(--surface-1);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
}

.blog-thumb {
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-cat {
    position: absolute;
    top: 14px;
    left: 14px;
    font-family: 'Oswald', sans-serif;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--accent);
    color: #000;
    padding: 4px 10px;
    border-radius: 5px;
}

.blog-body {
    padding: 22px;
}

.blog-meta {
    font-size: 11.5px;
    color: var(--text-muted);
    margin-bottom: 10px;
    letter-spacing: 0.03em;
}

.blog-title {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    font-weight: 600;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 10px;
}

.blog-card:hover .blog-title {
    color: var(--accent);
}

.blog-excerpt {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* =========================================================
   STATS STRIP
   ========================================================= */
.promo-strip {
    background:
        repeating-linear-gradient(-55deg, transparent 0, transparent 40px, rgba(252, 255, 0, 0.03) 40px, rgba(252, 255, 0, 0.03) 41px),
        var(--bg);
    padding: 72px 40px;
}

.promo-strip-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 44px;
    flex-wrap: wrap;
}

.promo-strip-text h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 40px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: 1.05;
    margin-bottom: 12px;
}

.promo-strip-text h2 span {
    color: var(--accent);
}

.promo-strip-text p {
    color: var(--text-muted);
    font-size: 14px;
    line-height: 1.65;
    max-width: 480px;
}

.promo-strip-badges {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
}

.promo-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--surface-1);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 22px 26px;
    text-align: center;
    min-width: 110px;
    transition: border-color 0.2s;
}

.promo-badge:hover {
    border-color: var(--accent);
}

.promo-badge-val {
    font-family: 'Oswald', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
    margin-bottom: 6px;
}

.promo-badge-label {
    font-size: 11.5px;
    font-weight: 500;
    color: var(--text-muted);
}

/* =========================================================
   TRUSTED BRANDS
   ========================================================= */
.brands-section {
    background: var(--surface-1);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.brands-strip {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.brand-tile {
    flex-shrink: 0;
    background: #fff;
    border-radius: var(--radius);
    width: 130px;
    height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.brand-tile:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(252, 255, 0, 0.15);
}

.brand-tile img {
    max-height: 46px;
    max-width: 100%;
    object-fit: contain;
}

/* =========================================================
   COMMUNITY / UGC (NEW)
   ========================================================= */
.community-section {
    background: var(--bg);
}

.community-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 40px;
}

.community-head {
    text-align: center;
    margin-bottom: 34px;
}

.community-head .eyebrow {
    justify-content: center;
    margin-bottom: 14px;
}

.community-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.05;
}

.community-head h2 span {
    color: var(--accent);
}

.community-head a {
    display: inline-block;
    margin-top: 12px;
    color: var(--text-soft);
    font-size: 14px;
    font-weight: 600;
    transition: color 0.15s;
}

.community-head a:hover {
    color: var(--accent);
}

.ugc-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
}

.ugc-tile {
    aspect-ratio: 1 / 1;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background-size: cover;
    background-position: center;
    cursor: pointer;
}

.ugc-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    transition: background 0.2s;
}

.ugc-tile:hover::before {
    background: rgba(0, 0, 0, 0.45);
}

.ugc-ig {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0;
    color: #fff;
    z-index: 1;
    transition: opacity 0.2s, transform 0.2s;
}

.ugc-tile:hover .ugc-ig {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

/* =========================================================
   TESTIMONIALS (NEW)
   ========================================================= */
.reviews-section {
    background: var(--surface-1);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.reviews-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 64px 40px;
}

.reviews-head {
    text-align: center;
    margin-bottom: 38px;
}

.reviews-head .eyebrow {
    justify-content: center;
    margin-bottom: 14px;
}

.reviews-head h2 {
    font-family: 'Oswald', sans-serif;
    font-size: 38px;
    font-weight: 700;
    text-transform: uppercase;
}

.reviews-head h2 span {
    color: var(--accent);
}

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

.review-card {
    background: var(--bg);
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
}

.review-stars {
    color: var(--accent);
    font-size: 15px;
    letter-spacing: 2px;
    margin-bottom: 14px;
}

.review-text {
    font-size: 14px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 20px;
}

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

.review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(252, 255, 0, 0.14);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Oswald', sans-serif;
    font-weight: 700;
    font-size: 16px;
}

.review-name {
    font-size: 13.5px;
    font-weight: 700;
    color: #fff;
}

.review-loc {
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 1px;
}

/* =========================================================
   TRUST BADGES
   ========================================================= */
.trust-section {
    background: var(--bg);
    padding: 48px 40px;
}

.trust-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.trust-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    color: #fff;
    padding: 0 32px;
    border-right: 1px solid var(--line);
}

.trust-item:first-child {
    padding-left: 0;
}

.trust-item:last-child {
    border-right: none;
}

.trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 11px;
    background: rgba(252, 255, 0, 0.12);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.trust-title {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.trust-desc {
    font-size: 12.5px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer {
    background: #060606;
    border-top: 1px solid var(--line);
    color: var(--text-muted);
    padding: 64px 40px 0;
}

.footer-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2.2fr repeat(3, 1fr);
    gap: 56px;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--line);
}

.footer-logo {
    height: 56px;
    width: auto;
    mix-blend-mode: screen;
    margin-bottom: 16px;
}

.footer-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.footer-about {
    font-size: 13px;
    color: var(--text-dim);
    line-height: 1.75;
    margin-bottom: 22px;
}

.footer-socials {
    display: flex;
    gap: 10px;
}

.social-btn {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--text-soft);
    border: 1px solid var(--line-strong);
    padding: 7px 14px;
    border-radius: 6px;
    transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.social-btn:hover {
    border-color: var(--accent);
    color: #000;
    background: var(--accent);
}

.footer-col-title {
    font-family: 'Oswald', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.footer-col a {
    display: block;
    font-size: 13px;
    color: var(--text-dim);
    padding: 5px 0;
    transition: color 0.15s, padding-left 0.15s;
}

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

.footer-bottom {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    color: var(--text-dim);
}

.footer-bottom strong {
    color: var(--text-soft);
}

/* =========================================================
   MOBILE BOTTOM NAV
   ========================================================= */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--surface-2);
    border-top: 1px solid var(--line);
    z-index: 300;
    padding-bottom: env(safe-area-inset-bottom, 0);
}

.mob-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    padding: 10px 0;
    flex: 1;
    color: var(--text-muted);
    font-size: 10px;
    font-weight: 500;
    transition: color 0.15s;
}

.mob-nav-item.active {
    color: var(--accent);
}

/* =========================================================
   TABLET (â‰¤ 1024px)
   ========================================================= */
@media (max-width: 1024px) {
    .header-top {
        padding: 0 24px;
        gap: 14px;
    }

    .section-wrap {
        padding: 52px 24px;
    }

    .bike-inner,
    .feature-inner,
    .season-inner,
    .youtube-inner,
    .community-inner,
    .reviews-inner {
        padding: 52px 24px;
    }

    .collection-inner {
        padding: 0 24px;
    }

    .promo-strip,
    .trust-section,
    .emi-banner {
        padding-left: 24px;
        padding-right: 24px;
    }

    .site-footer {
        padding: 52px 24px 0;
    }

    .cat-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .slide-content {
        padding: 0 44px;
    }

    .slide-h1 {
        font-size: 54px;
    }

    .slider-dots {
        left: 44px;
    }

    .product-row {
        display: flex;
        gap: 14px;
        overflow-x: auto;
        scrollbar-width: none;
        padding-bottom: 4px;
    }

    .product-row::-webkit-scrollbar {
        display: none;
    }

    .product-row .product-card {
        min-width: 210px;
        flex-shrink: 0;
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .bike-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .yt-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .ugc-grid {
        grid-template-columns: repeat(4, 1fr);
    }

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

/* =========================================================
   MOBILE (â‰¤ 768px)
   ========================================================= */
@media (max-width: 768px) {
    :root {
        --header-h: 70px;
    }

    .announcement-bar {
        height: 30px;
        font-size: 11px;
    }

    .header-top {
        padding: 0 16px;
        gap: 8px;
    }

    .main-nav,
    .header-phone {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .logo-img {
        height: 54px;
    }

    .hero-slider {
        height: 380px;
    }

    .slide-content {
        padding: 0 24px;
    }

    .slide-h1 {
        font-size: 38px;
        margin-bottom: 12px;
    }

    .slide-desc {
        font-size: 13px;
        margin-bottom: 22px;
    }

    .slide-tag {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .slider-dots {
        left: 24px;
        bottom: 18px;
    }

    .slider-arrow {
        width: 36px;
        height: 36px;
        font-size: 15px;
    }

    .btn-yellow,
    .btn-ghost {
        font-size: 12.5px;
        padding: 11px 20px;
    }

    .usp-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .usp-item {
        padding: 16px;
    }

    .usp-item:nth-child(2) {
        border-right: none;
    }

    .usp-item:nth-child(1),
    .usp-item:nth-child(2) {
        border-bottom: 1px solid var(--line);
    }

    .section-wrap {
        padding: 40px 16px;
    }

    .section-title,
    .feature-h,
    .bike-head h2,
    .youtube-head h2,
    .community-head h2,
    .reviews-head h2,
    .promo-strip-text h2 {
        font-size: 28px;
    }

    .coll-banner-h {
        font-size: 30px;
    }

    .bike-inner,
    .feature-inner,
    .season-inner,
    .youtube-inner,
    .community-inner,
    .reviews-inner {
        padding: 44px 16px;
    }

    .collection-inner {
        padding: 0 16px;
    }

    .promo-strip {
        padding: 52px 16px;
    }

    .trust-section {
        padding: 44px 16px;
    }

    .emi-banner {
        padding: 32px 16px;
    }

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

    .cat-name {
        font-size: 11px;
    }

    .product-row .product-card {
        min-width: 158px;
    }

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

    .feature-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }

    .bike-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .season-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .season-card {
        height: 200px;
    }

    .collection-inner,
    .collection-inner.reverse {
        flex-direction: column;
    }

    .coll-banner-panel {
        flex: none;
        width: 100%;
        min-height: 280px;
    }

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

    .yt-grid {
        grid-template-columns: 1fr;
    }

    .yt-head,
    .youtube-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .ugc-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .reviews-grid {
        grid-template-columns: 1fr;
    }

    .emi-banner-inner {
        gap: 16px;
    }

    .emi-cta {
        margin-left: 0;
    }

    .promo-strip-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .promo-strip-badges {
        gap: 12px;
    }

    .trust-inner {
        grid-template-columns: repeat(2, 1fr);
        gap: 26px;
    }

    .trust-item {
        padding: 0;
        border-right: none;
    }

    .site-footer {
        padding: 44px 16px 80px;
    }

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

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

    .mobile-bottom-nav {
        display: flex;
        align-items: stretch;
    }
}

/* =========================================================
   SMALL MOBILE (â‰¤ 480px)
   ========================================================= */
@media (max-width: 480px) {
    .cat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }

    .trust-inner {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        grid-template-columns: 1fr;
    }

    .promo-strip-badges {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
    }

    .promo-badge {
        min-width: 0;
    }

    .ugc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* =========================================================
   HOME PAGE ONLY â€” Black section background
   This is scoped to the homepage so other pages are not affected.
   ========================================================= */
body.home .section-wrap,
body.home-page .section-wrap,
.home-page .section-wrap,
.template-index .section-wrap,
body:has(.hero-slider) .section-wrap {
    background-color: #000 !important;
}

/* =========================================================
   FINAL FIX â€” Product card left/right padding + equal height
   Scope: product cards + Shoopy scroll animation wrapper
   ========================================================= */
.product-row,
.coll-products,
.feature-grid {
    align-items: stretch !important;
}

.product-row .scroll-animate-item,
.coll-products .scroll-animate-item,
.feature-grid .scroll-animate-item,
.section-wrap .scroll-animate-item:has(.product-card),
.section-wrap .scroll-animate-item:has(.product-info),
.section-wrap .scroll-animate-item:has(.product-card-info) {
    height: 100% !important;
    display: flex !important;
}

.product-row .scroll-animate-item>*,
.coll-products .scroll-animate-item>*,
.feature-grid .scroll-animate-item>*,
.section-wrap .scroll-animate-item:has(.product-card)>*,
.section-wrap .scroll-animate-item:has(.product-info)>*,
.section-wrap .scroll-animate-item:has(.product-card-info)>* {
    width: 100% !important;
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.product-card {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.product-card-link {
    height: 100% !important;
    display: flex !important;
    flex-direction: column !important;
}

.product-img-wrap,
.product-card-image-container {
    flex: 0 0 auto !important;
}

.product-info,
.product-card-info,
.scroll-animate-item [class*="product-info"],
.scroll-animate-item [class*="card-info"] {
    padding: 16px 18px 18px !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    min-height: 116px !important;
}

.product-name,
.product-card-name,
.scroll-animate-item [class*="product-name"],
.scroll-animate-item [class*="product-title"] {
    min-height: 42px !important;
    margin-bottom: 12px !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    overflow: hidden !important;
    color:#fff;
}

.product-price-row,
.product-card-price-row,
.scroll-animate-item [class*="price-row"] {
    margin-top: auto !important;
    color:#fff;

}

@media (max-width: 768px) {

    .product-info,
    .product-card-info,
    .scroll-animate-item [class*="product-info"],
    .scroll-animate-item [class*="card-info"] {
        padding: 13px 14px 15px !important;
        min-height: 108px !important;
    }

    .product-name,
    .product-card-name,
    .scroll-animate-item [class*="product-name"],
    .scroll-animate-item [class*="product-title"] {
        min-height: 40px !important;
        margin-bottom: 10px !important;
        color:#ffffff;
    }
}

.page-container-s {
    max-width: 1200px;
    background-color: #FFF !important;
    color: #000 !important;
}

.product-card-info {
    color: #fff !important;
}

.py-4 {

    background-color: #fff !important;
    color: #000 !important;
}

.product-card-price 
{
color:#fff !important;
}

.section .section-2
{
background-color:#fff;
}
.section .section-5 
{
background-color:#fff;
}
.section .section-6 
{
background-color:#fff;
}
.community-head h2
{
color:#fff;
}

.bike-head h2
{
color:#fff;
}
.reviews-head h2 
{
color:#fff;
}
.heading-title
{
color:#fff !important;
}

/* =========================================================
   FINAL OVERFLOW FIX — Full website safety
   Fixes horizontal scroll/overflow from grids, headers, sliders,
   product rows, footer, dropdowns and long text.
   ========================================================= */

/* Global box sizing and viewport overflow control */
*,
*::before,
*::after {
    box-sizing: border-box !important;
}

html,
body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Prevent media and embeds from creating horizontal overflow */
img,
svg,
video,
canvas,
iframe {
    max-width: 100% !important;
}

/* Main wrappers should never exceed viewport width */
.site-header,
.announcement-bar,
.hero-slider,
.usp-strip,
.section-wrap,
.bike-section,
.bike-inner,
.feature-section,
.feature-inner,
.season-section,
.season-inner,
.collection-section,
.collection-inner,
.youtube-section,
.youtube-inner,
.emi-banner,
.emi-banner-inner,
.promo-strip,
.promo-strip-inner,
.brands-section,
.community-section,
.community-inner,
.reviews-section,
.reviews-inner,
.trust-section,
.trust-inner,
.site-footer,
.footer-inner,
.footer-bottom {
    max-width: 100% !important;
    min-width: 0 !important;
}

/* Keep content containers inside the screen */
.section-wrap,
.bike-inner,
.feature-inner,
.season-inner,
.youtube-inner,
.community-inner,
.reviews-inner,
.promo-strip-inner,
.trust-inner,
.footer-inner,
.footer-bottom {
    width: 100% !important;
}

/* Header overflow protection */
.header-top,
.main-nav,
.header-right,
.site-logo {
    min-width: 0 !important;
}

.main-nav {
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scrollbar-width: none !important;
    -webkit-overflow-scrolling: touch !important;
}

.main-nav::-webkit-scrollbar {
    display: none !important;
}

.header-right {
    flex-shrink: 0 !important;
}

/* Dropdown should not push page width */
.dropdown {
    max-width: calc(100vw - 32px) !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
}

.dropdown-cols {
    min-width: 0 !important;
}

/* Grid and flex layouts overflow protection */
.product-row,
.cat-grid,
.feature-grid,
.bike-grid,
.season-grid,
.coll-products,
.yt-grid,
.blog-grid,
.ugc-grid,
.reviews-grid,
.brands-strip,
.promo-strip-badges {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
}

/* Product card and card wrappers */
.product-card,
.product-card-link,
.scroll-animate-item,
.scroll-animate-item > *,
.product-info,
.product-card-info {
    min-width: 0 !important;
    max-width: 100% !important;
}

/* Product rows should scroll inside themselves, not the whole page */
@media (max-width: 1024px) {
    .product-row {
        width: 100% !important;
        max-width: 100% !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scrollbar-width: none !important;
        -webkit-overflow-scrolling: touch !important;
        overscroll-behavior-x: contain !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    .product-row::-webkit-scrollbar {
        display: none !important;
    }

    .product-row .product-card,
    .product-row .scroll-animate-item {
        flex: 0 0 auto !important;
        max-width: 210px !important;
    }
}

@media (max-width: 768px) {
    .header-top,
    .section-wrap,
    .bike-inner,
    .feature-inner,
    .season-inner,
    .youtube-inner,
    .community-inner,
    .reviews-inner,
    .collection-inner,
    .promo-strip,
    .trust-section,
    .emi-banner,
    .site-footer {
        padding-left: 16px !important;
        padding-right: 16px !important;
    }

    .slide-content {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    .product-row .product-card,
    .product-row .scroll-animate-item {
        max-width: 158px !important;
    }

    .coll-products,
    .feature-grid {
        gap: 10px !important;
    }
}

@media (max-width: 480px) {
    .header-top,
    .section-wrap,
    .bike-inner,
    .feature-inner,
    .season-inner,
    .youtube-inner,
    .community-inner,
    .reviews-inner,
    .collection-inner,
    .promo-strip,
    .trust-section,
    .emi-banner,
    .site-footer {
        padding-left: 14px !important;
        padding-right: 14px !important;
    }

    .product-row .product-card,
    .product-row .scroll-animate-item {
        max-width: 152px !important;
    }

    .footer-bottom {
        align-items: center !important;
        text-align: center !important;
    }
}

/* Long text should wrap instead of pushing layout */
.product-name,
.product-card-name,
.section-title,
.feature-h,
.bike-head h2,
.youtube-head h2,
.community-head h2,
.reviews-head h2,
.promo-strip-text h2,
.footer-col a,
.footer-about,
.trust-desc,
.review-text,
.blog-title,
.blog-excerpt {
    overflow-wrap: anywhere !important;
    word-break: normal !important;
}

/* Footer final overflow control */
.footer-inner,
.footer-bottom {
    overflow: hidden !important;
}

.footer-bottom {
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.ProductInfiniteScroll-component
{
background-color:#000;
}