/* =========================
   BIKES PAGE
========================= */

#main .inner {
    max-width: 1200px;
    margin: 0 auto;
}

/* Section */
.bikes-section {
    padding: 60px 0;
}

/* Grid */
.bike-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

/* Card */
.bike-card {
    background: #2e3450;
    border-radius: 14px;
    padding: 30px;
    text-align: center;

    box-shadow: 0 10px 25px rgba(0,0,0,0.25);

    transition: transform 0.3s ease;
}

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

/* Image */
.bike-image {
    width: 100%;
    height: 260px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 25px;

    background: #1f2438;
}

.bike-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Titles */
.bike-card h2 {
    margin-bottom: 8px;
    color: #ffffff;
    letter-spacing: 1px;
}

.bike-card h3 {
    margin-bottom: 20px;
    color: #8ea9ff;
    font-weight: 400;
}

/* Text */
.bike-card p {
    line-height: 1.8;
    margin-bottom: 0;
}

/* Mobile */
@media screen and (max-width: 768px) {

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

    .bike-image {
        height: 220px;
    }

}
