/* ===== Vehicle Detail Page Styles ===== */

/* Force header to be visible on vehicle page (no dark hero) */
.vehicle-page .header {
    background: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

.vehicle-page .logo-text {
    color: var(--dark);
}

.vehicle-page .nav-link {
    color: var(--gray-600);
}

.vehicle-page .nav-link:hover {
    color: var(--dark);
}

.vehicle-page .phone {
    color: var(--dark);
}

.vehicle-page .work-time {
    color: var(--gray-500);
}

.vehicle-page .burger-menu span {
    background: var(--dark);
}

/* Hide days indicator in sticky bar on vehicle page */
.vehicle-page .sticky-days-indicator {
    display: none;
}

/* Breadcrumbs */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 0;
    font-size: 0.875rem;
}

.breadcrumb-link {
    color: var(--gray-500);
    transition: var(--transition);
}

.breadcrumb-link:hover {
    color: var(--primary);
}

.breadcrumb-separator {
    color: var(--gray-400);
}

.breadcrumb-current {
    color: var(--gray-700);
    font-weight: 500;
}

/* Vehicle Header Section */
.vehicle-header {
    padding: 1rem 0 3rem;
}

.vehicle-header-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Vehicle Image Block */
.vehicle-image-block {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gray-100);
}

.vehicle-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.vehicle-category-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    padding: 0.5rem 1rem;
    background: var(--secondary);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
}

/* Vehicle Info Block */
.vehicle-info-block {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-left: 2rem;
}

.vehicle-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin: 0;
}

/* Quick Specs */
.vehicle-quick-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.quick-spec {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.quick-spec svg {
    color: var(--secondary);
}

/* Price Block */
.vehicle-price-block {
    padding: 0;
}

.price-main {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
}

.price-from {
    font-size: 1rem;
    color: var(--gray-500);
}

.price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary);
}

.price-period {
    font-size: 1rem;
    color: var(--gray-500);
}

.price-deposit {
    margin-top: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-600);
}

.price-deposit strong {
    color: var(--gray-900);
}

/* Calculated Price (when dates selected) */
.price-min-line {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
    margin-bottom: 0.25rem;
}

.price-min-line .price-from {
    font-size: 0.875rem;
    color: var(--gray-400);
    text-transform: lowercase;
}

.price-min-line .price-min-value {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.price-calculated {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.price-calculated-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--secondary);
}

.price-calculated-period {
    font-size: 0.9375rem;
    color: var(--gray-500);
}

.price-days-indicator {
    display: flex;
    flex-wrap: wrap;
    gap: 3px;
    margin-top: 0.5rem;
}

.price-days-indicator .day-square {
    width: 10px;
    height: 10px;
    border-radius: 2px;
}

.price-days-indicator .day-square.day-high {
    background-color: #E6E0F8;
}

.price-days-indicator .day-square.day-low {
    background-color: var(--primary);
}

.price-days-indicator .day-more {
    font-size: 11px;
    color: var(--gray-400);
    margin-left: 4px;
}

/* Booking Summary Enhancements */

/* All summary values are lavender/accent color */
.booking-summary .summary-value,
.booking-summary .booking-extra-price {
    color: var(--secondary);
    font-weight: 600;
}

/* Accent value (for deposit etc) */
.summary-value-accent {
    color: var(--secondary) !important;
    font-weight: 600;
}

/* Grand total section */
.booking-grand-total-section {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 2px solid var(--gray-200);
}

.summary-row-grand-total {
    padding: 0.5rem 0;
}

.summary-row-grand-total .summary-label {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
}

.summary-row-grand-total .summary-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary) !important;
}

/* CTA Buttons */
.vehicle-cta {
    display: flex;
    gap: 1rem;
}

.vehicle-cta .btn {
    justify-content: center;
}

/* Messengers */
.vehicle-messengers {
    display: flex;
    gap: 0.75rem;
}

.messenger-link {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    color: var(--gray-600);
    transition: var(--transition);
}

.messenger-link:hover {
    background: var(--gray-200);
    color: var(--gray-800);
}

/* Specs Sidebar in Hero */
.vehicle-specs-sidebar {

}

.specs-sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
}

.specs-sidebar-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.spec-sidebar-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
}

.spec-sidebar-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius-md);
    color: var(--white);
}

.spec-sidebar-icon.orange {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
}

.spec-sidebar-content {
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.spec-sidebar-label {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.spec-sidebar-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* Features List */
.vehicle-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem 1.5rem;
}

.vehicle-features-list .feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.vehicle-features-list .feature-item svg {
    color: var(--success);
    flex-shrink: 0;
}

/* Vehicle Specs Section */
.vehicle-specs-section {
    padding: 4rem 0;
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.content-main {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.section-block {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
}

.section-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
}

/* Vehicle Description */
.vehicle-description p {
    color: var(--gray-700);
    line-height: 1.8;
    font-size: 1rem;
}

/* Specs Grid */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.spec-card {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.spec-card:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.spec-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
    flex-shrink: 0;
}

.spec-icon.orange {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
}

.spec-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.spec-label {
    font-size: 0.875rem;
    color: var(--gray-600);
}

.spec-value {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* Sidebar */
.content-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}

.sidebar-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 1.25rem;
}

.features-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.feature-item svg {
    color: var(--success);
    flex-shrink: 0;
}

.sidebar-cta {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
}

.sidebar-cta p {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-bottom: 1.25rem;
}

.btn-block {
    width: 100%;
}

/* Vehicle Pricing Section */
.vehicle-pricing-section {
    padding: 2.5rem 0;
    background: var(--gray-50);
}

/* Section Header - override main styles for vehicle page */
.vehicle-pricing-section .section-header,
.booking-section .section-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 1.5rem;
}

.vehicle-pricing-section .section-title,
.booking-section .section-title {
    margin-bottom: 0.25rem;
    font-size: 1.5rem;
}

.vehicle-pricing-section .section-subtitle,
.booking-section .section-subtitle {
    color: var(--gray-600);
    font-size: 0.9375rem;
    margin-top: 0;
}

.pricing-table-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    box-shadow: var(--shadow-md);
    overflow-x: auto;
    margin-bottom: 1.5rem;
}

.pricing-table {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    color: var(--white);
}

.pricing-table th {
    padding: 0.625rem 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.8125rem;
}

.pricing-table th:first-child {
    border-radius: var(--radius-lg) 0 0 0;
}

.pricing-table th:last-child {
    border-radius: 0 var(--radius-lg) 0 0;
}


.pricing-table td {
    padding: 0.5rem 1rem;
    border-bottom: 1px solid var(--gray-200);
    vertical-align: middle;
    height: auto;
}

.pricing-table tbody tr:hover {
    background: var(--gray-50);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.pricing-days {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--gray-800);
    min-width: 80px;
}

.pricing-days svg {
    color: var(--secondary);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.pricing-amount {
    text-align: left;
    vertical-align: middle;
    position: relative;
}

.pricing-amount .price-value {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    color: var(--secondary);
}

.pricing-amount .price-label {
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 0.125rem;
}

.price-badge {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.25rem 0.5rem;
    background: var(--success);
    color: var(--white);
    border-radius: var(--radius-full);
    font-size: 0.625rem;
    font-weight: 600;
    white-space: nowrap;
}

/* Mobile Pricing Cards - hidden on desktop */
.pricing-cards-mobile {
    display: none;
}

/* Pricing Info Cards */
.pricing-info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.info-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-xl);
}

.info-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius-lg);
    color: var(--white);
    margin-bottom: 1.25rem;
}

.info-icon.orange {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
}

.info-content h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.info-value {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 0.5rem;
}

.info-description {
    font-size: 0.9375rem;
    color: var(--gray-600);
}

/* Vehicle Extras Section */
.vehicle-extras-section {
    padding: 4rem 0;
    background:
        linear-gradient(135deg, rgba(15, 23, 42, 0.92) 0%, rgba(30, 41, 59, 0.88) 100%),
        url('https://images.unsplash.com/photo-1469854523086-cc02fe5d8800?w=1920&q=80') center/cover no-repeat fixed;
    position: relative;
}

/* Two-column layout */
.extras-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
}

.extras-intro {

}

.extras-title {
    font-size: 52px;
    font-weight: 800;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 16px;
}

.extras-description {
    font-size: 18px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
}

/* Cards Grid */
.extras-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.extra-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
    border: 2px solid transparent;
}

.extra-card:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Hide the checkbox */
.extra-checkbox {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

/* Selected state */
.extra-card.selected {
    background: rgba(249, 115, 22, 0.15);
}

.extra-card.selected:hover {
    background: rgba(249, 115, 22, 0.2);
}

/* Check icon - hidden */
.extra-check {
    display: none;
}

/* Selected card icon becomes orange */
.extra-card.selected .extra-icon {
    background: linear-gradient(135deg, var(--primary) 0%, #ea580c 100%);
}

/* Selected summary */
.extras-selected-summary {
    margin-top: 1.5rem;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: var(--transition);
    min-height: 58px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
}

.extras-selected-summary.has-selection {
    background: rgba(249, 115, 22, 0.15);
    border-color: rgba(249, 115, 22, 0.3);
}

/* Placeholder state */
.extras-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9375rem;
    width: 100%;
}

.extras-placeholder svg {
    opacity: 0.6;
}

/* Selected info */
.extras-selected-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    width: 100%;
}

.extras-selected-info .selected-count,
.extras-selected-info .selected-total {
    font-size: 0.9375rem;
    color: var(--white);
}

.extras-selected-info strong {
    color: var(--primary);
    font-weight: 700;
}

.extra-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    border-radius: var(--radius-md);
    color: var(--white);
}

.extra-icon.orange {
    background: linear-gradient(135deg, var(--secondary-light) 0%, var(--secondary) 100%);
}

.extra-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.extra-name {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--white);
}

.extra-desc {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.6);
}

.info-banner-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    border-radius: var(--radius-lg);
    color: var(--white);
    flex-shrink: 0;
}

.info-banner-content {
    flex-grow: 1;
}

.info-banner-content h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.info-banner-content p {
    color: var(--gray-700);
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Vehicle Booking Section */
.vehicle-booking-section {
    padding: 4rem 0;
    background: var(--gray-50);
}

.booking-content {
    max-width: 900px;
    margin: 0 auto;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header .section-title {
    color: var(--gray-900);
}

.booking-header .section-subtitle {
    color: var(--gray-600);
    max-width: 100%;
    margin: 0.5rem auto 0;
}

.booking-form {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 3rem;
    box-shadow: var(--shadow-xl);
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.form-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-section-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--gray-200);
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-field-full {
    grid-column: 1 / -1;
}

.form-label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-700);
}

.required {
    color: var(--error);
}

.form-input,
.form-textarea {
    padding: 0.875rem 1.125rem;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-lg);
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--secondary);
    box-shadow: 0 0 0 3px rgba(159, 122, 234, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 100px;
}

/* Select inputs - arrow positioning */
select.form-input {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.125rem center;
    padding-right: 2.75rem;
    cursor: pointer;
}

select.form-input:focus {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%239F7AEA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
}

/* Toggle Switch */
.toggle-switch {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-top: 0.625rem;
    cursor: pointer;
    user-select: none;
}

.toggle-switch input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.toggle-slider {
    position: relative;
    width: 36px;
    height: 20px;
    background: var(--gray-300);
    border-radius: 10px;
    transition: var(--transition);
    flex-shrink: 0;
}

.toggle-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.toggle-switch input[type="checkbox"]:checked + .toggle-slider {
    background: var(--secondary);
}

.toggle-switch input[type="checkbox"]:checked + .toggle-slider::before {
    transform: translateX(16px);
}

.toggle-switch input[type="checkbox"]:focus + .toggle-slider {
    box-shadow: 0 0 0 3px rgba(159, 122, 234, 0.15);
}

.toggle-label {
    font-size: 0.8125rem;
    color: var(--gray-600);
    line-height: 1.2;
}

.toggle-switch input[type="checkbox"]:checked ~ .toggle-label {
    color: var(--secondary);
    font-weight: 500;
}

/* Consent Checkboxes */
.booking-consents {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1.25rem;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    border: 1px solid var(--gray-200);
}

.consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    user-select: none;
}

.consent-checkbox input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.checkbox-mark {
    position: relative;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    margin-top: 2px;
}

.checkbox-mark::after {
    content: '';
    position: absolute;
    display: none;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.consent-checkbox input[type="checkbox"]:checked + .checkbox-mark {
    background: var(--secondary);
    border-color: var(--secondary);
}

.consent-checkbox input[type="checkbox"]:checked + .checkbox-mark::after {
    display: block;
}

.consent-checkbox input[type="checkbox"]:focus + .checkbox-mark {
    box-shadow: 0 0 0 3px rgba(var(--secondary-rgb), 0.2);
}

.consent-checkbox:hover .checkbox-mark {
    border-color: var(--secondary);
}

.consent-text {
    font-size: 0.875rem;
    color: var(--gray-700);
    line-height: 1.5;
}

.consent-text .required {
    color: var(--danger);
    margin-left: 0.125rem;
}

.consent-link {
    color: var(--secondary);
    text-decoration: underline;
    transition: var(--transition);
}

.consent-link:hover {
    color: var(--secondary-dark, var(--secondary));
}

/* Booking Summary */
.booking-summary {
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--gray-100) 100%);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 0;
}

.summary-label {
    font-size: 0.9375rem;
    color: var(--gray-700);
}

.summary-value {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--gray-900);
}

.summary-note {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--white);
    border-radius: var(--radius);
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.summary-note svg {
    color: var(--secondary);
    flex-shrink: 0;
    margin-top: 0.125rem;
}

/* Booking Extras in Summary */
.booking-extras-section {
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px dashed var(--gray-300);
}

.summary-row-extras-header {
    padding-bottom: 0.25rem;
}

.summary-row-extras-header .summary-label {
    font-weight: 600;
    color: var(--gray-800);
}

.booking-extras-list {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.booking-extra-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.25rem 0;
    font-size: 0.9375rem;
}

.booking-extra-name {
    color: var(--gray-700);
}

.booking-extra-price {
    color: var(--gray-900);
    font-weight: 500;
}

.summary-row-extras-total {
    padding-top: 0.5rem;
    border-top: 1px solid var(--gray-200);
}

.summary-row-extras-total .summary-value {
    color: var(--primary);
    font-weight: 700;
}

/* Booking Actions */
.booking-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.booking-privacy {
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.privacy-link {
    color: var(--secondary);
    text-decoration: underline;
}

.privacy-link:hover {
    color: var(--secondary-dark);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .pricing-info-cards,
    .extras-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Vehicle Header Mobile */
    .vehicle-header {
        padding-bottom: 0;
    }

    .vehicle-header-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Vehicle Specs Section - adjust padding */
    .vehicle-specs-section {
        padding: 1.5rem 0 1.5rem;
    }

    .vehicle-info-block {
        padding-left: 0;
        align-items: center;
        text-align: center;
    }

    .vehicle-title {
        font-size: 1.75rem;
    }

    .vehicle-quick-specs {
        gap: 1rem;
        justify-content: center;
    }

    .quick-spec {
        font-size: 0.875rem;
    }

    .vehicle-price-block {
        padding: 0;
        text-align: center;
    }

    .price-main {
        justify-content: center;
    }

    .price-deposit {
        text-align: center;
    }

    .price-amount {
        font-size: 1.75rem;
    }

    .vehicle-cta .btn {
        width: 100%;
    }

    .vehicle-messengers {
        justify-content: center;
    }

    .specs-sidebar-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .spec-sidebar-item {
        padding: 0.625rem 0.875rem;
    }

    .spec-sidebar-icon {
        width: 36px;
        height: 36px;
        min-width: 36px;
    }

    .spec-sidebar-icon svg {
        width: 18px;
        height: 18px;
    }

    .section-title {
        font-size: 1.5rem;
    }

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

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .extras-info-banner {
        flex-direction: column;
        text-align: center;
    }

    /* Pricing: hide table, show cards on mobile */
    .pricing-table-wrapper {
        display: none;
    }

    .pricing-cards-mobile {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
    }

    .pricing-card {
        background: var(--white);
        border-radius: var(--radius-lg);
        padding: 1rem;
        box-shadow: var(--shadow-sm);
        border: 1px solid var(--gray-200);
    }

    .pricing-card--best {
        border-color: var(--success);
        box-shadow: 0 0 0 1px var(--success);
    }

    .pricing-card__days {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        font-weight: 600;
        font-size: 0.9375rem;
        color: var(--gray-800);
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
        border-bottom: 1px solid var(--gray-100);
    }

    .pricing-card__days svg {
        color: var(--secondary);
        flex-shrink: 0;
    }

    .pricing-card__badge {
        margin-left: auto;
        padding: 0.25rem 0.5rem;
        background: var(--success);
        color: var(--white);
        border-radius: var(--radius-full);
        font-size: 0.6875rem;
        font-weight: 600;
    }

    .pricing-card__prices {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
    }

    .pricing-card__price {
        flex: 1;
    }

    .pricing-card__price-value {
        display: block;
        font-size: 1.25rem;
        font-weight: 700;
        color: var(--gray-600);
        line-height: 1.2;
    }

    .pricing-card__price--best .pricing-card__price-value {
        color: var(--secondary);
    }

    .pricing-card__price-label {
        font-size: 0.75rem;
        color: var(--gray-500);
    }

    .pricing-info-cards {
        grid-template-columns: 1fr;
    }

    /* Extras responsive */
    .extras-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .extras-intro {
        text-align: center;
    }

    .extras-title {
        font-size: 28px;
    }

    .extras-description {
        font-size: 16px;
        max-width: 100%;
    }

    .extras-cards {
        grid-template-columns: 1fr;
    }

    .extra-card {
        padding: 0.875rem 1rem;
    }

    .extra-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
    }

    .extra-icon svg {
        width: 20px;
        height: 20px;
    }

    .extra-name {
        font-size: 0.875rem;
    }

    .extra-desc {
        font-size: 0.75rem;
    }

    .extras-selected-info {
        flex-direction: row;
        gap: 1rem;
    }

    .extras-placeholder {
        font-size: 0.875rem;
    }

    /* Booking summary single column on mobile */
    .summary-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }

    .summary-label {
        font-size: 0.875rem;
    }

    .summary-value {
        font-size: 0.875rem;
    }

    /* Booking extras on mobile */
    .booking-extra-item {
        font-size: 0.8125rem;
        padding: 0.375rem 0.5rem;
    }
}

/* ===== Form Submission States ===== */

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.success-modal.active {
    opacity: 1;
    visibility: visible;
}

.success-modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.success-modal-content {
    position: relative;
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.success-modal.active .success-modal-content {
    transform: scale(1) translateY(0);
}

.success-icon {
    margin-bottom: 1.5rem;
}

.success-icon svg {
    color: var(--success);
}

.success-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.success-text {
    font-size: 0.9375rem;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.success-actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.success-actions .btn {
    width: 100%;
}

.btn-secondary {
    background: var(--gray-100);
    color: var(--gray-700);
    border: none;
}

.btn-secondary:hover {
    background: var(--gray-200);
}

/* Error Notification */
.booking-error-notification {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%) translateY(-20px);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.booking-error-notification.show {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.error-content {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: var(--danger);
    color: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: 0.9375rem;
}

.error-content svg {
    flex-shrink: 0;
}

.error-close {
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    margin-left: 0.5rem;
}

.error-close:hover {
    opacity: 1;
}

/* Loading Spinner */
.spinner {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* ===== Compact Hero Section ===== */
.vehicle-hero-compact {
    padding: 1rem 0 2rem;
}

.hero-compact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

/* Gallery */
.hero-compact-gallery {
    position: relative;
}

.gallery-main {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: var(--gray-100);
}

.gallery-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
}

.vehicle-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--white);
    color: var(--gray-800);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    font-weight: 600;
    box-shadow: var(--shadow-md);
}

/* Info Block */
.hero-compact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-compact-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--gray-900);
    line-height: 1.2;
    margin: 0;
}

.hero-compact-rating {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
}

.rating-value {
    font-weight: 600;
    color: var(--gray-800);
}

.rating-count {
    color: var(--gray-500);
}

/* Quick Specs */
.hero-compact-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.compact-spec {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    font-size: 0.8125rem;
    color: var(--gray-700);
}

.compact-spec svg {
    color: var(--gray-500);
    flex-shrink: 0;
}

/* Highlighted Capacity & Cargo */
.hero-compact-highlights {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.highlight-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1rem;
    min-height: 3rem;
    background: var(--gray-100);
    border-radius: var(--radius-lg);
    flex: 1;
}

.highlight-label {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.2;
}

.highlight-value {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--gray-900);
}

/* Price Block */
.hero-compact-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-compact-price .price-main {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
}

.hero-compact-price .price-from {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.hero-compact-price .price-amount {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
}

.hero-compact-price .price-period {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.hero-compact-price .price-deposit {
    font-size: 0.875rem;
    color: var(--gray-600);
}

/* Description */
.hero-compact-description {
}

.hero-compact-description p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--gray-700);
    margin: 0;
}

/* Contact Links */
.hero-compact-contact {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-label {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.contact-links {
    display: flex;
    gap: 0.5rem;
}

.contact-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: var(--radius);
    color: var(--gray-600);
    transition: var(--transition);
}

.contact-link:hover {
    background: var(--primary);
    color: var(--white);
}

/* ===== Unified Booking Section ===== */
.booking-unified {
    padding: 2rem 0 3rem;
}

.booking-unified-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    padding: 2rem;
    border: 1px solid var(--gray-200);
}

.booking-unified-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.booking-unified-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    margin: 0 0 0.5rem;
}

.booking-unified-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    margin: 0;
}

/* Steps */
.booking-step {
    margin-bottom: 2rem;
}

.step-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.step-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--primary);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

.step-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 0;
}

.step-hint {
    font-size: 0.875rem;
    color: var(--gray-400);
}

.step-content {
    padding-left: 2.75rem;
}

/* Step Grids */
.step-grid {
    display: grid;
    gap: 1rem;
}

.step-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

.step-grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

/* ===== Rental Blocks (новый дизайн выбора дат) ===== */
.rental-blocks {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.rental-block {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 1rem;
}

.rental-block-title {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.rental-block-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.rental-field {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    padding: 0.625rem 0.75rem;
    gap: 0.5rem;
    position: relative;
}

.rental-field-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    flex-shrink: 0;
}

.rental-field-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    flex-shrink: 0;
    pointer-events: none;
    transition: transform 0.2s ease;
}

/* Rotate arrow when time picker dropdown is open */
.time-picker.open .time-picker-toggle {
    transform: rotate(180deg);
}

.rental-select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 0.5rem;
}

.rental-select:focus {
    outline: none;
}

.rental-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
}

.rental-input:focus {
    outline: none;
}

/* Скрыть нативную иконку календаря */
.rental-input[type="date"]::-webkit-calendar-picker-indicator {
    display: none;
    -webkit-appearance: none;
}

.rental-input[type="date"]::-webkit-inner-spin-button,
.rental-input[type="date"]::-webkit-clear-button {
    display: none;
}

.rental-datetime {
    display: flex;
    gap: 0.5rem;
}

.rental-field-date {
    width: 100%;
}

.rental-field-time {
    width: 100%;
}

/* ===== Time Picker (кастомный dropdown для времени) ===== */
.time-picker {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
}

.time-picker-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark);
    text-align: left;
    width: 100%;
    padding: 0;
    cursor: pointer;
}

.time-picker-input:focus {
    outline: none;
}

.time-picker-toggle {
    cursor: pointer;
}

.time-picker-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    display: none;
}

.time-picker.open .time-picker-dropdown {
    display: block;
}

.time-picker-option {
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
    text-align: left;
    transition: background 0.15s;
}

.time-picker-option:hover {
    background: #f3f4f6;
}

.time-picker-option.selected {
    background: var(--primary);
    color: white;
}

/* ===== City Picker (кастомный dropdown для городов) ===== */
.city-picker {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    cursor: pointer;
}

.city-picker .city-input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--dark);
    cursor: pointer;
    user-select: none;
}

.city-picker .city-input:focus {
    outline: none;
}

.city-dropdown {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.3s ease, opacity 0.2s, visibility 0.2s;
    z-index: 100;
}

.city-picker.open .city-dropdown {
    max-height: 300px;
    overflow-y: auto;
    opacity: 1;
    visibility: visible;
}

.city-option {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    color: var(--dark);
    cursor: pointer;
    transition: background 0.2s;
}

.city-option:hover {
    background: var(--gray-100);
}

.city-option.selected {
    background: var(--primary-light);
    color: var(--primary);
    font-weight: 500;
}

/* Rotate arrow when city picker is open */
.city-picker.open ~ .rental-field-arrow {
    transform: rotate(180deg);
}

/* ===== Non-working time indicator ===== */
.non-working-indicator {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    cursor: default;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s, visibility 0.2s;
}

.non-working-indicator.active {
    opacity: 1;
    visibility: visible;
}

.non-working-indicator input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.indicator-slider {
    position: relative;
    width: 36px;
    height: 20px;
    background: #e5e7eb;
    border-radius: 10px;
    transition: background 0.2s;
    flex-shrink: 0;
}

.indicator-slider::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    transition: transform 0.2s;
}

.non-working-indicator input:checked + .indicator-slider {
    background: var(--primary);
}

.non-working-indicator input:checked + .indicator-slider::before {
    transform: translateX(16px);
}

.indicator-label {
    font-size: 0.8125rem;
    color: var(--gray-500);
}

.non-working-indicator.active .indicator-label {
    color: var(--primary);
}

/* Мобильная адаптация rental blocks */
@media (max-width: 768px) {
    .rental-blocks {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Дата и время на разных строках на мобильных */
    .rental-datetime {
        flex-direction: column;
        gap: 0.5rem;
    }

    .rental-field-date,
    .rental-field-time {
        flex: 1 1 auto;
        width: 100%;
    }

    .rental-field-time {
        flex: 1 1 auto;
    }
}

/* Form Fields */
.booking-unified .form-field {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

.booking-unified .form-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--gray-600);
}

.booking-unified .form-input,
.booking-unified .form-textarea {
    padding: 0.75rem 1rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius);
    font-size: 0.9375rem;
    transition: var(--transition);
    background: var(--white);
}

.booking-unified .form-input:focus,
.booking-unified .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.15);
}

.booking-unified select.form-input:focus,
.booking-unified select.form-input:active {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23F97316' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.125rem center;
}

.booking-unified .form-textarea {
    resize: vertical;
    min-height: 60px;
}

/* Comment field after grid needs top margin */
.booking-unified .step-content > .form-field:not(:first-child) {
    margin-top: 1rem;
}

/* Toggle Switch in Form */
.booking-unified .toggle-switch {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.5rem;
    cursor: pointer;
    user-select: none;
    font-size: 0.75rem;
    color: var(--gray-500);
}

/* ===== Extras Chips ===== */
.extras-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.625rem;
}

.extra-chip {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.875rem;
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.8125rem;
}

.extra-chip:hover {
    background: var(--gray-100);
    border-color: var(--gray-300);
}

.extra-chip input[type="checkbox"] {
    display: none;
}

.chip-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
}

.chip-text {
    color: var(--gray-700);
    font-weight: 500;
}

.chip-price {
    color: var(--gray-500);
    font-size: 0.75rem;
}

.chip-check {
    display: none;
    color: var(--white);
    background: var(--primary);
    width: 18px;
    height: 18px;
    border-radius: var(--radius-full);
    align-items: center;
    justify-content: center;
}

/* Selected State */
.extra-chip.selected,
.extra-chip:has(input:checked) {
    background: rgba(249, 115, 22, 0.1);
    border-color: var(--primary);
}

.extra-chip.selected .chip-icon,
.extra-chip:has(input:checked) .chip-icon {
    color: var(--primary);
}

.extra-chip.selected .chip-text,
.extra-chip:has(input:checked) .chip-text {
    color: var(--gray-900);
}

/* ===== Summary Section ===== */
.booking-summary-unified {
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.summary-breakdown {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.booking-summary-unified .summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9375rem;
}

.booking-summary-unified .summary-label {
    color: var(--gray-600);
}

.booking-summary-unified .summary-value {
    font-weight: 600;
    color: var(--gray-800);
}

.summary-section {
    padding-left: 1rem;
    border-left: 2px solid var(--gray-200);
    margin: 0.5rem 0;
}

.summary-details {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.8125rem;
    color: var(--gray-600);
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding-top: 1rem;
    border-top: 2px solid var(--gray-300);
    margin-bottom: 0.75rem;
}

.total-label {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-800);
}

.total-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

.summary-deposit {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    color: var(--gray-500);
    margin-bottom: 1rem;
}

/* Compact Consents */
.booking-consents-compact {
    margin-bottom: 1rem;
}

.booking-consents-compact .consent-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.8125rem;
    cursor: pointer;
    width: 100%;
    height: 100%;
}

.booking-consents-compact .checkbox-mark {
    width: 16px;
    height: 16px;
    border: 1px solid var(--gray-400);
    border-radius: 3px;
    flex-shrink: 0;
    margin-top: 2px;
    position: relative;
    transition: var(--transition);
}

.booking-consents-compact input:checked + .checkbox-mark {
    background: var(--primary);
    border-color: var(--primary);
}

.booking-consents-compact input:checked + .checkbox-mark::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 5px;
    width: 4px;
    height: 8px;
    border: solid var(--white);
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.booking-consents-compact input[type="checkbox"] {
    display: none;
}

.booking-consents-compact .consent-text {
    color: var(--gray-600);
    line-height: 1.5;
    min-width: 0;
    flex: 1;
}

.booking-consents-compact .consent-text a {
    color: var(--primary);
    text-decoration: underline;
}

/* Submit Button */
.btn-submit {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.625rem;
}

.submit-hints {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 0.875rem;
}

.submit-hints .hint {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: var(--gray-500);
}

.submit-hints .hint svg {
    color: var(--success);
}

/* ===== Responsive for Unified Booking ===== */
@media (max-width: 1024px) {
    .hero-compact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .step-grid-4,
    .step-grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-compact-title {
        font-size: 1.5rem;
    }

    .hero-compact-price .price-amount {
        font-size: 1.75rem;
    }

    .booking-unified-card {
        padding: 1.25rem;
    }

    .booking-unified-title {
        font-size: 1.375rem;
    }

    .step-content {
        padding-left: 0;
    }

    .step-header {
        flex-wrap: wrap;
    }

    .step-hint {
        width: 100%;
        padding-left: calc(28px + 0.75rem);
        margin-top: -0.5rem;
    }

    .step-grid-4,
    .step-grid-3 {
        grid-template-columns: 1fr;
    }

    /* Beautiful tiles for extras on mobile */
    .extras-chips {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.625rem;
    }

    .extra-chip {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        padding: 0.75rem;
        border-radius: var(--radius);
        background: var(--white);
        border: 1px solid var(--gray-200);
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    }

    .extra-chip .chip-icon {
        width: 28px;
        height: 28px;
        background: var(--gray-100);
        border-radius: var(--radius-sm);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 0.25rem;
    }

    .extra-chip .chip-text {
        font-size: 0.8125rem;
        font-weight: 500;
        line-height: 1.2;
    }

    .extra-chip .chip-price {
        font-size: 0.75rem;
        color: var(--gray-500);
    }

    .extra-chip.selected,
    .extra-chip:has(input:checked) {
        background: rgba(249, 115, 22, 0.08);
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
    }

    .extra-chip.selected .chip-icon,
    .extra-chip:has(input:checked) .chip-icon {
        background: var(--primary);
        color: var(--white);
    }

    .submit-hints {
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }

    /* Hero Compact Highlights - Mobile */
    .hero-compact-highlights {
        flex-direction: column;
        gap: 0.625rem;
    }

    .highlight-item {
        padding: 0.625rem 0.875rem;
        min-height: 2.75rem;
    }

    .highlight-value {
        font-size: 0.8125rem;
    }

    .highlight-label {
        font-size: 0.6875rem;
    }
}
