/*
 * Crazy Water CarWash System – Neumorphic Theme
 * Redesigned admin + frontend surfaces with soft light/dark shadows.
 */

@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&family=Barlow:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@400;600;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    --cw-font-primary: 'Cairo', 'Tajawal', 'Segoe UI', sans-serif;
    --cw-font-secondary: 'Barlow', 'Rubik', 'Segoe UI', sans-serif;
    --cw-bg: #eaf1ff;
    --cw-bg-dark: #ced9f2;
    --cw-surface: #f5f9ff;
    --cw-surface-raised: #ffffff;
    --cw-surface-glass: rgba(255, 255, 255, 0.75);
    --cw-shadow-dark: rgba(10, 24, 61, 0.22);
    --cw-shadow-light: rgba(255, 255, 255, 0.9);
    --cw-primary: #1f6be9;
    --cw-primary-dark: #1249b7;
    --cw-secondary: #0b1d3d;
    --cw-accent: #ffb437;
    --cw-accent-dark: #f08a14;
    --cw-success: #0ea776;
    --cw-danger: #f04d5b;
    --cw-muted: #5f6c8c;
    --cw-text: #08142b;
    --cw-text-soft: rgba(8, 20, 43, 0.76);
    --cw-text-subtle: rgba(8, 20, 43, 0.6);
    --cw-text-faint: rgba(8, 20, 43, 0.38);
    --cw-radius-xl: 1.8rem;
    --cw-radius-lg: 1.25rem;
    --cw-radius-md: 1rem;
    --cw-radius-sm: 0.75rem;
    --cw-shadow-raised: 18px 18px 38px var(--cw-shadow-dark), -18px -18px 38px var(--cw-shadow-light);
    --cw-shadow-floating: 12px 12px 30px var(--cw-shadow-dark), -10px -10px 26px var(--cw-shadow-light);
    --cw-shadow-inset: inset 8px 8px 18px rgba(10, 24, 61, 0.18), inset -8px -8px 18px rgba(255, 255, 255, 0.9);
    --cw-shadow-button: 8px 8px 18px rgba(9, 26, 64, 0.25), -6px -6px 16px rgba(255, 255, 255, 0.7);
    --cw-shadow-button-hover: 12px 12px 20px rgba(9, 26, 64, 0.28), -8px -8px 20px rgba(255, 255, 255, 0.75);
    --cw-gradient-primary: linear-gradient(135deg, #1f6be9 0%, #0e4ad1 35%, #081d46 100%);
    --cw-gradient-surface: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 255, 255, 0.6) 100%);
}

body,
button,
input,
select,
textarea {
    font-family: var(--cw-font-primary);
}

body.carwash-system-admin {
    min-height: 100vh;
    background: var(--cw-bg);
    background-image:
        radial-gradient(1600px at -20% -40%, rgba(31, 107, 233, 0.24), transparent 60%),
        radial-gradient(1200px at 110% 20%, rgba(255, 180, 55, 0.15), transparent 60%);
    color: var(--cw-text);
    padding: 36px 0 48px;
}

.carwash-wrapper {
    max-width: 100%;
    margin: 0 ;
    padding: 0 ;
}

.carwash-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
    gap: 32px;
    align-items: flex-start;
}

.carwash-layout__main {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.carwash-layout__aside {
    position: sticky;
    top: 96px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.carwash-page-header {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 26px 32px;
    border-radius: var(--cw-radius-xl);
    background: var(--cw-gradient-primary);
    color: #fff;
    box-shadow: var(--cw-shadow-floating);
    position: relative;
    overflow: hidden;
}

.carwash-page-header::after {
    content: '';
    position: absolute;
    inset: 18px;
    border-radius: var(--cw-radius-xl);
    border: 1px solid rgba(255, 255, 255, 0.18);
    pointer-events: none;
}

.carwash-page-header__icon {
    width: 68px;
    height: 68px;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.14);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: inset 4px 4px 8px rgba(0, 0, 0, 0.18);
}

.carwash-page-header__title {
    margin: 0;
    font-size: 26px;
    font-weight: 700;
}

.carwash-page-header__subtitle {
    margin: 4px 0 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
}

.carwash-panel,
.carwash-section,
.carwash-notice,
.carwash-card {
    background: var(--cw-surface);
    border-radius: var(--cw-radius-lg);
    padding: 24px 26px;
    box-shadow: var(--cw-shadow-raised);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.carwash-notice {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
}

.carwash-notice--error {
    background: rgba(240, 77, 91, 0.12);
    color: var(--cw-danger);
}

.carwash-notice--success {
    background: rgba(14, 167, 118, 0.14);
    color: var(--cw-success);
}

.carwash-section__header {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 22px;
}

.carwash-section__title {
    margin: 0;
    font-size: 22px;
    font-weight: 700;
    color: var(--cw-text);
}

.carwash-section__subtitle {
    margin: 0;
    color: var(--cw-text-subtle);
    font-size: 15px;
}

.carwash-section__body {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.carwash-card-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 22px;
}

.carwash-dashboard-stack {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.carwash-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.carwash-card__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 15px;
    font-weight: 700;
    color: var(--cw-text);
}

.carwash-card__list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.carwash-card__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: var(--cw-text-soft);
}

.carwash-card__row-value {
    font-weight: 700;
    color: var(--cw-primary);
}

.carwash-card__title {
    margin: 0 0 8px;
    font-size: 16px;
    color: var(--cw-text-soft);
}

.carwash-metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 22px;
    border-radius: var(--cw-radius-md);
    background: var(--cw-gradient-surface);
    box-shadow: var(--cw-shadow-inset);
}

.carwash-metric__label {
    font-size: 14px;
    color: var(--cw-muted);
}

.carwash-metric__value {
    font-size: 20px;
    font-weight: 700;
    color: var(--cw-secondary);
}

.carwash-button,
.carwash-button--primary,
.carwash-button--ghost,
.carwash-button--secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0.75rem 1.6rem;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.carwash-button--primary {
    background: linear-gradient(135deg, var(--cw-primary), var(--cw-primary-dark));
    color: #fff;
    box-shadow: var(--cw-shadow-button);
}

.carwash-button--primary:hover,
.carwash-button--primary:focus {
    box-shadow: var(--cw-shadow-button-hover);
    transform: translateY(-1px);
}

.carwash-button--secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(225, 235, 255, 0.9));
    color: var(--cw-primary-dark);
    box-shadow: var(--cw-shadow-button);
}

.carwash-button--ghost {
    background: transparent;
    color: var(--cw-muted);
    box-shadow: inset 4px 4px 12px rgba(255, 255, 255, 0.6), inset -4px -4px 12px rgba(10, 24, 61, 0.12);
}

.carwash-button--ghost:hover {
    color: var(--cw-text);
}

.carwash-form {
    display: grid;
    gap: 18px;
}

.carwash-form__group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.carwash-form__group--full {
    grid-column: 1 / -1;
}

.carwash-form label {
    font-size: 14px;
    color: var(--cw-text-soft);
}

.carwash-form input[type="text"],
.carwash-form input[type="email"],
.carwash-form input[type="tel"],
.carwash-form input[type="number"],
.carwash-form input[type="date"],
.carwash-form input[type="time"],
.carwash-form select,
.carwash-form textarea {
    border: none;
    padding: 14px 16px;
    border-radius: var(--cw-radius-md);
    background: var(--cw-surface-raised);
    box-shadow: var(--cw-shadow-inset);
    color: var(--cw-text);
    transition: box-shadow 0.18s ease, transform 0.18s ease;
}

.carwash-form input:focus,
.carwash-form select:focus,
.carwash-form textarea:focus {
    outline: none;
    box-shadow: var(--cw-shadow-button);
    transform: translateY(-1px);
}

.carwash-table {
    width: 100%;
    border-spacing: 0;
    border-collapse: separate;
    background: var(--cw-surface-raised);
    border-radius: var(--cw-radius-lg);
    box-shadow: var(--cw-shadow-raised);
    overflow: hidden;
}

.carwash-table thead {
    background: linear-gradient(135deg, rgba(31, 107, 233, 0.14), rgba(8, 29, 70, 0.08));
}

.carwash-table th,
.carwash-table td {
    padding: 6px 12px;
    text-align: start;
    font-size: 14px;
    color: var(--cw-text-soft);
}

.carwash-table tr + tr td {
    border-top: 1px solid rgba(8, 20, 43, 0.06);
}

.carwash-loader {
    padding: 36px;
    text-align: center;
    border-radius: var(--cw-radius-lg);
    background: var(--cw-surface);
    box-shadow: var(--cw-shadow-raised);
    font-size: 15px;
    color: var(--cw-text-subtle);
}

.carwash-branding-banner {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border-radius: var(--cw-radius-lg);
    background: var(--cw-surface);
    box-shadow: var(--cw-shadow-floating);
    border: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 22px;
}

.carwash-branding-banner__logo {
    width: 96px;
    height: 96px;
    object-fit: contain;
    filter: drop-shadow(0 10px 22px rgba(10, 24, 61, 0.25));
}

.carwash-branding-banner__meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.carwash-branding-banner__text {
    font-size: 20px;
    font-weight: 700;
    color: var(--cw-secondary);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.carwash-branding-banner__tagline {
    color: var(--cw-text-subtle);
    font-size: 14px;
}

.carwash-branding-banner--text {
    justify-content: center;
    text-align: center;
}

.carwash-public {
    background: var(--cw-bg);
    padding: 40px 0 80px;
    position: relative;
}

.carwash-public::before,
.carwash-public::after {
    content: '';
    position: absolute;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(31, 107, 233, 0.16), transparent 70%);
    z-index: 0;
}

.carwash-public::before {
    top: -220px;
    right: -60px;
}

.carwash-public::after {
    bottom: -260px;
    left: -80px;
    background: radial-gradient(circle, rgba(255, 180, 55, 0.18), transparent 70%);
}

.carwash-public__hero {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto 32px;
    padding: 40px 44px;
    border-radius: var(--cw-radius-xl);
    display: grid;
    gap: 18px;
    background: linear-gradient(135deg, rgba(8, 29, 70, 0.95), rgba(31, 107, 233, 0.92) 60%, rgba(255, 180, 55, 0.75));
    color: #fff;
    box-shadow: var(--cw-shadow-floating);
}

.carwash-public__title {
    margin: 0;
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 800;
    letter-spacing: 0.03em;
}

.carwash-public__subtitle {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 16px;
}

.carwash-public__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.carwash-public__badge {
    padding: 10px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 14px;
    backdrop-filter: blur(4px);
}

.carwash-public__container {
    position: relative;
    z-index: 1;
}

#carwash-booking-root,
#carwash-dashboard-root,
#carwash-thankyou-root {
    border-radius: var(--cw-radius-xl);
    background: var(--cw-surface);
    min-height: 460px;
    box-shadow: var(--cw-shadow-raised);
    padding: 28px;
}

.carwash-thankyou {
    display: grid;
    gap: 18px;
    padding: 18px;
}

.carwash-thankyou__card {
    background: var(--cw-surface-raised);
    border-radius: var(--cw-radius-lg);
    padding: 24px;
    box-shadow: var(--cw-shadow-raised);
}

.carwash-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    background: rgba(31, 107, 233, 0.12);
    color: var(--cw-primary);
    border-radius: 999px;
    padding: 6px 14px;
}

.carwash-badge--brand {
    background: rgba(8, 29, 70, 0.45);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.35);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.28), 4px 8px 18px rgba(8, 20, 43, 0.35);
}

.carwash-stepper {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    margin: 26px 0 34px;
}

.carwash-stepper__item {
    flex: 1;
    min-width: 180px;
    padding: 18px 20px;
    border-radius: var(--cw-radius-md);
    background: var(--cw-surface-raised);
    box-shadow: var(--cw-shadow-raised);
    position: relative;
}

.carwash-stepper__item::after {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: inherit;
    border: 1px dashed rgba(31, 107, 233, 0.18);
}

.carwash-stepper__icon {
    width: 48px;
    height: 48px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    background: linear-gradient(135deg, rgba(31, 107, 233, 0.18), rgba(8, 29, 70, 0.14));
    box-shadow: inset 4px 4px 12px rgba(255, 255, 255, 0.5), inset -4px -4px 12px rgba(8, 20, 43, 0.15);
    font-weight: 700;
    color: var(--cw-primary);
    font-size: 18px;
}

.carwash-stepper__title {
    margin: 0 0 6px;
    font-size: 16px;
    color: var(--cw-text);
}

.carwash-stepper__description {
    margin: 0;
    font-size: 14px;
    color: var(--cw-text-subtle);
    line-height: 1.6;
}

.carwash-status-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
}

.carwash-status-badge--ok {
    background: rgba(14, 167, 118, 0.15);
    color: var(--cw-success);
}

.carwash-status-badge--warn {
    background: rgba(255, 180, 55, 0.2);
    color: var(--cw-accent-dark);
}

.carwash-empty {
    padding: 48px;
    text-align: center;
    border-radius: var(--cw-radius-lg);
    background: var(--cw-surface);
    color: var(--cw-text-subtle);
    box-shadow: var(--cw-shadow-raised);
}

.carwash-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    background: rgba(31, 107, 233, 0.15);
    color: var(--cw-primary);
}

.carwash-tag--info {
    background: rgba(31, 107, 233, 0.18);
    color: var(--cw-primary);
}

.carwash-tag--success {
    background: rgba(14, 167, 118, 0.18);
    color: var(--cw-success);
}

.carwash-tag--warning {
    background: rgba(255, 180, 55, 0.22);
    color: var(--cw-accent-dark);
}

.carwash-tag--danger {
    background: rgba(240, 77, 91, 0.2);
    color: var(--cw-danger);
}

.carwash-tag--muted {
    background: rgba(96, 108, 140, 0.15);
    color: var(--cw-muted);
}

.carwash-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.15rem 0.85rem;
    min-width: 2.5rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    background: rgba(8, 20, 43, 0.06);
    color: var(--cw-text);
    box-shadow: inset 0 1px 2px rgba(8, 20, 43, 0.1);
}

.carwash-pill--positive {
    background: rgba(14, 167, 118, 0.16);
    color: #0ea776;
}

.carwash-pill--muted {
    background: rgba(148, 163, 184, 0.2);
    color: rgba(15, 23, 42, 0.6);
}

.carwash-progress {
    height: 8px;
    border-radius: 999px;
    background: rgba(8, 29, 70, 0.08);
    overflow: hidden;
}

.carwash-progress__bar {
    height: 100%;
    border-radius: inherit;
    background: linear-gradient(135deg, var(--cw-primary), var(--cw-accent));
}

/* Dashboard shortcode overrides */
.carwash-dashboard {
    background: transparent;
}

.carwash-dashboard .card,
.carwash-dashboard .table,
.carwash-dashboard .pill {
    font-family: var(--cw-font-primary);
}

.carwash-dashboard .card {
    background: var(--cw-surface-raised);
    border-radius: var(--cw-radius-lg);
    box-shadow: var(--cw-shadow-raised);
    border: 1px solid rgba(255, 255, 255, 0.18);
}

.carwash-dashboard .btn-primary {
    background: linear-gradient(135deg, var(--cw-primary), var(--cw-primary-dark));
    border-radius: 999px;
    box-shadow: var(--cw-shadow-button);
    border: none;
    padding: 0.65rem 1.6rem;
}

.carwash-dashboard .btn-primary:hover {
    box-shadow: var(--cw-shadow-button-hover);
}

.carwash-dashboard .input,
.carwash-dashboard .select,
.carwash-dashboard .textarea {
    border-radius: var(--cw-radius-md);
    background: var(--cw-surface-raised);
    border: none;
    box-shadow: var(--cw-shadow-inset);
    padding: 0.7rem 1rem;
    color: var(--cw-text);
}

.carwash-dashboard .input:focus,
.carwash-dashboard .select:focus,
.carwash-dashboard .textarea:focus {
    box-shadow: var(--cw-shadow-button);
}

/* Responsive tweaks */
@media (max-width: 1024px) {
    .carwash-layout {
        grid-template-columns: minmax(0, 1fr);
    }

    .carwash-layout__aside {
        position: static;
    }

    .carwash-page-header {
        flex-direction: column;
        align-items: flex-start;
        padding: 24px;
        text-align: start;
    }

    .carwash-branding-banner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .carwash-public__hero {
        padding: 28px;
    }

    .carwash-public__badges {
        flex-direction: column;
        align-items: flex-start;
    }

    #carwash-booking-root,
    #carwash-dashboard-root,
    #carwash-thankyou-root {
        padding: 1rem;
    }

    .carwash-form {
        grid-template-columns: minmax(0, 1fr);
    }

    .carwash-form__group--full {
        grid-column: auto;
    }
}

@media (max-width: 480px) {
    .carwash-public__hero {
        padding: 22px 20px;
    }

    .carwash-page-header__title {
        font-size: 22px;
    }
    
    .carwash-booking-wizard.max-w-5xl.mx-auto.my-8.space-y-8.px-4.sm\:px-6 {
        padding-right: 0rem;
        padding-left: 0rem;
    }
}

/* Date Time Picker Styles */
.date-time-picker {
    display: flex;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    background: white;
    max-width: 800px;
    margin: 0 auto;
}

.calendar {
    flex: 1;
    padding: 20px;
    border-right: 1px solid #eee;
    min-width: 300px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.month-nav {
    background: none;
    border: 1px solid #ddd;
    border-radius: 4px;
    width: 30px;
    height: 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #000;
    transition: all 0.2s;
}

.month-nav:hover {
    background: #f5f5f5;
    border-color: #bbb;
}

.month-year {
    font-weight: bold;
    font-size: 18px;
    color: #000;
}

.calendar-body {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day-header {
    text-align: center;
    padding: 10px 5px;
    font-weight: 600;
    color: #000;
    font-size: 12px;
}

.day, .empty {
    text-align: center;
    padding: 12px 8px;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    position: relative;
}

.day:hover:not(.past):not(.selected) {
    background-color: #f0f8ff;
    border: 1px solid #007BFF;
}

.day.selected {
    background-color: #007BFF;
    color: white;
    font-weight: bold;
}

.day.today {
    border: 2px solid #28a745;
    font-weight: bold;
}

.day.past {
    color: #ccc;
    cursor: not-allowed;
    background-color: #f9f9f9;
}

.empty {
    background-color: transparent;
    cursor: default;
}

.time-picker {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    min-width: 200px;
    max-height: 400px;
    overflow-y: auto;
}

.time-option {
    padding: 12px 16px;
    margin-bottom: 8px;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    text-align: center;
    font-size: 14px;
    transition: all 0.2s;
    position: relative;
}

.time-option:hover:not(.booked) {
    background-color: #f8f9fa;
    border-color: #007BFF;
    color: #007BFF;
}

.time-option.selected {
    background-color: #007BFF;
    color: white;
    border-color: #007BFF;
    font-weight: bold;
}

.time-option.booked,
.time-option.disabled {
    background-color: #f8d7da;
    color: #721c24;
    border-color: #f5c6cb;
    cursor: not-allowed;
    opacity: 0.6;
    pointer-events: none;
}

.time-option.booked::after {
    content: 'محجوز';
    position: absolute;
    top: 8px;
    right: -14px;
    transform: rotate(45deg);
    background: #dc2626;
    color: #fff;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 16px;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    pointer-events: none;
}

.time-option.past {
    background-color: #e2e8f0;
    color: #64748b;
    border-color: #cbd5e1;
    cursor: not-allowed;
    opacity: 0.7;
    pointer-events: none;
}

.booked-label {
    display: block;
    font-size: 10px;
    margin-top: 4px;
    font-weight: normal;
}

.service-card .service-tooltip {
    position: absolute;
    top: 16px;
    left: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.service-tooltip__icon {
    width: 32px;
    height: 32px;
    border-radius: 9999px;
    border: 1px solid rgba(37, 99, 235, 0.2);
    background: linear-gradient(135deg, #ffffff 0%, #eff6ff 100%);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
    color: #1d4ed8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-tooltip__icon svg {
    width: 14px;
    height: 14px;
}

.service-tooltip__icon:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

.service-tooltip__content {
    position: absolute;
    top: 110%;
    left: 50%;
    transform: translate(-50%, 0);
    min-width: 200px;
    max-width: 260px;
    background: #0f172a;
    color: #f8fafc;
    padding: 12px 14px;
    border-radius: 12px;
    font-size: 12px;
    line-height: 1.6;
    text-align: right;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.35);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-tooltip:hover .service-tooltip__content,
.service-tooltip:focus-within .service-tooltip__content {
    opacity: 1;
    transform: translate(-50%, 8px);
    pointer-events: auto;
}

.service-tooltip__content::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent #0f172a transparent;
}

.time-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 200px;
    color: #fff;
}

.time-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 200px;
}

/* Responsive Design for Date Time Picker */
@media (max-width: 768px) {
    .date-time-picker {
        flex-direction: column;
    }

    .calendar {
        border-right: none;
        border-bottom: 1px solid #eee;
    }

    .calendar-body {
        gap: 3px;
    }

    .day, .day-header {
        padding: 8px 4px;
        font-size: 12px;
    }

    .time-option {
        padding: 10px 12px;
        font-size: 13px;
    }
}

/* Booking wizard utility overrides */
.carwash-booking-wizard .p-5 {
    padding: 0.5rem;
}

.carwash-booking-wizard .p-4 {
    padding: 1rem 0.5rem;
}

.carwash-booking-wizard .p-6 {
    padding: 1.5rem 0.5rem;
}

.carwash-booking-wizard .px-4 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.carwash-booking-wizard .gap-4 {
    gap: 0.5rem;
}

.carwash-booking-wizard .font-semibold {
    font-weight: 600;
    font-size: 1rem;
}

.carwash-booking-wizard .text-2xl {
    font-size: 1.25rem;
}

.carwash-booking-wizard .text-blue-600 {
    font-family: 'Almarai', var(--cw-font-primary, 'Cairo', sans-serif);
}

.carwash-booking-wizard .flex.flex-col.gap-4.sm\:flex-row.sm\:items-center.sm\:justify-between {
    flex-direction: column-reverse;
}

blockquote,
dd,
dl,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
pre {
    font-family: 'Almarai', var(--cw-font-primary, 'Cairo', sans-serif);
}

button.inline-flex.w-full.sm\:w-auto.items-center.justify-center.gap-2.rounded-lg.bg-amber-500.px-5.py-2\.5.text-sm.font-semibold.text-white.shadow-md.transition.hover\:bg-amber-600.focus\:outline-none.focus\:ring-2.focus\:ring-amber-400.focus\:ring-offset-2.disabled\:cursor-not-allowed.disabled\:bg-amber-200.disabled\:text-white\/70.disabled\:shadow-none {
    background-color: #689f38;
}

@media (max-width: 640px) {
    .carwash-booking-wizard .grid.gap-4.md\:grid-cols-2.lg\:grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}
