.bikes-listing-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 32px 0 60px;
}
/* Popular searches */

.bikes-popular-searches {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #e5e7eb;
}

.bikes-popular-searches h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #111827;
}

.bikes-popular-searches ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 14px;
}

.bikes-popular-searches li {
    font-size: 13px;
}

.bikes-popular-searches a {
    color: #dc2626;
    text-decoration: none;
}

.bikes-popular-searches a:hover {
    text-decoration: underline;
}
/* HEADER */

.bikes-listing-header {
    margin-bottom: 20px;
}

.bikes-breadcrumbs {
    font-size: 12px;
    color: #9ca3af;
    margin-bottom: 8px;
}

.bikes-breadcrumbs a {
    color: #9ca3af;
    text-decoration: none;
}

.bikes-breadcrumbs a:hover {
    text-decoration: underline;
}

.bikes-listing-title {
    font-size: 26px;
    font-weight: 700;
    margin: 0 0 8px;
    color: #111827;
}

.bikes-listing-subtitle {
    font-size: 14px;
    color: #4b5563;
    max-width: 680px;
    margin: 0 0 12px;
}

.bikes-listing-meta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 13px;
    color: #6b7280;
}

.bikes-listing-count strong {
    font-weight: 600;
    color: #111827;
}

/* FILTER BAR */

.bikes-filter-bar {
    margin-top: 18px;
    margin-bottom: 22px;
}

.bikes-filter-form {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    padding: 16px 18px;
}

.bikes-filter-row {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 12px;
}

.bikes-filter-field label {
    display: block;
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
    margin-bottom: 4px;
}

.bikes-filter-field select {
    width: 100%;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    padding: 8px 12px;
    font-size: 13px;
    color: #111827;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.15s ease, background-color 0.15s ease;
}

.bikes-filter-field select:focus {
    border-color: #f97316;
    background: #ffffff;
}

.bikes-filter-actions {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

.bikes-filter-submit {
    border: none;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    background: #dc2626;
    color: #ffffff;
    box-shadow: 0 10px 25px rgba(220, 38, 38, 0.35);
    transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.bikes-filter-submit:hover {
    background: #b91c1c;
    box-shadow: 0 16px 40px rgba(185, 28, 28, 0.4);
    transform: translateY(-1px);
}

/* EMPTY STATE */

.bikes-empty-state {
    margin-top: 24px;
    padding: 24px 24px 22px;
    border-radius: 20px;
    background: #ffffff;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
}

.bikes-empty-state h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #111827;
}

.bikes-empty-state p {
    font-size: 14px;
    color: #4b5563;
    margin: 0;
}

.bikes-empty-state a {
    color: #dc2626;
    text-decoration: none;
    font-weight: 500;
}

.bikes-empty-state a:hover {
    text-decoration: underline;
}

/* LIST & CARDS */

.bikes-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 4px;
}

/* One bike per row, 3 columns: media / main / price+CTA */

.bike-card {
    display: grid;
    grid-template-columns: 260px minmax(0, 1.5fr) 220px;
    gap: 18px;
    align-items: stretch;
    background: #ffffff;
    border-radius: 22px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
    padding: 14px 18px;
}

/* LEFT: IMAGE */

.bike-card-media {
    position: relative;
    display: block;
    border-radius: 18px;
    overflow: hidden;
    background: #f3f4f6;
}

.bike-card-image {
    width: 100%;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    display: block;
}

.bike-card-image--placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-size: 13px;
}

/* Featured ribbon */

.bike-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    border-radius: 999px;
    background: linear-gradient(90deg, #dc2626, #f97316);
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.55);
}

/* MIDDLE: TITLE + META + DEALER */

/* MAIN COLUMN – vertical stack */
.bike-card-main {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Space between title+chips and dealer row */
.bike-card-top {
    margin-bottom: 4px;
}

.bike-card-title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 6px;
    color: #111827;
}

.bike-card-title a {
    color: inherit;
    text-decoration: none;
}

.bike-card-title a:hover {
    color: #b91c1c;
}

.bike-card-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.bike-chip {
    display: inline-flex;
    align-items: center;
    border-radius: 999px;
    padding: 3px 9px;
    font-size: 12px;
    color: #374151;
    background: #f3f4f6;
}

/* Dealer row under title/specs */
.bike-card-dealer {
    margin-top: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.bike-card-dealer-logo {
    flex-shrink: 0;
}

.bike-card-dealer-logo img {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    object-fit: cover;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.18);
}

.bike-card-dealer-text {
    display: flex;
    flex-direction: column;
}

.bike-card-dealer-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #9ca3af;
}

.bike-card-dealer-name {
    font-size: 13px;
    font-weight: 600;
    color: #111827;
    text-decoration: none;
}

/* RIGHT: PRICE + CTA */

.bike-card-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    text-align: right;
    gap: 10px;
}

.bike-card-price-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin-bottom: 2px;
}

.bike-card-price-main {
    font-size: 20px;
    font-weight: 700;
    color: #111827;
}

.bike-card-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    padding: 8px 18px;
    min-width: 140px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    background: #dc2626;
    color: #ffffff;
    box-shadow: 0 12px 30px rgba(220, 38, 38, 0.5);
    transition: background-color 0.15s ease, box-shadow 0.15s ease, transform 0.1s ease;
}

.bike-card-cta:hover {
    background: #b91c1c;
    box-shadow: 0 16px 36px rgba(185, 28, 28, 0.55);
    transform: translateY(-1px);
}

/* PAGINATION */

.bikes-pagination {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.bikes-page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    font-size: 13px;
    border-radius: 999px;
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #4b5563;
    text-decoration: none;
    transition: background-color 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.bikes-page-link:hover {
    border-color: #f97316;
    color: #111827;
}

.bikes-page-link.is-active {
    background: #dc2626;
    border-color: #dc2626;
    color: #ffffff;
}

/* SEO FOOTER */

.bikes-seo-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.bikes-seo-footer h2 {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 8px;
    color: #111827;
}

.bikes-seo-footer p {
    font-size: 14px;
    color: #4b5563;
    margin: 0 0 6px;
}

.bikes-seo-updated {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 4px;
}

/* RESPONSIVE */

@media (max-width: 1024px) {
    .bikes-filter-row {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .bike-card {
        grid-template-columns: 220px minmax(0, 1.4fr) 200px;
    }
}

@media (max-width: 768px) {
    .bikes-listing-page {
        padding: 20px 0 40px;
    }

    .bikes-filter-row {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .bike-card {
        grid-template-columns: 1fr;
        padding: 12px 12px 14px;
    }

    .bike-card-media {
        border-radius: 18px;
        overflow: hidden;
    }

    .bike-card-side {
        align-items: flex-start;
        text-align: left;
    }

    .bike-card-price-main {
        font-size: 18px;
    }

    .bikes-listing-header {
        margin-bottom: 14px;
    }
}

@media (max-width: 480px) {
    .bikes-filter-row {
        grid-template-columns: 1fr;
    }

    .bikes-filter-form {
        padding: 14px 14px;
    }

    .bike-card-title {
        font-size: 16px;
    }
}
