/* Bikes Listing Page Specific Styles */

.rid-menubar ul li a {
    font-size: 15px !important;
    margin-right: 20px !important;
}

.bikes-page-wrapper {
    background: #f8f9fa;
    padding: 0 0;
    min-height: 100vh;
}

.search-filter-section {
    background: white;
    padding: 25px;
    margin-top: 10px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 40px;
    transition: box-shadow 0.3s ease;
    box-sizing: border-box;
}

.search-filter-section.is-sticky {
    position: fixed;
    top: 100px;
    z-index: 10;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border-radius: 0;
    width: 1156px;
}

.search-filter-inner {
    max-width: 1140px;
    margin: 0 auto;
    box-sizing: border-box;
}

.search-filter-placeholder {
    height: 0;
}

.search-input-wrapper {
    position: relative;
    margin-bottom: 25px;
}

.search-input-wrapper input {
    width: 100%;
    padding: 14px 50px 14px 25px;
    border: 2px solid #f1f1f1;
    border-radius: 50px;
    font-size: 15px;
    transition: all 0.3s;
    background: #f9f9f9;
}

.search-input-wrapper input:focus {
    outline: none;
    border-color: #dc3545;
    background: #fff;
    box-shadow: 0 5px 20px rgba(220, 53, 69, 0.1);
}

.search-input-wrapper .search-icon {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    color: #ccc;
    font-size: 20px;
}

/* Engine Size Buttons */
.engine-buttons-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.engine-btn {
    padding: 9px 18px;
    border: 1px solid transparent;
    background: #f1f1f1;
    color: #555;
    font-size: 14px;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.engine-btn:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.engine-btn.active {
    background: #dc3545;
    color: white;
    box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
}

.hero-section {
    display: block;
    position: relative;
    width: 100%;
    left: 0px;
    right: 0px;
    height: 420px;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

/* Responsive heights */
@media (max-width: 992px) {
    .hero-section {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 320px;
    }
}

/* Category Section Headers */
.category-section-header {
    position: relative;
    margin-top: 30px;
    margin-bottom: 0;
    border-bottom: 1px solid #e5e7eb;
}

.category-section-header::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background: #e5e7eb;
}

.category-section-header:first-child {
    margin-top: 20px;
}

.cc-range-title {
    position: relative;
    display: inline-block;
    background: #e5e7eb;
    color: #374151;
    padding: 6px 16px;
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 8px 8px 0 0;
    top: 1px;
    margin-left: 12px;
    z-index: 1;
}

/* One-row filter layout */
.filter-row {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Search stays right */
.filter-search {
    margin-left: auto;
    position: relative;
    width: 280px;
    flex-shrink: 0;
}

.filter-search input {
    width: 100%;
    padding: 12px 40px 12px 18px;
    border: 2px solid #f1f1f1;
    border-radius: 50px;
    font-size: 14px;
    background: #f9f9f9;
}

.filter-search .search-icon {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 18px;
}

@media (max-width: 768px) {
    .filter-row {
        flex-direction: column;
        align-items: stretch;
    }

    .filter-search {
        width: 100%;
        margin-left: 0;
    }

    .engine-buttons-row {
        overflow-x: auto;
    }
}

#cc {
    bottom: 10px;
}

.loading-spinner {
    width: 60px;
}
.btn-quote {
    width: 100%;
    background: #b91c1c;
    color: #fff;
    border: none;
    padding: 15px 18px;
    font-weight: 800;
    font-size: 13px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
    box-shadow: 0 6px 14px rgba(185, 28, 28, .35);
    cursor: pointer;
    transition: all .3s ease;
}

.btn-quote:hover {
    background: #991b1b;
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(185, 28, 28, .45);
}

.loading-wrapper {
    text-align: center;
    padding: 60px 20px;
}

.no-results {
    background: white;
    border-radius: 8px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .engine-buttons-row {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 5px;
    }

    .engine-btn {
        white-space: nowrap;
    }
}
