/* Single Bike Details Page Specific Styles */
:root {
    --primary-color: #E42E46;
}

/* BREADCRUMB */
.page-breadcrumb-wrapper {
    background: #f3f4f6;
    padding: 15px 0;
}

.breadcrumb-box {
    background: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 13px;
}

.breadcrumb-box a {
    color: #6b7280;
    text-decoration: none;
}

.breadcrumb-box span {
    margin: 0 6px;
    color: #9ca3af;
}

.breadcrumb-box .active {
    font-weight: 600;
    color: #111827;
}

/* IMAGE */
.bike-details-main-img {
    width: 100%;
    border-radius: 10px;
}

.bike-image {
    cursor: pointer;
    border-radius: 6px;
    transition: 0.3s;
}

.bike-image:hover {
    opacity: 0.8;
}

/* SIDEBAR */
.booking-sidebar {
    position: relative;
    align-self: flex-start;
}

.booking-sidebar.is-fixed {
    position: fixed;
    top: 100px;
    width: inherit;
    max-height: calc(100vh - 120px);
    overflow-y: auto;
    z-index: 100;
}

.client-booking-card {
    background: #fff;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Ensure parent row allows positioning */
.container .row {
    overflow: visible !important;
}

.client-price-box {
    background: #0f172a;
    color: #fff;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.client-price-box h4 {
    margin: 5px 0;
    font-size: 26px;
    font-weight: 700;
    color: white;
}

.client-price-box small {
    display: block;
    font-size: 12px;
    letter-spacing: 1px;
}

.client-price-box span {
    font-size: 12px;
    opacity: 0.8;
}

.form-label {
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 5px;
}

.form-control {
    border-radius: 6px;
    height: 42px;
}

.btn-check-availability {
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 12px;
    font-weight: 600;
    width: 100%;
}

.btn-check-availability:hover {
    opacity: 0.9;
}

.rates-section {
    border-top: 1px solid #eee;
    padding-top: 15px;
    margin-top: 15px;
    font-size: 14px;
}

.rates-section h6 {
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    text-transform: uppercase;
    color: #6b7280;
}

.rates-section li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 6px;
}

.highlight-rate {
    color: var(--primary-color);
    font-weight: 700;
}

.whatsapp-line {
    font-size: 13px;
    margin-top: 15px;
    text-align: center;
    color: #6b7280;
}

.bike-tabs .nav-link {
    border: none;
    color: #9ca3af;
    font-weight: 600;
    margin-right: 25px;
}

.bike-tabs .nav-link.active {
    color: #E42E46;
    border-bottom: 3px solid #E42E46;
}

/* Related Bikes Section */
.related-bikes-section {
    margin-top: 60px;
    padding: 50px 0;
    background: #f8f9fa;
}

.related-bikes-title {
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #1f2937;
}

.related-bike-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.related-bike-card:hover {
    border-color: #E42E46;
    box-shadow: 0 8px 20px rgba(228, 46, 70, 0.15);
    transform: translateY(-4px);
}

.related-bike-img {
    height: 220px;
    background: #f3f4f6;
    overflow: hidden;
    position: relative;
}

.related-bike-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.related-bike-card:hover .related-bike-img img {
    transform: scale(1.05);
}

.related-bike-body {
    padding: 20px;
}

.related-bike-title {
    font-size: 16px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 12px;
    line-height: 1.3;
}

.related-bike-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #f1f1f1;
}

.related-bike-price {
    font-size: 16px;
    font-weight: 900;
    color: #E42E46;
}

.related-bike-price span {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}

.related-bike-view {
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    color: #6b7280;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.related-bike-view:hover {
    color: #E42E46;
    gap: 8px;
}

.related-bike-view i {
    font-size: 14px;
}

.tech-spec-box {
    background: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 18px;
}

.spec-icon {
    width: 55px;
    height: 55px;
    background: #f3f4f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: #374151;
}

.spec-item small {
    font-size: 12px;
    font-weight: 700;
    color: #6b7280;
    letter-spacing: 1px;
}

.spec-item h6 {
    font-size: 18px;
    font-weight: 700;
    margin-top: 4px;
}

.spec-icon i {
    font-size: 22px;
}

/* Ensure datepicker is always on top */
.ui-datepicker {
    z-index: 2000 !important;
}
