﻿.bike-image {
    width: 100%;
    aspect-ratio: 4/3; /* keeps consistent shape */
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain; /* ← instead of cover */
    background-color: #fff; /* optional padding background */
}

.pagination a,
.pagination span {
    display: flex; /* centers text easily */
    align-items: center; /* vertical center */
    justify-content: center; /* horizontal center */
    width: 40px; /* fixed box size for uniformity */
    height: 40px; /* same height */
    text-decoration: none;
    border: 1px solid #ddd;
    border-radius: 6px;
    color: #3D3D98 !important;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.2s ease;
    cursor: pointer;
}

    .pagination a:hover {
        background-color: #53C3BF;
        color: #3D3D98 !important;
        border-color: #53C3BF;
    }

.pagination .activePage a {
    background-color: #53C3BF;
    color: #3D3D98;
    border-color: #53C3BF !important;
    pointer-events: none;
}
.btn-arrow {
    position: absolute;
    bottom: 15px; /* distance from bottom */
    right: 15px; /* distance from right */
    width: 60px;
    height: 40px;
    background-color: #3D3D98;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50px;
    transition: background 0.3s ease;
}

    .btn-arrow i {
        font-size: 18px;
        color: #fff;
    }

    .btn-arrow:hover {
        background-color: #2c2c80;
    }
.bike-card-body{
    margin-bottom:50px;
}
.rz-dropdown {
    border: none !important;
    box-shadow: none !important;
    background: #F5F5F5 !important;
    color: #111111 !important;
    font-size: 13px !important;
    font-weight: 400 !important;
}