.car-spec-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    border-radius: var(--radius-sm);
    background: var(--bg-main);
    border: 1px solid var(--border);
    transition: var(--transition);
    height: 100%;
}

.car-spec-card:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

.spec-icon {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.spec-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
    overflow: hidden;
}

.spec-label {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    white-space: nowrap;
}

.spec-val {
    font-size: 0.95rem;
    color: var(--text-main);
    font-weight: 800;
    white-space: nowrap;
}

.spec-blue .spec-icon { background: rgba(59, 130, 246, 0.1); color: #3b82f6; }
.spec-blue { border-left: 4px solid #3b82f6; }
.spec-blue:hover { border-color: rgba(59, 130, 246, 0.4); }

.spec-purple .spec-icon { background: rgba(139, 92, 246, 0.1); color: #8b5cf6; }
.spec-purple { border-left: 4px solid #8b5cf6; }
.spec-purple:hover { border-color: rgba(139, 92, 246, 0.4); }

.spec-orange .spec-icon { background: rgba(249, 115, 22, 0.1); color: #f97316; }
.spec-orange { border-left: 4px solid #f97316; }
.spec-orange:hover { border-color: rgba(249, 115, 22, 0.4); }

.spec-teal .spec-icon { background: rgba(20, 184, 166, 0.1); color: #14b8a6; }
.spec-teal { border-left: 4px solid #14b8a6; }
.spec-teal:hover { border-color: rgba(20, 184, 166, 0.4); }

.spec-indigo .spec-icon { background: rgba(99, 102, 241, 0.1); color: #6366f1; }
.spec-indigo { border-left: 4px solid #6366f1; }
.spec-indigo:hover { border-color: rgba(99, 102, 241, 0.4); }

.spec-green .spec-icon { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.spec-green { border-left: 4px solid #10b981; }
.spec-green:hover { border-color: rgba(16, 185, 129, 0.4); }

.spec-red .spec-icon { background: rgba(239, 68, 68, 0.1); color: #ef4444; }
.spec-red { border-left: 4px solid #ef4444; }
.spec-red:hover { border-color: rgba(239, 68, 68, 0.4); }

.spec-yellow .spec-icon { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.spec-yellow { border-left: 4px solid #f59e0b; }
.spec-yellow:hover { border-color: rgba(245, 158, 11, 0.4); }

.service-feature-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    border-radius: var(--radius-md);
    background: var(--bg-main);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.service-feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
    border-color: rgba(16, 185, 129, 0.3);
}

.service-feature-card .service-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.service-text h5 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--text-main);
}

.service-text p {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.booking-extras {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 8px;
}

.extra-item {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-main);
    padding: 8px 12px;
    border-radius: var(--radius-sm);
    background: var(--bg-main);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.extra-item:hover {
    border-color: var(--primary);
    background: var(--bg-surface);
}

.extra-checkbox {
    width: 18px;
    height: 18px;
    accent-color: var(--primary);
    cursor: pointer;
}

.extra-label span {
    font-size: 0.8rem;
    color: var(--primary);
    font-weight: 700;
}

.calculated-price-box {
    background: var(--bg-main);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    display: none;
    flex-direction: column;
    gap: 8px;
}

.price-calc-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

.price-calc-row .calc-val {
    color: var(--text-main);
    font-weight: 700;
}

.price-calc-row.total-row {
    border-top: 1px solid var(--border);
    padding-top: 8px;
    margin-top: 4px;
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main);
}

.price-calc-row.total-row .calc-val {
    color: var(--primary);
}

.booking-form .car-price-box {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    margin: 15px 0 !important;
    align-items: stretch !important;
    width: 100%;
}

.sidebar-tariff-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    background: var(--bg-main);
    padding: 12px 16px;
    border-radius: var(--radius-sm, 12px);
    border: 1px solid var(--border);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    width: 100%;
}

.sidebar-tariff-row:last-child {
    border-bottom: 1px solid var(--border);
}

.sidebar-tariff-row:hover {
    background: var(--bg-surface);
    border-color: rgb(var(--accent-rgb));
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.sidebar-tariff-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.sidebar-tariff-icon-box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(var(--accent-rgb), 0.08);
    color: rgb(var(--accent-rgb));
    font-size: 0.95rem;
    transition: all 0.25s ease;
}

.sidebar-tariff-row:hover .sidebar-tariff-icon-box {
    transform: scale(1.08) rotate(5deg);
    background: rgba(var(--accent-rgb), 0.15);
}

.sidebar-tariff-info {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.sidebar-tariff-label {
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: -0.15px;
    margin-bottom: 0;
}

.sidebar-tariff-sub {
    font-size: 0.72rem;
    color: var(--text-muted);
    font-weight: 600;
}

.sidebar-tariff-price-wrap {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
}

.sidebar-tariff-price {
    font-size: 1.18rem;
    font-weight: 800;
    color: var(--text-main);
    white-space: nowrap;
    font-family: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;
    display: flex;
    align-items: baseline;
    gap: 2px;
}

.sidebar-tariff-currency {
    font-size: 0.9rem;
    font-weight: 700;
    color: rgb(var(--accent-rgb));
}

.sidebar-tariff-period {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    margin-left: 2px;
}

.tariff-daily-row {
    --accent-rgb: 249, 115, 22;
}

.tariff-weekly-row {
    --accent-rgb: 59, 130, 246;
}

.tariff-monthly-row {
    --accent-rgb: 16, 185, 129;
}

.tariff-yearly-row {
    --accent-rgb: 139, 92, 246;
}


