﻿/* ========= GLOBALS ========= */
body {
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
    margin: 0;
    padding: 0;
    color: #222;
}

h2, h3, h1 {
    font-weight: 700;
    color: #0d47a1;
    margin-bottom: 15px;
}

/* Section wrapper */
.top-browse-section {
    padding: 40px 20px;
    background: #f8f9fa;
}

.bg-col {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0px 2px 10px rgba(0,0,0,0.08);
    margin-bottom: 20px;
    transition: transform 0.2s ease-in-out;
}

    .bg-col:hover {
        transform: translateY(-4px);
    }

/* ========= BRANDS & BODY TYPES ========= */
.item-list {
    margin-top: 15px;
}

.row-flex {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    flex-wrap: wrap;
}

.brand-item {
    flex: 1 1 22%;
    margin: 10px 0;
    cursor: pointer;
    transition: transform 0.3s ease-in-out;
}

    .brand-item:hover {
        transform: scale(1.05);
    }

    .brand-item img {
        display: block;
        margin: 0 auto 8px;
        max-width: 70px;
        height: auto;
    }

.type-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #444;
}

/* ========= LINK LISTS ========= */
.link-list a {
    display: block;
    padding: 6px 0;
    color: #1976d2;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

    .link-list a:hover {
        color: #0d47a1;
        text-decoration: underline;
    }

/* ========= OTHER SPECS ========= */
.o-spec-row {
    margin: 6px 0;
    font-size: 14px;
}

.o-spec-link {
    margin-left: 6px;
    color: #1976d2;
    font-weight: 500;
    text-decoration: none;
}

    .o-spec-link:hover {
        text-decoration: underline;
        color: #0d47a1;
    }

/* ========= COLORS ========= */
.color-col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}

.color-item span {
    display: inline-block;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    box-shadow: 0px 1px 3px rgba(0,0,0,0.2);
    cursor: pointer;
    transition: transform 0.2s;
}

    .color-item span:hover {
        transform: scale(1.1);
    }

/* ========= WAVE SECTION ========= */
.wave-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

    .wave-container svg {
        display: block;
        width: 100%;
        height: 150px;
    }

.wave {
    animation: wave-move 6s infinite linear alternate;
}

@keyframes wave-move {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50px);
    }
}

/* ========= CFJ CAMPAIGNS ========= */
.card-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 0 15px;
}

.card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0px 2px 12px rgba(0,0,0,0.1);
    overflow: hidden;
    transition: transform 0.25s;
}

    .card:hover {
        transform: translateY(-6px);
    }

    .card img {
        width: 100%;
        display: block;
        height: auto;
    }

    .card p {
        padding: 12px;
        font-size: 14px;
        color: #333;
    }

        .card p b {
            display: block;
            color: #0d47a1;
            margin-bottom: 6px;
        }

/* ========= RESPONSIVE ========= */
@media (max-width: 992px) {
    .row-flex {
        justify-content: center;
    }

    .brand-item {
        flex: 1 1 30%;
    }
}

@media (max-width: 768px) {
    h2, h3, h1 {
        font-size: 18px;
    }

    .brand-item {
        flex: 1 1 45%;
    }
}

@media (max-width: 576px) {
    .brand-item {
        flex: 1 1 100%;
    }

    .color-col {
        grid-template-columns: repeat(3, 1fr);
    }
}


/* Base Section Styling */
section {
    position: relative;
    width: 100%;
    background: #e3f2fd; /* Light blue background to blend with waves */
    overflow: hidden;
    padding: 0;
    margin: 0;
}

/* Container to manage the wave SVG */
.wave-container {
    position: relative;
    width: 100%;
    height: 150px; /* Matches SVG height */
    overflow: hidden;
    line-height: 0;
}

    /* Responsive SVG */
    .wave-container svg {
        position: absolute;
        display: block;
        width: 100%;
        height: 100%;
        bottom: 0;
        left: 0;
    }

/* Individual Wave Styling */
.wave {
    animation: waveMove 10s ease-in-out infinite;
}

    /* Animate with staggered delays */
    .wave:nth-child(2) {
        animation-delay: -2s;
        opacity: 0.9;
    }

    .wave:nth-child(3) {
        animation-delay: -4s;
        opacity: 0.7;
    }

    .wave:nth-child(4) {
        animation-delay: -6s;
        opacity: 0.5;
    }

    .wave:nth-child(5) {
        animation-delay: -8s;
        opacity: 0.3;
    }

/* Wave Animation Keyframes */
@keyframes waveMove {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(-2.5%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Accessories row container */
.o-spec-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center; /* vertical centering */
    justify-content: center; /* horizontal centering */
    gap: 16px;
    padding: 40px 25px;
    min-height: 250px; /* ensures vertical centering works well */
    background: linear-gradient(145deg, #eef2f7, #f9fbff);
    border-radius: 24px; /* more rounded corners */
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    position: relative;
    overflow: hidden;
}

    /* Fancy subtle background effect */
    .o-spec-row::before {
        content: "";
        position: absolute;
        top: -40%;
        left: -40%;
        width: 180%;
        height: 180%;
        background: radial-gradient(circle, rgba(0,123,255,0.08) 0%, transparent 70%);
        animation: pulseBg 7s infinite alternate;
        border-radius: 50%; /* makes the background effect smoother */
    }

@keyframes pulseBg {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    100% {
        transform: scale(1.3);
        opacity: 0.8;
    }
}

/* Heading */
.o-spec-row h3 {
    flex: 1 1 100%;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
}

    .o-spec-row h3::after {
        content: "";
        display: block;
        width: 80px;
        height: 4px;
        margin: 10px auto 0;
        background: linear-gradient(90deg, #007bff, #00c6ff);
        border-radius: 2px;
    }

/* Each link (pill style) */
.o-spec-link {
    display: flex; /* make text center inside pill */
    align-items: center; /* vertical align */
    justify-content: center; /* horizontal align */
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    background: #ffffff;
    border: 2px solid transparent;
    border-radius: 50px; /* smoother pill shape */
    transition: all 0.4s ease;
    box-shadow: 0 3px 12px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    min-width: 140px; /* gives uniform pill buttons */
    text-align: center;
}

    /* Shiny gradient hover effect */
    .o-spec-link::before {
        content: "";
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(120deg, rgba(0,123,255,0.15), rgba(0,123,255,0.4));
        transition: all 0.4s ease;
    }

    .o-spec-link:hover::before {
        left: 0;
    }

    /* Hover states */
    .o-spec-link:hover,
    .o-spec-link:focus {
        color: #fff;
        background: linear-gradient(135deg, #007bff, #00c6ff);
        border-color: transparent;
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 10px 24px rgba(0,123,255,0.3);
    }

    /* Active click state */
    .o-spec-link:active {
        transform: scale(0.95);
        box-shadow: 0 4px 10px rgba(0,123,255,0.25);
    }

/* Responsive */
@media (max-width: 768px) {
    .o-spec-link {
        padding: 10px 16px;
        font-size: 0.9rem;
        min-width: auto;
    }

    .o-spec-row {
        padding: 30px 15px;
        min-height: auto;
    }

        .o-spec-row h3 {
            font-size: 1.4rem;
        }
}



/* Outer container */
.bg-col {
    background: linear-gradient(145deg, #f5f8ff, #eef2f7);
    border-radius: 20px;
    padding: 25px 15px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
    min-height: 320px; /* keeps it balanced in height */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
}

    /* Subtle glowing animated effect */
    .bg-col::before {
        content: "";
        position: absolute;
        top: -40%;
        left: -40%;
        width: 180%;
        height: 180%;
        background: radial-gradient(circle, rgba(0,123,255,0.08), transparent 70%);
        border-radius: 50%;
        animation: pulseMileage 7s infinite alternate;
    }

@keyframes pulseMileage {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    100% {
        transform: scale(1.2);
        opacity: 0.9;
    }
}

/* Heading */
.bg-col h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a237e;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}

    .bg-col h3::after {
        content: "";
        display: block;
        width: 40px;
        height: 3px;
        margin: 8px auto 0;
        background: linear-gradient(90deg, #007bff, #00c6ff);
        border-radius: 2px;
    }

/* Links wrapper */
.link-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    position: relative;
    z-index: 1;
}

    /* Each mileage link (pill style) */
    .link-list a {
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 10px 12px;
        font-size: 0.95rem;
        font-weight: 600;
        color: #333;
        text-decoration: none;
        background: #fff;
        border: 2px solid transparent;
        border-radius: 25px;
        transition: all 0.35s ease;
        box-shadow: 0 2px 6px rgba(0,0,0,0.06);
        position: relative;
        overflow: hidden;
    }

        /* Hover shiny effect */
        .link-list a::before {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, rgba(0,123,255,0.15), rgba(0,123,255,0.4));
            transition: all 0.4s ease;
        }

        .link-list a:hover::before {
            left: 0;
        }

        /* Hover state */
        .link-list a:hover {
            color: #fff;
            background: linear-gradient(135deg, #007bff, #00c6ff);
            border-color: transparent;
            transform: translateY(-3px) scale(1.03);
            box-shadow: 0 8px 18px rgba(0,123,255,0.25);
        }

        /* Active state */
        .link-list a:active {
            transform: scale(0.95);
            box-shadow: 0 3px 10px rgba(0,123,255,0.2);
        }

/* Responsive tweaks */
@media (max-width: 768px) {
    .bg-col {
        min-height: auto;
        padding: 20px 12px;
    }

        .bg-col h3 {
            font-size: 1.2rem;
        }

    .link-list a {
        font-size: 0.85rem;
        padding: 8px 10px;
    }
}















.spec-box {
    margin-bottom: 15px;
}

.spec-links a {
    display: inline-block;
    margin: 3px 4px;
    padding: 2px 6px;
    font-size: 14px;
    color: #007bff;
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    white-space: nowrap;
}

    .spec-links a:hover {
        background-color: #f0f0f0;
        text-decoration: underline;
    }













.bg-col {
    background-color: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

    /* Title */
    .bg-col h3 {
        font-weight: bold;
        margin-bottom: 20px;
    }

/* Brand grid */
.item-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

/* Brand item */
.brand-item {
    width: 100px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    background-color: #fff;
    text-align: center;
}

    .brand-item:hover {
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
    }

    /* Brand logo */
    .brand-item img {
        width: 50px;
        height: 50px;
        object-fit: contain;
        margin-bottom: 8px;
        transition: transform 0.3s ease;
    }

    .brand-item:hover img {
        transform: scale(1.1);
    }

/* Brand name */
.type-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    margin-top: 5px;
}

/* Responsive adjustments */
@media (max-width: 576px) {
    .brand-item {
        width: 80px;
        padding: 8px;
    }

        .brand-item img {
            width: 40px;
            height: 40px;
        }

    .type-label {
        font-size: 13px;
    }
}















.wo-mainbanner-wrap {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow: hidden;
}

.wo-banner {
    position: relative;
    width: 100%;
}

.wo-banner__silder figure {
    position: relative;
    margin: 0;
}

.wo-banner__silder img {
    width: 100%;
    height: 100vh; /* makes banner full screen height */
    object-fit: cover; /* keeps image proportion while filling space */
    display: block;
}

.wo-slidercontent {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: #fff;
    max-width: 600px;
    z-index: 10;
}

    .wo-slidercontent h1 {
        font-size: 3rem;
        font-weight: 700;
        color: #fff;
    }

    .wo-slidercontent span, .wo-slidercontent sup, .wo-slidercontent em {
        color: #ffd700;
    }

/* Hide default Owl nav dots if not needed */
.owl-dots {
    display: none;
}

/* Optional nav arrows styling */
.wo-bannernav {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    padding: 0 20px;
}

.wo-prev span, .wo-next span {
    font-size: 40px;
    color: white;
    cursor: pointer;
    transition: 0.3s;
}

    .wo-prev span:hover, .wo-next span:hover {
        color: #ffd700;
    }

































































































































