* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    user-select: none;
}
/* global thin scrollbars */
div {
    scrollbar-width: thin;
    scrollbar-color: #9ca3af00 rgba(0, 0, 0, 0);
}
div::-webkit-scrollbar {
    width: 10px;
    
    background: #f8fafc;
    height: 10px;
}
div::-webkit-scrollbar-thumb {
    background: transparent;
    border-radius: 999px;
    border: 2px solid #f8fafc00; /* creates padding around thumb */
    background-clip: content-box;
}
div::-webkit-scrollbar-track {
    background: #f8fafc;
}
body {
    font-family: "Poppins", sans-serif;
    background: #f5f6fa;
    overflow-x: hidden;
    min-height: 200vh;
}
.web-wrapper {
    width: 100%;
}

/* Product card */
/* Product card styles — compact, screenshot-inspired */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

/* card */
.product-card {
    background: #ffffff;
    border-radius: 10px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    overflow: hidden;
    display: flex;
    width: 250px;
    flex-direction: column;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
    min-height: 100%;
}

/* hover lift */
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(12, 29, 66, 0.08);
}

/* image area */
.card-img {
    background: #f2f4f6;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 170px;
}
.card-img img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
    display: block;
}

/* body */
.card-body {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.card-title {
    font-size: 15px;
    margin: 0;
    font-weight: 600;
    color: #111827;
}
.card-subtitle {
    margin: 0;
    font-size: 13px;
    color: #6b7280;
}

/* price */
.card-price {
    margin: 6px 0 0;
    font-weight: 700;
    color: #0b5ed7; /* blue-ish price in screenshot */
    font-size: 15px;
}
.card-price .star {
    font-size: 11px;
    color: #6b7280;
    margin-left: 4px;
}

/* CTA outline like screenshot (red-outline) */
.btn.btn-outline-offer {
    margin-top: 12px;
    display: inline-block;
    padding: 10px 14px;
    border-radius: 8px;
    border: 2px solid #d64545; /* brand red */
    color: #d64545;
    background: transparent;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
}
.btn.btn-outline-offer:hover {
    background: #d64545;
    color: #fff;
    text-decoration: none;
}

/* small badge slot */
.badge-verified {
    display: inline-block;
    font-size: 11px;
    background: #eef8f3;
    color: #0b5d3a;
    padding: 3px 8px;
    border-radius: 999px;
    margin-left: 8px;
}

/* responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 640px) {
    .product-grid {
        grid-template-columns: 1fr;
    }
}

/* Home */
/* landing.css — hero + sections (mobile-first) */
:root {
    --bg: #0f1724; /* deep navy background used in screenshot */
    --muted: #6b7280;
    --card: #ffffff;
    --accent: #d64545; /* offer red */
    --primary: #0b5ed7;
    --radius: 12px;
    --gap: 1rem;
    --max-width: 1200px;
    --container-pad: 1rem;
    --section-bg: #f8fafc;
}

/* base */
* {
    box-sizing: border-box;
}
body {
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
        "Helvetica Neue", Arial;
    color: #0f1724;
    margin: 0;
    background: var(--section-bg);
}
.wrap {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: var(--container-pad);
}

/* cards & utility */
.card {
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: 0 6px 18px rgba(12, 18, 30, 0.06);
    border: 1px solid rgba(2, 6, 23, 0.04);
    overflow: hidden;
}
h2 {
    margin: 0 0 0.5rem 0;
}
.section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.75rem;
}
.sub {
    color: var(--muted);
    font-size: 0.95rem;
}

/* HERO grid */
.hero {
    padding: 1rem 0 0 0;
}
.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.quick-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 0.75rem;
}
.quick-links a {
    font-size: 0.9rem;
    color: var(--muted);
    text-decoration: none;
}

/* Hero banner */
.hero-banner {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
    align-items: stretch;
    position: relative;
    overflow: visible;
}
.banner-content h1 {
    font-size: 1.4rem;
    margin: 0 0 0.25rem;
    color: #081129;
}
.banner-content p {
    margin: 0;
    color: var(--muted);
}
.banner-ctas {
    margin-top: 0.6rem;
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.banner-visual img {
    width: 100%;
    max-height: 220px;
    object-fit: contain;
}

/* SECTIONS general */
.section-panel {
    padding: 1.25rem 0;
}
.section-panel.muted {
    background: linear-gradient(180deg, #eef2f7, #f8fafc);
}
.section-footer {
    margin-top: 0.6rem;
}

/* CAROUSEL (horizontal scroll) */
.carousel {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding: 0.5rem 0.25rem;
    scroll-snap-type: x mandatory;
}
.carousel::-webkit-scrollbar {
    height: 8px;
}
.carousel::-webkit-scrollbar-thumb {
    background: #e0e6ef;
    border-radius: 999px;
}
.carousel .product-card {
    min-width: 260px;
    scroll-snap-align: start;
    display: flex;
    flex-direction: column;
}

/* product card */
.product-card {
    padding: 0;
    min-height: 260px;
}
.card-img {
    background: #f2f4f6;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-img img {
    max-width: 100%;
    max-height: 140px;
    object-fit: contain;
}
.card-body {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.card-title {
    font-size: 14px;
    margin: 0;
    font-weight: 600;
}
.card-price {
    font-weight: 700;
    color: var(--primary);
    margin: 0;
}
.card-price sup {
    font-size: 10px;
    color: var(--muted);
}
.btn {
    display: inline-block;
    padding: 9px 12px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}
.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-outline {
    border: 1px solid rgba(2, 6, 23, 0.06);
    background: transparent;
    color: var(--muted);
}
.btn-secondary {
    background: #0f1724;
    color: #fff;
}
.btn.btn-outline-offer {
    border: 2px solid var(--accent);
    color: var(--accent);
    background: transparent;
}
.btn.btn-outline-offer:hover {
    background: var(--accent);
    color: #fff;
}

/* upcoming grid */
.upcoming-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.upcoming-card img {
    width: 100%;
    height: 140px;
    object-fit: cover;
}

/* brands */
.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 0.75rem;
    align-items: center;
}
.brand-pill {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 10px;
    background: #fff;
    border-radius: 10px;
    text-decoration: none;
    color: #111;
}
.brand-pill img {
    width: 40px;
    height: 40px;
    object-fit: contain;
}
.spotlight-tabs {
    display: flex;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    border-bottom: 1px solid #e5e5e5;
}
.spotlight-tabs .tab {
    background: transparent;
    border: 0;
    padding: 8px 12px;
    border-radius: 0px;
    cursor: pointer;
    font-size: 0.9rem;
    color: var(--muted);
    font-weight: 600;
}
.spotlight-tabs .tab.active {
    border-bottom: #d64545 4px solid;
    color: #000;
    border-radius: 0px !important;
}
.bikescarousel {
    scroll-behavior: smooth;
    cursor: grab;
}
/* latest / reviews / comparisons */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}
.review-card {
    padding: 12px;
}
.comparisons-row {
    display: flex;
    gap: 1rem;
    overflow: auto;
    padding: 0.5rem 0;
}

/* media row: news, stories, videos */
.media-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}
.media-card img,
.story-card img,
.video-card img {
    width: 100%;
    height: 120px;
    object-fit: cover;
}
.stories-grid {
    display: flex;
    gap: 0.75rem;
    overflow: auto;
}

/* trusted grid */
.trusted-grid {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.trusted-pill {
    display: flex;
    gap: 0.5rem;
    align-items: center;
    padding: 10px 12px;
    background: #fff;
    border-radius: 10px;
    color: var(--muted);
}

/* small utility and responsiveness */
.link {
    color: var(--primary);
    text-decoration: none;
}
.meta {
    color: var(--muted);
    font-size: 0.9rem;
}
.card h3 {
    margin: 0;
    font-size: 1rem;
}
@media (min-width: 900px) {
    .hero-grid {
        grid-template-columns: 360px 1fr;
    }
    .carousel .product-card {
        min-width: 300px;
    }
    .upcoming-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    .media-row {
        grid-template-columns: 1fr 420px 320px;
    }
}
@media (max-width: 640px) {
    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .comparisons-row {
        flex-direction: column;
    }
    .hero-banner .banner-visual img {
        max-height: 160px;
    }
}

/* hero section */
/* HERO section styles (add after your root variables and existing hero CSS) */
.hero-hero {
    padding: 18px 0;
    background: linear-gradient(
        180deg,
        rgba(3, 7, 18, 0.9),
        rgba(3, 7, 18, 0.75)
    );
    color: #fff;
}
.hero-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: 360px 1fr;
    gap: 18px;
    align-items: stretch;
}

/* SEARCH CARD (left) */
.search-card {
    padding: 20px;
    border-radius: 18px;
    background: #fff;
    color: #081129;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.search-title {
    font-size: 22px;
    margin: 0 0 12px 0;
    font-weight: 700;
    color: #111827;
}

/* type tabs */
.type-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 12px;
}
.type-tab {
    background: #111827;
    color: #fff;
    border-radius: 10px;
    padding: 10px 18px;
    border: 0;
    cursor: pointer;
    font-weight: 600;
}
.type-tab:not(.active) {
    background: transparent;
    border: 1px solid rgba(2, 6, 23, 0.06);
    color: #111827;
}

/* form */
.hero-search-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 6px;
}
.search-mode {
    display: flex;
    gap: 18px;
    border: 0;
    padding: 0;
    margin: 0;
    align-items: center;
}
.radio {
    display: flex;
    gap: 8px;
    align-items: center;
    font-size: 14px;
    color: #6b7280;
}
.radio input {
    accent-color: #d64545;
    width: 16px;
    height: 16px;
}
.field select,
.field input {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid rgba(2, 6, 23, 0.06);
    background: #fff;
    font-size: 14px;
    color: #111827;
}

/* Search CTA */
.btn-search {
    margin-top: 6px;
    background: #d64545;
    color: #fff;
    border: 0;
    padding: 14px 18px;
    border-radius: 10px;
    font-weight: 700;
    cursor: pointer;
    font-size: 16px;
}
.btn-search:active,
.btn-search:focus {
    transform: translateY(1px);
}

/* footer link */
.search-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px;
}
.advanced-link {
    font-size: 13px;
    color: #6b7280;
    text-decoration: none;
}

/* HERO BANNER (right) */
.hero-banner {
    position: relative;
    overflow: visible;
    border-radius: 18px;
    padding: 0;
    min-height: 370px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.banner-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.35) saturate(0.95);
    border-radius: 18px 18px 18px 18px;
    z-index: 0;
}
.banner-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 0;
    align-items: end;
    padding: 28px;
    min-height: 360px;
}
.banner-copy {
    padding-right: 12px;
    align-self: end;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.brand-mark {
    width: 110px;
    height: auto;
    display: block;
    opacity: 0.95;
}
.banner-title {
    margin: 0;
    font-size: 28px;
    line-height: 1.02;
    font-weight: 700;
    letter-spacing: 0.6px;
}
.btn-cta {
    display: inline-block;
    padding: 10px 14px;
    background: #fff;
    color: #081129;
    border-radius: 6px;
    text-decoration: none;
    width: max-content;
    font-weight: 700;
    margin-top: 6px;
}
.banner-price {
    margin: 8px 0 0;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
}
.price-amount {
    font-size: 26px;
    color: #fff;
    margin-left: 6px;
}
.banner-sub {
    color: #d1d5db;
    font-size: 12px;
    margin: 0;
}

/* bike visual: right side */
.banner-visual {
    display: flex;
    align-items: end;
    justify-content: center;
    padding-left: 8px;
}
.banner-visual img {
    width: 100%;
    max-width: 520px;
    object-fit: contain;
    transform: translateY(6px);
    pointer-events: none;
}

/* responsive */
@media (max-width: 1100px) {
    .hero-wrap {
        grid-template-columns: 320px 1fr;
    }
    .banner-inner {
        grid-template-columns: 1fr 340px;
    }
    .banner-visual img {
        max-width: 380px;
    }
}
@media (max-width: 900px) {
    .hero-wrap {
        grid-template-columns: 1fr;
    }
    .search-card {
        order: 1;
        width: 100%;
        min-height: auto;
        margin-bottom: 12px;
    }
    .hero-banner {
        order: 2;
        min-height: 320px;
    }
    .banner-inner {
        grid-template-columns: 1fr;
        padding: 20px;
    }
    .banner-visual {
        justify-content: center;
        margin-top: 6px;
    }
    .banner-visual img {
        max-width: 320px;
    }
    .hero-ticker {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: flex-start;
    }
}
@media (max-width: 480px) {
    .search-card {
        padding: 16px;
        border-radius: 14px;
    }
    .type-tab {
        padding: 8px 12px;
        font-size: 14px;
    }
    .banner-title {
        font-size: 20px;
    }
    .price-amount {
        font-size: 20px;
    }
}

/* Spotlightbikes */
.section-panel {
    background-color: #eee;
}

.section-panel .wrap {
    padding: 20px 0;
    border-radius: 12px;
    background: #fff;
}

.section-panel .wrap .carousel,
.section-panel .wrap .upcoming-grid {
    padding: 10px 30px;
    gap: 15px;
}
.section-panel .section-footer {
    text-align: center;
}
/* .Spotlightbikes .btn {
    padding: 12px 20px;
    font-size: 15px;
    border-radius: 10px;
    background: #d64545;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
} */
.preloadercarousel {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    animation: pulse 1.5s infinite;
    border-radius: 10px;
}
.product-card.active {
    border: 2px solid #d64545;
}
.wrap .section-head {
    flex-direction: column !important;
    align-items: center;
}
.Spotlightbikes .spotlight-tabs {
    width: 100%;
    display: flex;
    justify-content: center;
    flex-wrap: no-wrap;
    gap: 0.5rem;
    overflow-x: auto;
}
.Spotlightbikes .spotlight-tabs .tab {
    flex: 0 0 auto;
    padding: 10px 16px;
    border-radius: 10px;
    font-size: 14px;
}
@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}
@media (max-width: 1000px) {
    .Spotlightbikes .wrap .section-head h2 {
        text-align: center;
    }

    .Spotlightbikes .carousel .product-card {
        width: 100%;
    }
    .Spotlightbikes .product-card .btn-outline-offer {
        text-align: center;
        width: 100%;
        font-size: 10px;
        padding: 12px 4px;
    }
}
.noresultmessage {
    text-align: center;
    color: #6b7280;
    font-size: 16px;
    font-weight: 500;
    padding: 20px;
    text-align: center;
}

/* footer */
/* Footer styles */
:root {
    --footer-bg: #ffffff;
    --footer-border: #e6e9ee;
    --muted: #6b7280;
    --accent: #d64545;
    --text: #0b1724;
    --container-max: 1200px;
}

.site-footer {
    background: var(--footer-bg);
    border-top: 1px solid var(--footer-border);
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, Arial;
}

/* top features row */
.footer-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    max-width: var(--container-max);
    margin: 18px auto 6px;
    padding: 18px 16px;
    align-items: center;
}
.footer-features .feature {
    display: flex;
    gap: 12px;
    align-items: center;
}
.footer-features .icon {
    width: 44px;
    height: 44px;
    color: var(--accent);
    flex: 0 0 44px;
}
.footer-features .feature-text strong {
    display: block;
    font-size: 15px;
}
.footer-features .muted {
    color: var(--muted);
    font-size: 13px;
}

/* main columns */
.footer-main {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 22px 16px;
    border-top: 1px solid var(--footer-border);
}
.footer-col h4 {
    font-size: 13px;
    letter-spacing: 0.6px;
    color: var(--text);
    margin: 0 0 10px;
    text-transform: uppercase;
}
.footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}
.footer-links li {
    margin: 8px 0;
}
.footer-links a {
    color: var(--muted);
    font-size: 14px;
    text-decoration: none;
}
.footer-links a:hover {
    color: var(--text);
    text-decoration: underline;
}

/* logos grid */
.footer-logos .logos-grid {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}
.footer-logos img {
    height: 28px;
    object-fit: contain;
    opacity: 0.95;
    filter: grayscale(10%);
}

/* bottom bar */
.footer-bottom {
    border-top: 1px solid var(--footer-border);
    margin-top: 6px;
    background: #fafafa;
    padding: 12px 0;
}
.bottom-inner {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
}
.copyright {
    color: var(--muted);
    font-size: 13px;
}
.socials {
    display: flex;
    gap: 10px;
    align-items: center;
}
.social {
    display: inline-flex;
    width: 36px;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: transparent;
    color: var(--muted);
    text-decoration: none;
    border: 1px solid rgba(11, 23, 36, 0.04);
}
.social:hover {
    color: var(--text);
    background: #fff;
    box-shadow: 0 3px 10px rgba(2, 6, 23, 0.04);
}
.social-icon {
    width: 18px;
    height: 18px;
    display: block;
}

/* responsive */
@media (max-width: 900px) {
    .footer-features {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-main {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
        padding: 18px 12px;
    }
    .bottom-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    .footer-logos img {
        height: 22px;
    }
}
@media (max-width: 480px) {
    .footer-features {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
    }
    .footer-features .feature {
        padding: 6px 0;
        border-bottom: 1px solid var(--footer-border);
    }
    .footer-main {
        grid-template-columns: 1fr;
        padding: 12px;
    }
    .bottom-inner {
        padding: 0 12px;
    }
}
