/* ═══════════════════════════════════════════════════════
   COWAKA — Design System
   Mobile-first: 320px → 428px, centered on larger screens
   ═══════════════════════════════════════════════════════ */

/* ── CSS Variables ─────────────────────────────────────── */
:root {
    --cowaka-green:        #1a5f4a;
    --cowaka-green-dark:   #0d3b2e;
    --cowaka-green-light:  #e8f5f0;
    --cowaka-green-mid:    #2d7a5f;
    --cowaka-gold:         #f5a623;
    --cowaka-gold-light:   #fef3dc;
    --cowaka-danger:       #e53935;
    --cowaka-grey:         #6b7280;
    --cowaka-grey-light:   #f3f4f6;
    --cowaka-border:       #e5e7eb;
    --cowaka-text:         #111827;
    --cowaka-text-muted:   #6b7280;
    --bottom-nav-h:        64px;
    --page-header-h:       56px;
    --radius-sm:           8px;
    --radius-md:           12px;
    --radius-lg:           20px;
    --shadow-card:         0 2px 12px rgba(0,0,0,.08);
    --shadow-nav:          0 -2px 16px rgba(0,0,0,.08);
}

/* ── Reset / Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html, body {
    height: 100%;
    overflow-x: hidden;
    background: #f8faf9;
    color: var(--cowaka-text);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 15px;
    line-height: 1.5;
    -webkit-tap-highlight-color: transparent;
}

/* ── App Shell ─────────────────────────────────────────── */
.cowaka-app-shell {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100vh;
    background: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
}

.cowaka-page {
    flex: 1;
    overflow-y: auto;
    padding-bottom: calc(var(--bottom-nav-h) + 80px);
}

.cowaka-page--no-nav { padding-bottom: 0; }

/* ── Page Header ───────────────────────────────────────── */
.page-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    height: var(--page-header-h);
    display: flex;
    align-items: center;
    padding: 0 16px;
    border-bottom: 1px solid var(--cowaka-border);
    gap: 12px;
}
.page-header__back {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--cowaka-grey-light);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
    cursor: pointer;
    color: var(--cowaka-text);
    font-size: 18px;
}
.page-header__title {
    font-size: 17px;
    font-weight: 700;
    flex: 1;
    margin: 0;
}
.page-header__action {
    font-size: 14px;
    font-weight: 600;
    color: var(--cowaka-green);
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 8px;
}

/* ── Bottom Nav ────────────────────────────────────────── */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    height: var(--bottom-nav-h);
    background: #fff;
    border-top: 1px solid var(--cowaka-border);
    display: flex;
    box-shadow: var(--shadow-nav);
    z-index: 200;
}
.bottom-nav__item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--cowaka-grey);
    font-size: 10px;
    gap: 2px;
    position: relative;
    transition: color .15s;
}
.bottom-nav__item i { font-size: 22px; }
.bottom-nav__item.active { color: var(--cowaka-green); }
.bottom-nav__item.active i { color: var(--cowaka-green); }
.bottom-nav__badge {
    position: absolute;
    top: 6px; right: calc(50% - 18px);
    background: var(--cowaka-danger);
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    min-width: 16px; height: 16px;
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    padding: 0 4px;
}

/* ── Buttons ───────────────────────────────────────────── */
.btn-cowaka {
    background: var(--cowaka-green);
    color: #fff;
    border: none;
    border-radius: var(--radius-md);
    padding: 14px 20px;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background .15s, transform .1s;
    text-decoration: none;
}
.btn-cowaka:hover, .btn-cowaka:focus { background: var(--cowaka-green-mid); color: #fff; }
.btn-cowaka:active { transform: scale(.98); }
.btn-cowaka:disabled { background: #9ca3af; cursor: not-allowed; }

.btn-cowaka-outline {
    background: transparent;
    color: var(--cowaka-green);
    border: 2px solid var(--cowaka-green);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    display: flex; align-items: center; justify-content: center; gap: 8px;
    cursor: pointer;
    transition: background .15s;
}
.btn-cowaka-outline:hover { background: var(--cowaka-green-light); }

.btn-cowaka-ghost {
    background: var(--cowaka-grey-light);
    color: var(--cowaka-text);
    border: none;
    border-radius: var(--radius-md);
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background .15s;
}

.btn-danger-outline {
    background: transparent;
    color: var(--cowaka-danger);
    border: 2px solid var(--cowaka-danger);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    width: 100%;
    cursor: pointer;
}

/* ── Form Fields ───────────────────────────────────────── */
.form-group { margin-bottom: 16px; }
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--cowaka-grey);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .4px;
}
.form-input {
    width: 100%;
    border: 1.5px solid var(--cowaka-border);
    border-radius: var(--radius-sm);
    padding: 13px 14px;
    font-size: 15px;
    color: var(--cowaka-text);
    background: #fff;
    outline: none;
    transition: border-color .15s;
    appearance: none;
}
.form-input:focus { border-color: var(--cowaka-green); }
.form-input::placeholder { color: #adb5bd; }
.form-input-wrap { position: relative; }
.form-input-icon {
    position: absolute;
    left: 13px; top: 50%;
    transform: translateY(-50%);
    color: var(--cowaka-grey);
    font-size: 18px;
    pointer-events: none;
}
.form-input-wrap .form-input { padding-left: 40px; }
.form-input-action {
    position: absolute;
    right: 12px; top: 50%;
    transform: translateY(-50%);
    background: none; border: none;
    color: var(--cowaka-grey);
    cursor: pointer; font-size: 18px;
    padding: 4px;
}

.field-tap {
    display: flex;
    align-items: center;
    border: 1.5px solid var(--cowaka-border);
    border-radius: var(--radius-sm);
    padding: 13px 14px;
    cursor: pointer;
    gap: 10px;
    background: #fff;
    transition: border-color .15s;
    text-decoration: none;
    color: var(--cowaka-text);
}
.field-tap:hover, .field-tap:focus { border-color: var(--cowaka-green); }
.field-tap__placeholder { color: #adb5bd; }
.field-tap__icon { color: var(--cowaka-green); font-size: 18px; flex-shrink: 0; }
.field-tap__value { flex: 1; font-weight: 500; }
.field-tap__chevron { color: var(--cowaka-grey); font-size: 16px; margin-left: auto; }

/* ── Toggle Switch ─────────────────────────────────────── */
.toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    border-bottom: 1px solid var(--cowaka-border);
    gap: 12px;
}
.toggle-row:last-child { border-bottom: none; }
.toggle-row__label { font-size: 15px; flex: 1; }
.toggle-row__sub { font-size: 12px; color: var(--cowaka-grey); }
.toggle-switch {
    position: relative;
    width: 48px; height: 26px;
    flex-shrink: 0;
}
.toggle-switch input { opacity: 0; width: 0; height: 0; }
.toggle-slider {
    position: absolute; inset: 0;
    background: #d1d5db;
    border-radius: 13px;
    cursor: pointer;
    transition: background .2s;
}
.toggle-slider::before {
    content: '';
    position: absolute;
    left: 3px; top: 3px;
    width: 20px; height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform .2s;
    box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.toggle-switch input:checked + .toggle-slider { background: var(--cowaka-green); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(22px); }

/* ── Cards ─────────────────────────────────────────────── */
.card-trip {
    background: #fff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    padding: 16px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: box-shadow .15s;
    text-decoration: none;
    display: block;
    color: var(--cowaka-text);
    border: 1px solid var(--cowaka-border);
}
.card-trip:hover { box-shadow: 0 4px 20px rgba(0,0,0,.12); }

.card-trip__route {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
}
.card-trip__time { font-size: 18px; font-weight: 800; }
.card-trip__arrow { color: var(--cowaka-grey); }
.card-trip__price {
    margin-left: auto;
    font-size: 16px;
    font-weight: 800;
    color: var(--cowaka-green);
}
.card-trip__cities { font-size: 13px; color: var(--cowaka-grey); margin-bottom: 10px; }
.card-trip__footer {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}
.card-trip__driver {
    display: flex; align-items: center; gap: 6px;
}
.card-trip__avatar {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--cowaka-green-light);
    overflow: hidden; flex-shrink: 0;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; color: var(--cowaka-green); font-weight: 700;
}
.card-trip__avatar img { width: 100%; height: 100%; object-fit: cover; }
.card-trip__rating { font-size: 12px; color: var(--cowaka-gold); }
.card-trip__chips { display: flex; gap: 4px; flex-wrap: wrap; margin-left: auto; }

/* ── Chips / Badges ────────────────────────────────────── */
.chip {
    display: inline-flex; align-items: center; gap: 3px;
    padding: 3px 8px;
    border-radius: 20px;
    font-size: 11px; font-weight: 600;
    background: var(--cowaka-grey-light);
    color: var(--cowaka-grey);
}
.chip--green { background: var(--cowaka-green-light); color: var(--cowaka-green); }
.chip--gold  { background: var(--cowaka-gold-light);  color: #b45309; }
.chip--red   { background: #fee2e2; color: var(--cowaka-danger); }

.status-badge {
    display: inline-flex; align-items: center;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 12px; font-weight: 600;
}
.status-badge--confirmed { background: #d1fae5; color: #065f46; }
.status-badge--pending   { background: var(--cowaka-gold-light); color: #b45309; }
.status-badge--cancelled { background: #fee2e2; color: var(--cowaka-danger); }
.status-badge--verified  { background: #d1fae5; color: #065f46; }
.status-badge--waiting   { background: #fef3c7; color: #92400e; }
.status-badge--rejected  { background: #fee2e2; color: #b91c1c; }

/* ── Star Rating ───────────────────────────────────────── */
.star-rating { display: flex; gap: 4px; }
.star-rating__star {
    font-size: 28px;
    color: #d1d5db;
    cursor: pointer;
    transition: color .1s, transform .1s;
}
.star-rating__star.active,
.star-rating__star:hover { color: var(--cowaka-gold); }
.star-rating__star:active { transform: scale(1.2); }
.star-sm .star-rating__star { font-size: 18px; }

/* ── Section Titles ────────────────────────────────────── */
.section-title {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--cowaka-grey);
    padding: 16px 16px 8px;
}

/* ── List Items (Profile menu, etc.) ──────────────────── */
.list-item {
    display: flex;
    align-items: center;
    padding: 16px;
    gap: 14px;
    cursor: pointer;
    text-decoration: none;
    color: var(--cowaka-text);
    border-bottom: 1px solid var(--cowaka-border);
    transition: background .1s;
}
.list-item:hover { background: var(--cowaka-grey-light); }
.list-item__icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: var(--cowaka-green-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; color: var(--cowaka-green);
    flex-shrink: 0;
}
.list-item__text { flex: 1; }
.list-item__label { font-weight: 600; font-size: 15px; }
.list-item__sub { font-size: 12px; color: var(--cowaka-grey); }
.list-item__chevron { color: var(--cowaka-grey); }

/* ── Payment Method Selector ───────────────────────────── */
.payment-option {
    display: flex;
    align-items: center;
    padding: 14px;
    border: 2px solid var(--cowaka-border);
    border-radius: var(--radius-sm);
    gap: 12px;
    cursor: pointer;
    margin-bottom: 8px;
    transition: border-color .15s, background .15s;
}
.payment-option.selected {
    border-color: var(--cowaka-green);
    background: var(--cowaka-green-light);
}
.payment-option__icon { font-size: 22px; }
.payment-option__name { font-weight: 600; flex: 1; }
.payment-option__check { color: var(--cowaka-green); font-size: 20px; display: none; }
.payment-option.selected .payment-option__check { display: block; }

/* ── City List ─────────────────────────────────────────── */
.city-item {
    display: flex; align-items: center; gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--cowaka-border);
    transition: background .1s;
}
.city-item:hover { background: var(--cowaka-grey-light); }
.city-item i { color: var(--cowaka-green); font-size: 18px; }

/* ── Step Indicator ────────────────────────────────────── */
.step-indicator {
    display: flex; gap: 6px; padding: 0 16px 12px;
}
.step-dot {
    flex: 1; height: 4px;
    border-radius: 2px;
    background: var(--cowaka-border);
    transition: background .2s;
}
.step-dot.active  { background: var(--cowaka-green); }
.step-dot.done    { background: var(--cowaka-green-mid); }

/* ── Tabs ──────────────────────────────────────────────── */
.tab-bar {
    display: flex;
    border-bottom: 2px solid var(--cowaka-border);
    padding: 0 16px;
    gap: 0;
}
.tab-btn {
    flex: 1;
    padding: 12px 4px;
    background: none;
    border: none;
    font-size: 14px;
    font-weight: 600;
    color: var(--cowaka-grey);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    transition: color .15s;
}
.tab-btn.active {
    color: var(--cowaka-green);
    border-bottom-color: var(--cowaka-green);
}

/* ── Utility ───────────────────────────────────────────── */
.text-cowaka-green { color: var(--cowaka-green); }
.text-gold         { color: var(--cowaka-gold); }
.bg-cowaka-green   { background: var(--cowaka-green); }
.divider           { height: 8px; background: var(--cowaka-grey-light); margin: 0 -16px; }
.page-content      { padding: 16px; }
.gap-actions       { display: flex; flex-direction: column; gap: 12px; padding: 16px; }

/* ── Upload Zone ───────────────────────────────────────── */
.upload-zone {
    border: 2px dashed var(--cowaka-border);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 8px; cursor: pointer;
    text-align: center; color: var(--cowaka-grey);
    transition: border-color .15s, background .15s;
    position: relative;
    overflow: hidden;
}
.upload-zone:hover { border-color: var(--cowaka-green); background: var(--cowaka-green-light); }
.upload-zone input[type="file"] {
    position: absolute; inset: 0;
    opacity: 0; cursor: pointer;
}
.upload-zone__icon { font-size: 32px; color: var(--cowaka-green); }
.upload-zone--filled { border-color: var(--cowaka-green); background: var(--cowaka-green-light); }

/* ── Progress Bar ──────────────────────────────────────── */
.progress-bar-cowaka {
    height: 6px; border-radius: 3px;
    background: var(--cowaka-border); overflow: hidden;
}
.progress-bar-cowaka__fill {
    height: 100%; border-radius: 3px;
    background: var(--cowaka-green);
    transition: width .3s ease;
}

/* ── Chat Bubbles ──────────────────────────────────────── */
.chat-bubble {
    max-width: 75%;
    padding: 10px 14px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.4;
    margin-bottom: 4px;
}
.chat-bubble--me {
    background: var(--cowaka-green);
    color: #fff;
    border-bottom-right-radius: 4px;
    align-self: flex-end;
}
.chat-bubble--them {
    background: var(--cowaka-grey-light);
    color: var(--cowaka-text);
    border-bottom-left-radius: 4px;
    align-self: flex-start;
}
.chat-time { font-size: 10px; color: var(--cowaka-grey); margin-bottom: 8px; }

/* ── Big Amount Display ────────────────────────────────── */
.amount-display {
    text-align: center; padding: 24px 16px;
}
.amount-display__value {
    font-size: 40px; font-weight: 900;
    color: var(--cowaka-green);
    letter-spacing: -1px;
}
.amount-display__currency { font-size: 18px; font-weight: 700; }
.amount-display__label { font-size: 13px; color: var(--cowaka-grey); margin-top: 4px; }

/* ── Stat Cards ────────────────────────────────────────── */
.stat-grid {
    display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 0 16px 16px;
}
.stat-card {
    background: var(--cowaka-green-light);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}
.stat-card__value { font-size: 22px; font-weight: 900; color: var(--cowaka-green); }
.stat-card__label { font-size: 11px; color: var(--cowaka-grey); margin-top: 2px; }

/* ── Notification Item ─────────────────────────────────── */
.notif-item {
    display: flex; gap: 12px;
    padding: 14px 16px;
    border-bottom: 1px solid var(--cowaka-border);
    cursor: pointer;
    transition: background .1s;
}
.notif-item.unread { background: var(--cowaka-green-light); }
.notif-item:hover  { background: var(--cowaka-grey-light); }
.notif-item__icon {
    width: 40px; height: 40px; flex-shrink: 0;
    border-radius: 50%; background: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; box-shadow: var(--shadow-card);
}
.notif-item__body { flex: 1; }
.notif-item__title { font-weight: 600; font-size: 14px; }
.notif-item__msg   { font-size: 13px; color: var(--cowaka-grey); }
.notif-item__time  { font-size: 11px; color: var(--cowaka-grey); white-space: nowrap; }

/* ── Profile Avatar ────────────────────────────────────── */
.profile-header {
    display: flex; flex-direction: column;
    align-items: center;
    padding: 24px 16px 16px;
    background: linear-gradient(135deg, var(--cowaka-green), var(--cowaka-green-dark));
    color: #fff;
}
.profile-avatar {
    width: 80px; height: 80px;
    border-radius: 50%;
    background: rgba(255,255,255,.2);
    border: 3px solid rgba(255,255,255,.5);
    overflow: hidden;
    display: flex; align-items: center; justify-content: center;
    font-size: 32px; color: #fff;
    cursor: pointer; position: relative; margin-bottom: 12px;
}
.profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.profile-avatar__edit {
    position: absolute; bottom: 0; right: 0;
    background: var(--cowaka-green);
    border: 2px solid #fff;
    border-radius: 50%;
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px;
}
.profile-name { font-size: 20px; font-weight: 800; }
.profile-rating { font-size: 13px; opacity: .9; }
.profile-since { font-size: 12px; opacity: .7; margin-top: 2px; }

/* ── Password Strength ─────────────────────────────────── */
.pwd-strength { margin-top: 6px; }
.pwd-strength__bar {
    height: 4px; border-radius: 2px;
    background: var(--cowaka-border); overflow: hidden;
}
.pwd-strength__fill {
    height: 100%; border-radius: 2px;
    transition: width .3s, background .3s;
}
.pwd-strength__label { font-size: 11px; margin-top: 3px; }

/* ── Recap Row ─────────────────────────────────────────── */
.recap-row {
    display: flex; gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid var(--cowaka-border);
    align-items: flex-start;
}
.recap-row:last-child { border-bottom: none; }
.recap-row__icon { font-size: 18px; flex-shrink: 0; width: 24px; text-align: center; margin-top: 1px; }
.recap-row__label { font-size: 12px; color: var(--cowaka-grey); }
.recap-row__value { font-size: 15px; font-weight: 600; }
.recap-row__edit  { margin-left: auto; color: var(--cowaka-green); font-size: 13px; font-weight: 600; text-decoration: none; }

/* ── Empty State ───────────────────────────────────────── */
.empty-state {
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    padding: 48px 24px;
    text-align: center;
    color: var(--cowaka-grey);
}
.empty-state i { font-size: 48px; margin-bottom: 12px; opacity: .5; }
.empty-state h3 { font-size: 16px; font-weight: 700; color: var(--cowaka-text); }
.empty-state p  { font-size: 14px; margin-top: 4px; }

/* ── Sort Bar ──────────────────────────────────────────── */
.sort-bar {
    display: flex; gap: 6px;
    padding: 10px 16px;
    overflow-x: auto;
    scrollbar-width: none;
}
.sort-bar::-webkit-scrollbar { display: none; }
.sort-btn {
    padding: 6px 14px;
    border-radius: 20px;
    border: 1.5px solid var(--cowaka-border);
    background: #fff;
    font-size: 13px; font-weight: 600;
    cursor: pointer; white-space: nowrap;
    transition: all .15s;
}
.sort-btn.active {
    background: var(--cowaka-green);
    border-color: var(--cowaka-green);
    color: #fff;
}

/* ── Code Block (booking code) ─────────────────────────── */
.booking-code {
    background: var(--cowaka-green-light);
    border: 2px dashed var(--cowaka-green);
    border-radius: var(--radius-md);
    padding: 16px;
    text-align: center;
}
.booking-code__value {
    font-size: 22px; font-weight: 900;
    color: var(--cowaka-green);
    letter-spacing: 2px;
}

/* ── Success Screen ────────────────────────────────────── */
.success-screen {
    display: flex; flex-direction: column;
    align-items: center;
    padding: 32px 16px 16px;
    text-align: center;
}
.success-icon {
    width: 72px; height: 72px;
    border-radius: 50%;
    background: var(--cowaka-green);
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: #fff;
    position: relative; margin-bottom: 16px;
}
.success-title {
    font-size: 22px; font-weight: 900; color: var(--cowaka-green);
}
.success-sub { font-size: 14px; color: var(--cowaka-grey); margin-top: 6px; }

/* ── Vehicle Card ──────────────────────────────────────── */
.vehicle-card {
    border: 2px solid var(--cowaka-border);
    border-radius: var(--radius-md);
    padding: 14px;
    margin-bottom: 10px;
    cursor: pointer;
    transition: border-color .15s;
    display: flex; align-items: center; gap: 12px;
}
.vehicle-card.selected { border-color: var(--cowaka-green); background: var(--cowaka-green-light); }
.vehicle-card__photo {
    width: 56px; height: 42px; object-fit: cover;
    border-radius: var(--radius-sm);
    background: var(--cowaka-grey-light);
    display: flex; align-items: center; justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.vehicle-card__info { flex: 1; }
.vehicle-card__name { font-weight: 700; font-size: 15px; }
.vehicle-card__meta { font-size: 12px; color: var(--cowaka-grey); }

/* ── Splash Screen ─────────────────────────────────────── */
.splash-screen {
    min-height: 100vh;
    background: linear-gradient(160deg, var(--cowaka-green), var(--cowaka-green-dark));
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 16px;
}
.splash-logo { font-size: 56px; }
.splash-name {
    font-size: 36px; font-weight: 900;
    color: #fff; letter-spacing: -1px;
}
.splash-slogan { font-size: 16px; color: rgba(255,255,255,.8); }
.splash-dots { display: flex; gap: 8px; margin-top: 32px; }

/* ── Toast ─────────────────────────────────────────────── */
#cowaka-toast {
    position: fixed;
    bottom: calc(var(--bottom-nav-h) + 12px);
    left: 50%; transform: translateX(-50%);
    z-index: 9999;
    padding: 12px 20px;
    border-radius: var(--radius-md);
    font-size: 14px; font-weight: 600;
    color: #fff; background: #111827;
    pointer-events: none;
    opacity: 0; transition: opacity .2s;
    white-space: nowrap; max-width: 90%;
    box-shadow: 0 4px 16px rgba(0,0,0,.25);
}
#cowaka-toast.show { opacity: 1; }
#cowaka-toast.success { background: var(--cowaka-green); }
#cowaka-toast.error   { background: var(--cowaka-danger); }

/* ── Calendar ──────────────────────────────────────────── */
.calendar { padding: 0 8px; }
.calendar__header {
    display: flex; align-items: center;
    justify-content: space-between;
    padding: 8px 8px 12px;
}
.calendar__nav {
    background: none; border: none;
    font-size: 20px; cursor: pointer;
    color: var(--cowaka-green); padding: 4px 8px;
}
.calendar__month { font-weight: 700; font-size: 16px; }
.calendar__grid {
    display: grid; grid-template-columns: repeat(7, 1fr);
    gap: 4px;
}
.calendar__day-name {
    text-align: center; font-size: 12px;
    font-weight: 600; color: var(--cowaka-grey);
    padding: 4px 0;
}
.calendar__day {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 14px;
    cursor: pointer;
    transition: background .1s;
}
.calendar__day:hover:not(.disabled):not(.selected) {
    background: var(--cowaka-green-light);
}
.calendar__day.selected {
    background: var(--cowaka-green);
    color: #fff; font-weight: 700;
}
.calendar__day.today { font-weight: 700; color: var(--cowaka-green); }
.calendar__day.disabled { color: #d1d5db; cursor: not-allowed; }
.calendar__day.empty { cursor: default; }
