/**
 * CarHub Booking Frontend Styles
 * Improved slider design with animations and mobile responsiveness
 */

:root {
    --carhub-primary: #1e3a5f;
    --carhub-blue: #3b82f6;
    --carhub-orange: #f5a623;
    --carhub-dark: #1a1a2e;
    --carhub-success: #22c55e;
    --carhub-white: #ffffff;
    --carhub-gray-100: #f3f4f6;
    --carhub-gray-200: #e5e7eb;
    --carhub-gray-300: #d1d5db;
    --carhub-gray-400: #9ca3af;
    --carhub-gray-500: #6b7280;
    --carhub-gray-700: #374151;
    --carhub-gray-800: #1f2937;
    --carhub-gray-900: #111827;
    --carhub-radius: 8px;
    --carhub-shadow: 0 4px 20px rgba(0,0,0,0.1);
    --carhub-animation-speed: 0.5s;
}

/* Reset */
.carhub-booking-wrapper * {
    box-sizing: border-box;
}

.carhub-booking-wrapper {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
}

/* Focus styles for accessibility */
.carhub-booking-wrapper button:focus-visible,
.carhub-booking-wrapper input:focus-visible,
.carhub-booking-wrapper select:focus-visible,
.carhub-booking-wrapper textarea:focus-visible {
    outline: 2px solid var(--carhub-blue);
    outline-offset: 2px;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    .carhub-booking-wrapper *,
    .carhub-booking-wrapper *::before,
    .carhub-booking-wrapper *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Loading */
.carhub-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    color: var(--carhub-gray-500);
}

.carhub-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid var(--carhub-gray-200);
    border-top-color: var(--carhub-orange);
    border-radius: 50%;
    animation: carhub-spin 0.8s linear infinite;
}

.carhub-spinner-small {
    display: inline-block;
    width: 16px;
    height: 16px;
    border: 2px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: carhub-spin 0.8s linear infinite;
}

@keyframes carhub-spin {
    to { transform: rotate(360deg); }
}

/* Dark Theme (Default) */
.carhub-dark {
    background: var(--carhub-dark);
    color: var(--carhub-white);
}

.carhub-dark .carhub-car-slider {
    background: var(--carhub-dark);
}

.carhub-dark .carhub-form-section {
    background: var(--carhub-blue);
}

/* Light Theme */
.carhub-light {
    background: var(--carhub-gray-100);
    color: var(--carhub-gray-900);
}

.carhub-light .carhub-car-slider {
    background: var(--carhub-white);
}

.carhub-light .carhub-form-section {
    background: var(--carhub-primary);
}

/* ==========================================
   IMPROVED CAR SLIDER DESIGN
   ========================================== */

.carhub-car-slider {
    padding: 50px 20px 70px;
    position: relative;
    overflow: hidden;
    min-height: 500px;
}

/* Background gradient overlay */
.carhub-slider-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(59, 130, 246, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(245, 166, 35, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 100%, rgba(0,0,0,0.3) 0%, transparent 60%);
    pointer-events: none;
}

/* Header */
.carhub-slider-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 1;
}

.carhub-hero-title {
    font-size: 2.75rem;
    font-weight: 800;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(135deg, var(--carhub-white) 0%, rgba(255,255,255,0.7) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 30px rgba(0,0,0,0.3);
}

.carhub-hero-subtitle {
    margin: 10px 0 0;
    font-size: 1rem;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
}

/* Slider Content */
.carhub-slider-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* Navigation Arrows */
.carhub-slider-arrow {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(10px);
    color: var(--carhub-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    flex-shrink: 0;
    z-index: 10;
}

.carhub-slider-arrow:hover {
    background: var(--carhub-orange);
    border-color: var(--carhub-orange);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.carhub-slider-arrow:active {
    transform: scale(0.95);
}

/* Slider Main Grid */
.carhub-slider-main {
    display: grid;
    grid-template-columns: 260px 1fr 260px;
    gap: 50px;
    align-items: center;
    flex: 1;
    max-width: 1200px;
}

/* Car Info (Left) */
.carhub-car-info {
    text-align: left;
    padding: 20px 0;
}

.carhub-car-info-inner {
    animation: slideInLeft var(--carhub-animation-speed) ease-out;
}

.carhub-car-category {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--carhub-gray-400);
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.carhub-car-category::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 2px;
    background: var(--carhub-orange);
}

.carhub-car-name {
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 20px;
}

.carhub-car-name .make {
    color: var(--carhub-blue);
    display: block;
}

.carhub-car-name .model {
    color: rgba(255,255,255,0.85);
    display: block;
}

/* Price Display */
.carhub-car-price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 25px;
}

.carhub-price-from {
    font-size: 0.75rem;
    color: var(--carhub-gray-500);
    text-transform: uppercase;
}

.carhub-price-value {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--carhub-orange);
    line-height: 1;
    text-shadow: 0 2px 20px rgba(245, 166, 35, 0.3);
}

.carhub-price-day {
    font-size: 0.875rem;
    color: var(--carhub-gray-500);
}

/* Reserve Button */
.carhub-reserve-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--carhub-orange) 0%, #e8941f 100%);
    color: var(--carhub-white);
    border: none;
    padding: 16px 32px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(245, 166, 35, 0.4);
    position: relative;
    overflow: hidden;
}

.carhub-reserve-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s;
}

.carhub-reserve-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(245, 166, 35, 0.5);
}

.carhub-reserve-btn:hover::before {
    left: 100%;
}

.carhub-reserve-btn:active {
    transform: translateY(-1px);
}

/* Car Image */
.carhub-car-image-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
}

.carhub-car-image-container {
    position: relative;
    width: 100%;
    max-width: 520px;
    aspect-ratio: 16/10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carhub-car-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
    transition: all var(--carhub-animation-speed) cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 25px 70px rgba(0,0,0,0.5);
}

/* Reflection effect */
.carhub-car-reflection {
    position: absolute;
    bottom: -60px;
    left: 10%;
    right: 10%;
    height: 60px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.1) 0%, transparent 100%);
    transform: scaleY(-1);
    opacity: 0.3;
    filter: blur(4px);
    border-radius: 12px;
    pointer-events: none;
}

/* Slider Dots */
.carhub-slider-dots {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.carhub-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.carhub-slider-dot.active {
    background: var(--carhub-orange);
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(245, 166, 35, 0.5);
}

.carhub-slider-dot:hover:not(.active) {
    background: rgba(255,255,255,0.5);
}

/* Car Specs (Desktop - Right Side) */
.carhub-car-specs {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
}

.carhub-spec-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    background: rgba(255,255,255,0.05);
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.08);
    transition: all 0.3s;
    animation: slideInRight var(--carhub-animation-speed) ease-out;
    animation-fill-mode: both;
}

.carhub-spec-item:nth-child(1) { animation-delay: 0.05s; }
.carhub-spec-item:nth-child(2) { animation-delay: 0.1s; }
.carhub-spec-item:nth-child(3) { animation-delay: 0.15s; }
.carhub-spec-item:nth-child(4) { animation-delay: 0.2s; }
.carhub-spec-item:nth-child(5) { animation-delay: 0.25s; }
.carhub-spec-item:nth-child(6) { animation-delay: 0.3s; }
.carhub-spec-item:nth-child(7) { animation-delay: 0.35s; }

.carhub-spec-item:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.15);
    transform: translateX(-5px);
}

.carhub-spec-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--carhub-blue) 0%, #2563eb 100%);
    border-radius: 10px;
    color: var(--carhub-white);
    flex-shrink: 0;
}

.carhub-spec-text {
    display: flex;
    flex-direction: column;
}

.carhub-spec-label {
    font-size: 0.7rem;
    color: var(--carhub-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carhub-spec-value {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--carhub-white);
}

/* Mobile Specs (Hidden by default, shown on mobile) */
.carhub-car-specs-mobile {
    display: none;
    padding: 15px 10px;
    margin-top: 15px;
    position: relative;
    z-index: 1;
}

.carhub-specs-mobile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 500px;
    margin: 0 auto;
}

.carhub-spec-mobile-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 6px;
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    border: 1px solid rgba(255,255,255,0.08);
}

.carhub-spec-mobile-item .carhub-spec-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 5px;
    border-radius: 6px;
}

.carhub-spec-mobile-item .carhub-spec-icon i,
.carhub-spec-mobile-item .carhub-spec-icon svg {
    font-size: 12px;
    width: 12px;
    height: 12px;
}

.carhub-spec-mobile-item .carhub-spec-label {
    font-size: 0.55rem;
    margin-bottom: 1px;
}

.carhub-spec-mobile-item .carhub-spec-value {
    font-size: 0.7rem;
}

/* ==========================================
   ANIMATIONS
   ========================================== */

/* Fade Animation */
.carhub-animate-fade .carhub-car-image-container img {
    animation: fadeIn var(--carhub-animation-speed) ease-out;
}

/* Slide Animation */
.carhub-animate-slide-left .carhub-car-image-container img {
    animation: slideFromRight var(--carhub-animation-speed) ease-out;
}

.carhub-animate-slide-right .carhub-car-image-container img {
    animation: slideFromLeft var(--carhub-animation-speed) ease-out;
}

/* Zoom Animation */
.carhub-animate-zoom .carhub-car-image-container img {
    animation: zoomIn var(--carhub-animation-speed) ease-out;
}

/* Flip Animation */
.carhub-animate-flip .carhub-car-image-container img {
    animation: flipIn var(--carhub-animation-speed) ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideFromRight {
    from { transform: translateX(100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideFromLeft {
    from { transform: translateX(-100px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes zoomIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

@keyframes flipIn {
    from { transform: rotateY(-90deg); opacity: 0; }
    to { transform: rotateY(0); opacity: 1; }
}

@keyframes slideInLeft {
    from { transform: translateX(-30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

@keyframes slideInRight {
    from { transform: translateX(30px); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ==========================================
   BOOKING FORM SECTION
   ========================================== */

.carhub-form-section {
    padding: 60px 20px 40px;
    position: relative;
}

.carhub-form-pointer {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 25px solid var(--carhub-blue);
}

.carhub-form-container {
    max-width: 900px;
    margin: 0 auto;
}

.carhub-form-row {
    margin-bottom: 20px;
}

.carhub-select-wrapper {
    position: relative;
}

.carhub-select-wrapper select {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    border-radius: 8px;
    background: var(--carhub-white);
    color: var(--carhub-gray-900);
    cursor: pointer;
    appearance: none;
}

.carhub-select-wrapper::after {
    content: '';
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    border: 5px solid transparent;
    border-top-color: var(--carhub-gray-500);
    pointer-events: none;
}

.carhub-full-width {
    grid-column: 1 / -1;
}

.carhub-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.carhub-form-group {
    background: var(--carhub-white);
    border-radius: 12px;
    padding: 20px;
}

.carhub-form-group label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--carhub-gray-500);
    margin-bottom: 10px;
}

.carhub-input-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--carhub-gray-200);
    margin-bottom: 10px;
}

.carhub-input-with-icon svg {
    color: var(--carhub-gray-500);
    flex-shrink: 0;
}

.carhub-input-with-icon select {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--carhub-gray-900);
    padding: 5px 0;
}

.carhub-date-time-row {
    display: flex;
    gap: 10px;
}

.carhub-date-time-row input {
    flex: 1;
    padding: 10px;
    border: 1px solid var(--carhub-gray-200);
    border-radius: var(--carhub-radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
}

.carhub-date-time-row input[type="date"],
.carhub-date-time-row input[type="time"] {
    cursor: pointer;
}

/* Make date/time inputs clickable on their full area */
.carhub-date-time-row input[type="date"]::-webkit-calendar-picker-indicator,
.carhub-date-time-row input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    padding: 5px;
    margin-right: -5px;
}

/* Custom Time Picker Styles */
.carhub-time-picker-wrapper {
    position: relative;
    flex: 1;
}

.carhub-time-input {
    width: 100%;
    padding: 10px 35px 10px 10px !important;
    border: 1px solid var(--carhub-gray-200);
    border-radius: var(--carhub-radius);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    background: var(--carhub-white);
    color: var(--carhub-gray-900);
}

.carhub-time-input:focus {
    outline: none;
    border-color: var(--carhub-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.carhub-time-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--carhub-gray-500);
    pointer-events: none;
}

.carhub-time-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--carhub-white);
    border: 1px solid var(--carhub-gray-200);
    border-radius: var(--carhub-radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    margin-top: 5px;
    overflow: hidden;
}

.carhub-time-columns {
    display: flex;
}

.carhub-time-column {
    flex: 1;
    max-height: 200px;
    overflow-y: auto;
    scrollbar-width: thin;
}

.carhub-time-column:first-child {
    border-right: 1px solid var(--carhub-gray-200);
}

.carhub-time-column::-webkit-scrollbar {
    width: 4px;
}

.carhub-time-column::-webkit-scrollbar-track {
    background: var(--carhub-gray-100);
}

.carhub-time-column::-webkit-scrollbar-thumb {
    background: var(--carhub-gray-300);
    border-radius: 2px;
}

.carhub-time-option {
    padding: 10px 15px;
    text-align: center;
    cursor: pointer;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--carhub-gray-700);
    transition: background 0.15s;
}

.carhub-time-option:hover {
    background: var(--carhub-gray-100);
}

.carhub-time-option.selected {
    background: var(--carhub-blue);
    color: var(--carhub-white);
}

.carhub-time-option.selected:hover {
    background: var(--carhub-blue);
}

.carhub-form-actions {
    margin-top: 30px;
    text-align: center;
}

.carhub-submit-btn {
    background: linear-gradient(135deg, var(--carhub-gray-800) 0%, var(--carhub-gray-900) 100%);
    color: var(--carhub-white);
    border: none;
    padding: 18px 56px;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.carhub-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.carhub-submit-btn:active {
    transform: translateY(0);
}

/* ==========================================
   CHECKOUT PAGE
   ========================================== */

.carhub-checkout-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.carhub-back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    color: var(--carhub-gray-500);
    font-size: 0.875rem;
    cursor: pointer;
    margin-bottom: 30px;
    transition: color 0.3s;
}

.carhub-back-btn:hover {
    color: var(--carhub-orange);
}

.carhub-checkout-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 30px;
}

/* Order Summary */
.carhub-order-summary {
    background: var(--carhub-gray-800);
    border-radius: 12px;
    overflow: hidden;
    position: sticky;
    top: 100px;
}

.carhub-summary-car img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.carhub-summary-car h3,
.carhub-summary-car span {
    padding: 0 20px;
}

.carhub-summary-car h3 {
    color: var(--carhub-blue);
    font-size: 1.25rem;
    margin: 15px 0 5px;
}

.carhub-summary-car span {
    font-size: 0.75rem;
    color: var(--carhub-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carhub-summary-details,
.carhub-summary-pricing {
    padding: 20px;
    border-top: 1px solid var(--carhub-gray-700);
}

.carhub-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--carhub-gray-300);
}

.carhub-summary-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--carhub-gray-700);
}

.carhub-summary-total span:last-child {
    color: var(--carhub-orange);
}

/* Order Summary Car Specs */
.carhub-summary-specs {
    margin-top: 15px;
    padding: 15px 20px;
    border-top: 1px solid var(--carhub-gray-700);
}

.carhub-summary-specs .spec-row {
    display: flex;
    justify-content: space-between;
    padding: 5px 0;
    font-size: 13px;
}

.carhub-summary-specs .spec-row .spec-label {
    color: var(--carhub-gray-400);
}

.carhub-summary-specs .spec-row .spec-value {
    color: var(--carhub-white);
    font-weight: 500;
}

.carhub-summary-specs:empty {
    display: none;
}

/* Price per day note when total is hidden */
.carhub-summary-price-note {
    padding: 15px 20px;
    border-top: 1px solid var(--carhub-gray-700);
    text-align: center;
}

.carhub-summary-price-note .price-label {
    font-size: 12px;
    color: var(--carhub-gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carhub-summary-price-note .price-value {
    font-size: 24px;
    font-weight: bold;
    color: var(--carhub-orange);
    margin-top: 5px;
}

.carhub-summary-price-note .price-suffix {
    font-size: 11px;
    color: var(--carhub-gray-500);
}

/* Checkout Main */
.carhub-checkout-main {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.carhub-extras-section,
.carhub-personal-section {
    background: var(--carhub-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--carhub-shadow);
}

.carhub-extras-section h2,
.carhub-personal-section h2 {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    color: var(--carhub-primary);
    margin: 0 0 5px;
}

.carhub-section-subtitle {
    color: var(--carhub-gray-500);
    margin: 0 0 25px;
}

/* Override theme typography for checkout headings */
.carhub-booking-wrapper .carhub-extras-section h2,
.carhub-booking-wrapper .carhub-personal-section h2,
#carhub-booking-app .carhub-extras-section h2,
#carhub-booking-app .carhub-personal-section h2 {
    color: #1e3a5f !important;
}

.carhub-booking-wrapper .carhub-extras-section .carhub-section-subtitle,
.carhub-booking-wrapper .carhub-extras-section p,
#carhub-booking-app .carhub-extras-section .carhub-section-subtitle,
#carhub-booking-app .carhub-extras-section p {
    color: #64748b !important;
}

/* Extras Grid */
.carhub-extras-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.carhub-extra-card {
    padding: 20px 12px;
    border: 2px solid var(--carhub-gray-200);
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.carhub-extra-card:hover {
    border-color: var(--carhub-blue);
    background: rgba(59, 130, 246, 0.05);
}

.carhub-extra-card.selected {
    border-color: var(--carhub-orange);
    background: rgba(245, 166, 35, 0.1);
}

.carhub-extra-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--carhub-gray-500);
    font-size: 20px;
}

.carhub-extra-icon i {
    font-size: 20px;
}

.carhub-extra-card.selected .carhub-extra-icon {
    color: var(--carhub-orange);
}

/* Extra Tooltip */
.carhub-extra-tooltip-wrapper {
    position: absolute;
    top: 8px;
    right: 8px;
    z-index: 10;
}

.carhub-extra-info-btn {
    width: 22px;
    height: 22px;
    border: none;
    background: transparent;
    color: var(--carhub-gray-400);
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: all 0.2s;
    border-radius: 50%;
}

.carhub-extra-info-btn:hover {
    color: var(--carhub-blue);
    background: rgba(59, 130, 246, 0.1);
}

.carhub-extra-card.selected .carhub-extra-info-btn:hover {
    color: var(--carhub-orange);
    background: rgba(245, 166, 35, 0.1);
}

.carhub-extra-tooltip {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 8px;
    padding: 12px 14px;
    background: var(--carhub-gray-800);
    color: var(--carhub-white);
    border-radius: 8px;
    font-size: 13px;
    line-height: 1.5;
    min-width: 200px;
    max-width: 280px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-5px);
    transition: all 0.2s ease;
    z-index: 100;
    text-align: left;
    white-space: normal;
}

.carhub-extra-tooltip::before {
    content: '';
    position: absolute;
    bottom: 100%;
    right: 8px;
    border: 6px solid transparent;
    border-bottom-color: var(--carhub-gray-800);
}

.carhub-extra-tooltip-wrapper.active .carhub-extra-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.carhub-extra-card {
    position: relative;
}

.carhub-extra-name {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--carhub-gray-800);
    margin-bottom: 8px;
}

.carhub-extra-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--carhub-orange);
}

.carhub-extra-per-day {
    font-size: 0.75rem;
    color: var(--carhub-gray-500);
}

/* Form Fields */
.carhub-fields-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.carhub-field {
    display: flex;
    flex-direction: column;
}

.carhub-field.full-width {
    grid-column: 1 / -1;
}

.carhub-field label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--carhub-gray-800);
    margin-bottom: 8px;
}

.carhub-field input,
.carhub-field textarea {
    padding: 14px 16px;
    border: 1px solid var(--carhub-gray-200);
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.carhub-field input:focus,
.carhub-field textarea:focus {
    outline: none;
    border-color: var(--carhub-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.carhub-field textarea {
    min-height: 100px;
    resize: vertical;
}

.carhub-field-checkbox {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.carhub-field-checkbox input {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.carhub-field-checkbox label {
    margin: 0;
    text-transform: none;
    font-size: 0.875rem;
    cursor: pointer;
}

/* Payment Notice */
.carhub-payment-notice {
    display: flex;
    gap: 15px;
    padding: 20px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    margin: 25px 0;
    border-left: 4px solid var(--carhub-blue);
}

.carhub-payment-notice svg {
    color: var(--carhub-blue);
    flex-shrink: 0;
}

.carhub-payment-notice strong {
    display: block;
    color: var(--carhub-blue);
    margin-bottom: 5px;
}

.carhub-payment-notice p {
    margin: 0;
    font-size: 0.875rem;
    color: var(--carhub-gray-600);
}

/* Complete Button */
.carhub-complete-btn {
    width: 100%;
    padding: 18px;
    margin-top: 15px;
    background: linear-gradient(135deg, var(--carhub-orange) 0%, #e8941f 100%);
    color: var(--carhub-white) !important;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
}

.carhub-complete-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.4);
}

.carhub-complete-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.carhub-btn-loading {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ==========================================
   CONFIRMATION PAGE
   ========================================== */

.carhub-confirmation {
    max-width: 600px;
    margin: 60px auto;
    padding: 60px 40px;
    text-align: center;
    background: #ffffff !important;
    border-radius: 16px;
    box-shadow: var(--carhub-shadow);
}

/* Override theme typography styles */
.carhub-booking-wrapper .carhub-confirmation,
.carhub-booking-wrapper .carhub-confirmation p,
.carhub-booking-wrapper .carhub-confirmation h1,
.carhub-booking-wrapper .carhub-confirmation span:not(.carhub-home-btn),
.carhub-booking-wrapper .carhub-confirmation strong {
    color: #475569 !important;
}

.carhub-booking-wrapper .carhub-confirmation .carhub-success-icon,
#carhub-booking-app .carhub-confirmation .carhub-success-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--carhub-success) 0%, #16a34a 100%);
    border-radius: 50%;
    color: #ffffff !important;
    animation: scaleIn 0.5s ease-out;
}

.carhub-booking-wrapper .carhub-confirmation .carhub-success-icon svg,
#carhub-booking-app .carhub-confirmation .carhub-success-icon svg {
    stroke: #ffffff !important;
    color: #ffffff !important;
}

@keyframes scaleIn {
    from { transform: scale(0); }
    to { transform: scale(1); }
}

.carhub-booking-wrapper .carhub-confirmation h1,
.carhub-booking-wrapper .carhub-confirmation h1.wpex-h1,
#carhub-booking-app .carhub-confirmation h1 {
    font-size: 2rem;
    color: #1e3a5f !important;
    margin: 0 0 15px;
}

.carhub-booking-wrapper .carhub-confirmation .carhub-conf-message,
.carhub-booking-wrapper .carhub-confirmation p.carhub-conf-message,
#carhub-booking-app .carhub-confirmation .carhub-conf-message {
    color: #475569 !important;
    margin: 0 0 30px;
    font-size: 1rem;
    line-height: 1.6;
}

.carhub-booking-wrapper .carhub-confirmation .carhub-booking-ref-box,
#carhub-booking-app .carhub-confirmation .carhub-booking-ref-box {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 25px;
    border: 2px dashed #cbd5e1;
}

.carhub-booking-wrapper .carhub-confirmation .carhub-booking-ref-box span,
#carhub-booking-app .carhub-confirmation .carhub-booking-ref-box span {
    display: block;
    font-size: 0.75rem;
    color: #64748b !important;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.carhub-booking-wrapper .carhub-confirmation .carhub-booking-ref-box strong,
#carhub-booking-app .carhub-confirmation .carhub-booking-ref-box strong {
    font-size: 2rem;
    color: #1e3a5f !important;
    letter-spacing: 3px;
}

.carhub-booking-wrapper .carhub-confirmation .carhub-conf-email,
.carhub-booking-wrapper .carhub-confirmation p.carhub-conf-email,
#carhub-booking-app .carhub-confirmation .carhub-conf-email {
    color: #64748b !important;
    font-size: 0.875rem;
    margin: 0 0 30px;
}

.carhub-booking-wrapper .carhub-confirmation .carhub-home-btn,
#carhub-booking-app .carhub-confirmation .carhub-home-btn {
    display: inline-block;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--carhub-primary) 0%, #15294a 100%);
    color: #ffffff !important;
    border: none;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.carhub-booking-wrapper .carhub-confirmation .carhub-home-btn:hover,
#carhub-booking-app .carhub-confirmation .carhub-home-btn:hover {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 95, 0.3);
}

/* ==========================================
   FLEET DISPLAY
   ========================================== */

.carhub-fleet-grid {
    display: grid;
    gap: 25px;
}

.carhub-cols-2 { grid-template-columns: repeat(2, 1fr); }
.carhub-cols-3 { grid-template-columns: repeat(3, 1fr); }
.carhub-cols-4 { grid-template-columns: repeat(4, 1fr); }

.carhub-fleet-card {
    background: var(--carhub-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--carhub-shadow);
    transition: all 0.3s;
}

.carhub-fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.carhub-fleet-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.carhub-fleet-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.carhub-fleet-card:hover .carhub-fleet-card-image img {
    transform: scale(1.1);
}

.carhub-fleet-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--carhub-primary);
    color: var(--carhub-white);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carhub-fleet-card-content {
    padding: 25px;
}

.carhub-fleet-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--carhub-primary);
    margin: 0 0 15px;
}

.carhub-fleet-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 20px;
}

.carhub-fleet-spec {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--carhub-gray-600);
}

.carhub-fleet-spec svg {
    color: var(--carhub-blue);
}

.carhub-fleet-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid var(--carhub-gray-200);
}

.carhub-fleet-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--carhub-orange);
}

.carhub-fleet-price span {
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--carhub-gray-500);
}

.carhub-fleet-btn {
    padding: 12px 24px;
    background: var(--carhub-primary);
    color: var(--carhub-white);
    border: none;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s;
}

.carhub-fleet-btn:hover {
    background: var(--carhub-blue);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .carhub-slider-main {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .carhub-car-info {
        text-align: center;
        order: 2;
    }
    
    .carhub-car-category::before {
        display: none;
    }
    
    .carhub-car-category {
        padding-left: 0;
    }
    
    .carhub-car-image-wrapper {
        order: 1;
    }
    
    /* Hide desktop specs, show mobile specs */
    .carhub-car-specs {
        display: none !important;
    }
    
    .carhub-car-specs-mobile {
        display: block !important;
    }
    
    .carhub-car-price {
        justify-content: center;
    }
    
    .carhub-checkout-grid {
        grid-template-columns: 1fr;
    }
    
    .carhub-order-summary {
        position: static;
    }
    
    .carhub-extras-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .carhub-hero-title {
        font-size: 1.75rem;
        letter-spacing: 2px;
    }
    
    .carhub-hero-subtitle {
        font-size: 0.875rem;
    }
    
    .carhub-car-name {
        font-size: 1.75rem;
    }
    
    .carhub-price-value {
        font-size: 2rem;
    }
    
    .carhub-slider-arrow {
        width: 44px;
        height: 44px;
    }
    
    .carhub-form-grid {
        grid-template-columns: 1fr;
    }
    
    .carhub-fields-container {
        grid-template-columns: 1fr;
    }
    
    .carhub-extras-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
    }
    
    .carhub-extra-card {
        padding: 12px 8px;
    }
    
    .carhub-extra-icon {
        width: 32px;
        height: 32px;
        margin-bottom: 6px;
    }
    
    .carhub-extra-icon i {
        font-size: 16px;
    }
    
    .carhub-extra-name {
        font-size: 0.7rem;
        line-height: 1.2;
    }
    
    .carhub-extra-price {
        font-size: 0.95rem;
    }
    
    .carhub-extra-per-day {
        font-size: 0.6rem;
    }
    
    .carhub-cols-3,
    .carhub-cols-4 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .carhub-specs-mobile-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 6px;
    }
    
    .carhub-car-slider {
        padding: 25px 15px 40px;
        min-height: auto;
    }
    
    .carhub-slider-content {
        gap: 10px;
    }
    
    /* Checkout mobile improvements */
    .carhub-checkout-container {
        padding: 20px 12px;
    }
    
    .carhub-extras-section,
    .carhub-personal-section {
        padding: 20px 15px;
    }
    
    .carhub-extras-section h2,
    .carhub-personal-section h2 {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }
    
    .carhub-section-subtitle {
        font-size: 0.8rem;
        margin-bottom: 15px;
    }
    
    .carhub-field input,
    .carhub-field textarea {
        padding: 12px 14px;
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    .carhub-payment-notice {
        padding: 15px;
        margin: 20px 0;
    }
    
    .carhub-complete-btn {
        padding: 16px;
        font-size: 0.875rem;
    }
}

@media (max-width: 480px) {
    .carhub-slider-arrow {
        width: 36px;
        height: 36px;
    }
    
    .carhub-slider-arrow svg {
        width: 16px;
        height: 16px;
    }
    
    .carhub-extras-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .carhub-extra-card {
        padding: 10px 6px;
    }
    
    .carhub-extra-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 5px;
    }
    
    .carhub-extra-icon i {
        font-size: 14px;
    }
    
    .carhub-extra-name {
        font-size: 0.65rem;
    }
    
    .carhub-extra-price {
        font-size: 0.85rem;
    }
    
    .carhub-extra-per-day {
        font-size: 0.55rem;
    }
    
    .carhub-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .carhub-confirmation {
        padding: 30px 15px;
    }
    
    .carhub-booking-ref-box strong {
        font-size: 1.25rem;
    }
    
    .carhub-specs-mobile-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
    
    .carhub-spec-mobile-item {
        padding: 8px 4px;
    }
    
    .carhub-spec-mobile-item .carhub-spec-icon {
        width: 24px;
        height: 24px;
        border-radius: 5px;
    }
    
    .carhub-spec-mobile-item .carhub-spec-label {
        font-size: 0.5rem;
    }
    
    .carhub-spec-mobile-item .carhub-spec-value {
        font-size: 0.6rem;
    }
    
    .carhub-hero-title {
        font-size: 1.35rem;
        letter-spacing: 1px;
    }
    
    .carhub-car-name {
        font-size: 1.35rem;
    }
    
    .carhub-price-value {
        font-size: 1.5rem;
    }
    
    .carhub-slider-header {
        margin-bottom: 30px;
    }
    
    .carhub-car-slider {
        padding: 20px 10px 35px;
    }
    
    /* Checkout mobile - smaller screens */
    .carhub-checkout-container {
        padding: 15px 10px;
    }
    
    .carhub-extras-section,
    .carhub-personal-section {
        padding: 15px 12px;
        border-radius: 10px;
    }
    
    .carhub-extras-section h2,
    .carhub-personal-section h2 {
        font-size: 1.1rem;
    }
    
    .carhub-checkout-main {
        gap: 15px;
    }
    
    .carhub-back-btn {
        margin-bottom: 15px;
        font-size: 0.8rem;
    }
    
    .carhub-order-summary {
        border-radius: 10px;
    }
    
    .carhub-summary-car img {
        height: 140px;
    }
    
    .carhub-summary-car h3 {
        font-size: 1.1rem;
    }
    
    .carhub-summary-details,
    .carhub-summary-pricing {
        padding: 12px 15px;
    }
    
    .carhub-summary-row {
        font-size: 0.75rem;
        padding: 5px 0;
    }
    
    .carhub-summary-total {
        font-size: 1rem;
    }
}

/* Ensure form labels are always visible */
.carhub-personal-section .carhub-field label,
.carhub-extras-section label {
    color: var(--carhub-gray-800) !important;
}

/* Extra tooltip mobile positioning */
@media (max-width: 768px) {
    .carhub-extra-tooltip {
        min-width: 160px;
        max-width: 200px;
        font-size: 11px;
        padding: 10px;
        right: -10px;
    }
    
    .carhub-extra-info-btn {
        width: 18px;
        height: 18px;
        font-size: 12px;
    }
    
    .carhub-extra-tooltip-wrapper {
        top: 5px;
        right: 5px;
    }
}

/* ====================================
   reCAPTCHA Styles
   ==================================== */

.carhub-recaptcha-wrapper {
    margin: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carhub-recaptcha-wrapper #carhub-recaptcha {
    transform-origin: center center;
}

.carhub-recaptcha-error {
    color: #dc2626;
    font-size: 0.875rem;
    margin-top: 10px;
    text-align: center;
    padding: 8px 16px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
}

/* Mobile responsive reCAPTCHA */
@media (max-width: 400px) {
    .carhub-recaptcha-wrapper #carhub-recaptcha {
        transform: scale(0.9);
        transform-origin: center center;
    }
}

/* ====================================
   COMPACT NUMBER INPUT FIELD
   ==================================== */

.carhub-field-number-compact {
    max-width: 160px;
}

.carhub-number-input-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.carhub-number-input-wrapper input[type="number"] {
    width: 80px;
    padding: 12px 14px;
    padding-right: 36px;
    text-align: center;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid var(--carhub-gray-200);
    border-radius: 8px;
    transition: all 0.2s ease;
    -moz-appearance: textfield;
    appearance: textfield;
}

/* Hide default spinner buttons */
.carhub-number-input-wrapper input[type="number"]::-webkit-outer-spin-button,
.carhub-number-input-wrapper input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.carhub-number-input-wrapper input[type="number"]:focus {
    outline: none;
    border-color: var(--carhub-blue);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* Arrow buttons container */
.carhub-number-arrows {
    position: absolute;
    right: 4px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    transition: opacity 0.2s ease;
}

/* Show arrows on hover */
.carhub-number-input-wrapper:hover .carhub-number-arrows,
.carhub-number-input-wrapper:focus-within .carhub-number-arrows {
    opacity: 1;
}

/* Arrow buttons */
.carhub-number-up,
.carhub-number-down {
    width: 24px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--carhub-gray-100);
    border: 1px solid var(--carhub-gray-200);
    border-radius: 4px;
    cursor: pointer;
    color: var(--carhub-gray-500);
    transition: all 0.15s ease;
    padding: 0;
}

.carhub-number-up:hover,
.carhub-number-down:hover {
    background: var(--carhub-blue);
    border-color: var(--carhub-blue);
    color: #fff;
}

.carhub-number-up:active,
.carhub-number-down:active {
    transform: scale(0.95);
}

.carhub-number-up svg,
.carhub-number-down svg {
    width: 10px;
    height: 10px;
}

/* Mobile touch adjustments */
@media (max-width: 768px) {
    .carhub-number-input-wrapper input[type="number"] {
        font-size: 16px; /* Prevents iOS zoom */
    }
    
    /* Always show arrows on touch devices */
    .carhub-number-arrows {
        opacity: 1;
    }
    
    .carhub-number-up,
    .carhub-number-down {
        width: 28px;
        height: 18px;
    }
}

/* Dark theme adjustments */
.carhub-dark .carhub-number-input-wrapper input[type="number"] {
    background: var(--carhub-gray-800);
    border-color: var(--carhub-gray-600);
    color: var(--carhub-white);
}

.carhub-dark .carhub-number-up,
.carhub-dark .carhub-number-down {
    background: var(--carhub-gray-700);
    border-color: var(--carhub-gray-600);
    color: var(--carhub-gray-300);
}

.carhub-dark .carhub-number-up:hover,
.carhub-dark .carhub-number-down:hover {
    background: var(--carhub-blue);
    border-color: var(--carhub-blue);
    color: #fff;
}