/* ==========================================================================
   WOSH Mobile Carwash — vanilla CSS
   Brand colors:  #051f3b (deep navy)  ·  #A3FF12 (lime)  ·  #FFFFFF (white)
   ========================================================================== */

:root {
    --wosh-blue: #051f3b;
    --wosh-blue-soft: #0a3360;
    --wosh-lime: #A3FF12;
    --wosh-lime-hover: #8de00f;
    --wosh-white: #FFFFFF;
    --wosh-ice: #F4F6FF;
    --wosh-text: #0f172a;
    --wosh-muted: #475569;
    --wosh-border: rgba(5, 31, 59, 0.15);
    --wosh-border-strong: rgba(5, 31, 59, 0.35);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; overflow-x: hidden; }

body {
    margin: 0;
    font-family: 'Manrope', system-ui, -apple-system, sans-serif;
    background: #FFFFFF;
    color: var(--wosh-text);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6, .font-display {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
    color: var(--wosh-blue);
    margin: 0;
}

a { color: var(--wosh-blue); text-decoration: none; }
a:hover { text-decoration: underline; }

::selection { background: var(--wosh-lime); color: var(--wosh-blue); }

/* ---------- Layout ---------- */
.app-main { flex: 1; }
.container { max-width: 1200px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.section { padding-top: 80px; padding-bottom: 80px; }
.section-sm { padding-top: 48px; padding-bottom: 48px; }

/* ---------- Navbar ---------- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--wosh-border);
}
.navbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}
.navbar-brand img { height: 40px; width: 40px; object-fit: contain; }
.navbar-brand .brand-name { font-family: 'Outfit', sans-serif; font-weight: 800; font-size: 20px; color: var(--wosh-blue); line-height: 1; }
.navbar-brand .brand-sub { font-size: 10px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--wosh-muted); }
.navbar-links { display: flex; align-items: center; gap: 32px; }
.navbar-link {
    font-size: 14px;
    font-weight: 500;
    color: var(--wosh-text);
    transition: color 0.2s;
}
.navbar-link:hover, .navbar-link.active { color: var(--wosh-blue); text-decoration: none; }
.navbar-actions { display: flex; align-items: center; gap: 12px; }
.navbar-user { font-size: 14px; color: var(--wosh-muted); }
.navbar-user strong { color: var(--wosh-blue); font-weight: 600; }

.menu-toggle {
    display: none;
    background: transparent;
    border: 0;
    padding: 8px;
    color: var(--wosh-blue);
    cursor: pointer;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    gap: 12px;
    padding: 16px 24px;
    border-top: 1px solid var(--wosh-border);
    background: #fff;
}
.mobile-menu.open { display: flex; }
.mobile-menu .navbar-link { padding: 8px 0; }

@media (max-width: 860px) {
    .navbar-links, .navbar-actions { display: none; }
    .menu-toggle { display: inline-flex; }
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 0;
    border-radius: 10px;
    padding: 12px 22px;
    font-weight: 700;
    font-family: 'Manrope', sans-serif;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.18s, box-shadow 0.2s, background 0.2s, color 0.2s;
    text-decoration: none;
}
.btn:hover { text-decoration: none; }

.btn-primary {
    background: var(--wosh-lime);
    color: var(--wosh-blue);
}
.btn-primary:hover {
    background: var(--wosh-lime-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 24px -12px rgba(5, 31, 59, 0.45);
}
.btn-primary:disabled { opacity: 0.55; cursor: not-allowed; transform: none; box-shadow: none; }

.btn-secondary {
    background: transparent;
    color: var(--wosh-blue);
    border: 2px solid var(--wosh-blue);
}
.btn-secondary:hover { background: var(--wosh-blue); color: #fff; }

.btn-ghost { background: transparent; color: var(--wosh-blue); font-weight: 600; padding: 10px 14px; }
.btn-ghost:hover { background: var(--wosh-ice); }

.btn-block { width: 100%; }
.btn-sm { padding: 8px 14px; font-size: 13px; }

/* ---------- Cards ---------- */
.card {
    background: #fff;
    border: 1px solid var(--wosh-border);
    border-radius: 14px;
    padding: 28px;
    transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.card:hover {
    border-color: var(--wosh-border-strong);
    box-shadow: 0 16px 30px -20px rgba(5, 31, 59, 0.3);
}

.tinted-bg { background: var(--wosh-ice); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    overflow: hidden;
    color: #fff;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(110deg, rgba(5, 31, 59, 0.94) 0%, rgba(5, 31, 59, 0.70) 55%, rgba(5, 31, 59, 0.35) 100%);
}
.hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 110px 24px 130px;
}
.hero h1 {
    color: #fff;
    font-size: clamp(36px, 6vw, 68px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.03em;
    max-width: 760px;
}
.hero h1 .accent { color: var(--wosh-lime); }
.hero .sub { margin-top: 22px; color: rgba(255,255,255,0.9); max-width: 540px; font-size: 17px; line-height: 1.6; }
.hero .actions { margin-top: 32px; display: flex; gap: 14px; flex-wrap: wrap; }
.hero .trustline {
    margin-top: 36px;
    display: flex; gap: 24px; flex-wrap: wrap;
    font-size: 14px;
    color: rgba(255,255,255,0.9);
}
.hero .trustline span { display: inline-flex; align-items: center; gap: 6px; }

.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--wosh-lime);
    color: var(--wosh-blue);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 8px 14px;
    border-radius: 999px;
}

.section-head { margin-bottom: 40px; }
.section-head .eyebrow {
    font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
    color: var(--wosh-blue); font-weight: 700;
}
.section-head h2 {
    margin-top: 8px;
    font-size: clamp(26px, 4vw, 44px);
    font-weight: 700;
}
.section-head p { margin-top: 12px; color: var(--wosh-muted); max-width: 540px; }
.section-head[style*="text-align:center"] p { margin-left: auto; margin-right: auto; }

/* ---------- Grid ---------- */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 980px) {
    .grid-3, .grid-4 { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
    .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
}

/* ---------- Forms ---------- */
.field { display: flex; flex-direction: column; gap: 8px; }
.label { font-size: 13px; font-weight: 600; color: var(--wosh-text); }
.input, .select, textarea.input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 9px;
    background: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.15s, box-shadow 0.15s;
    color: var(--wosh-text);
    min-height: 46px;
}
.input:focus, .select:focus, textarea.input:focus {
    outline: none;
    border-color: var(--wosh-blue);
    box-shadow: 0 0 0 3px rgba(5, 31, 59, 0.12);
}

.error-box {
    background: #fee2e2;
    border: 1px solid #fecaca;
    color: #b91c1c;
    padding: 10px 14px;
    border-radius: 8px;
    font-size: 13px;
}

/* ---------- Price cards ---------- */
.price-card { position: relative; }
.price-card .pop-badge {
    position: absolute;
    top: -12px;
    left: 22px;
    background: var(--wosh-lime);
    color: var(--wosh-blue);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 999px;
}
.price-card.featured { border-color: var(--wosh-blue); border-width: 2px; }
.price-card .label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wosh-muted); font-weight: 700; }
.price-card .price-row { display: flex; align-items: baseline; gap: 10px; margin-top: 14px; }
.price-card .price-promo { font-family: 'Outfit', sans-serif; font-size: 38px; font-weight: 700; color: var(--wosh-blue); }
.price-normal { color: #94a3b8; text-decoration: line-through; }
.price-card .price-normal { color: #94a3b8; text-decoration: line-through; }
.price-card ul { list-style: none; padding: 0; margin: 18px 0 0; color: var(--wosh-muted); font-size: 14px; }
.price-card ul li { display: flex; align-items: center; gap: 8px; padding: 4px 0; }

/* ---------- Stepper ---------- */
.stepper { display: flex; align-items: center; gap: 6px; margin-bottom: 32px; overflow-x: auto; padding-bottom: 6px; }
.step-dot {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #f1f5f9;
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 14px;
    border-radius: 999px;
    white-space: nowrap;
}
.step-dot.active { background: var(--wosh-blue); color: #fff; }
.step-dot.done { background: var(--wosh-lime); color: var(--wosh-blue); }
.step-line { flex: 1; height: 2px; min-width: 10px; background: rgba(5,31,59,0.15); }
.step-line.active { background: var(--wosh-blue); }

/* ---------- Choice cards ---------- */
.choice-card {
    text-align: left;
    background: #fff;
    border: 2px solid #e2e8f0;
    border-radius: 14px;
    padding: 20px;
    cursor: pointer;
    transition: border-color 0.15s, background 0.15s, transform 0.15s;
    font-family: inherit;
}
.choice-card:hover { border-color: var(--wosh-blue); }
.choice-card.selected { border-color: var(--wosh-blue); background: var(--wosh-ice); }
.choice-card .ico { font-size: 22px; color: var(--wosh-blue); }
.choice-card .title { font-family: 'Outfit', sans-serif; font-size: 18px; font-weight: 600; margin-top: 12px; color: var(--wosh-text); }
.choice-card .desc { font-size: 13px; color: var(--wosh-muted); margin-top: 4px; }

.choice-grid { display: grid; gap: 14px; }
.choice-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.choice-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.choice-grid.cols-7 { grid-template-columns: repeat(7, 1fr); }
.choice-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 720px) {
    .choice-grid.cols-3, .choice-grid.cols-2 { grid-template-columns: 1fr; }
    .choice-grid.cols-7 { grid-template-columns: repeat(4, 1fr); }
    .choice-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
}

.date-card {
    text-align: center;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px 6px;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
}
.date-card .dow { font-size: 10px; text-transform: uppercase; letter-spacing: 0.12em; color: var(--wosh-muted); }
.date-card .day { font-family: 'Outfit', sans-serif; font-size: 22px; font-weight: 700; color: var(--wosh-text); }
.date-card .mo { font-size: 11px; color: var(--wosh-muted); text-transform: uppercase; }
.date-card.selected { background: var(--wosh-blue); border-color: var(--wosh-blue); }
.date-card.selected .dow, .date-card.selected .day, .date-card.selected .mo { color: #fff; }

.time-card {
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    padding: 10px;
    text-align: center;
    background: #fff;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    color: var(--wosh-text);
}
.time-card.selected { background: var(--wosh-lime); border-color: var(--wosh-blue); color: var(--wosh-blue); }

/* ---------- Booking summary side panel ---------- */
.summary-panel { position: sticky; top: 80px; }
.summary-row { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; font-size: 14px; }
.summary-row .label { color: var(--wosh-muted); font-weight: 500; }
.summary-row .value { color: var(--wosh-text); font-weight: 600; text-align: right; }
.summary-total { font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 700; color: var(--wosh-blue); }
.summary-divider { height: 1px; background: var(--wosh-border); margin: 14px 0; }

/* ---------- Table ---------- */
.table-wrap { overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 14px; }
.table thead { background: var(--wosh-ice); color: var(--wosh-blue); }
.table th { text-align: left; padding: 12px 14px; font-size: 11px; text-transform: uppercase; letter-spacing: 0.14em; font-weight: 700; }
.table td { padding: 12px 14px; border-top: 1px solid var(--wosh-border); vertical-align: top; }
.table tbody tr:hover { background: rgba(244, 246, 255, 0.6); }

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.badge-pending { background: #fef3c7; color: #92400e; }
.badge-confirmed { background: rgba(163, 255, 18, 0.35); color: var(--wosh-blue); }
.badge-completed { background: #dcfce7; color: #166534; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }

/* ---------- Footer ---------- */
.footer { background: var(--wosh-blue); color: #fff; margin-top: 80px; }
.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 56px 24px 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 36px;
}
.footer h4 { color: var(--wosh-lime); font-size: 14px; margin-bottom: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer ul li { padding: 4px 0; font-size: 14px; color: rgba(255,255,255,0.85); }
.footer a { color: rgba(255,255,255,0.85); }
.footer a:hover { color: var(--wosh-lime); text-decoration: none; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 18px 24px;
    text-align: center;
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}
@media (max-width: 800px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-inner { grid-template-columns: 1fr; } }

/* ---------- Tabs (Admin) ---------- */
.tab-bar { display: inline-flex; gap: 4px; background: #f1f5f9; border-radius: 10px; padding: 4px; }
.tab-btn {
    padding: 8px 16px;
    border: 0;
    background: transparent;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    color: var(--wosh-text);
    font-family: inherit;
}
.tab-btn.active { background: var(--wosh-blue); color: #fff; }

/* ---------- Stats ---------- */
.stat-card { padding: 24px; }
.stat-card .stat-ico {
    width: 40px; height: 40px;
    border-radius: 10px;
    background: var(--wosh-blue);
    color: var(--wosh-lime);
    display: inline-flex; align-items: center; justify-content: center;
    font-size: 18px;
    font-weight: 800;
}
.stat-card .stat-ico.accent { background: var(--wosh-lime); color: var(--wosh-blue); }
.stat-card .stat-label { margin-top: 14px; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--wosh-muted); font-weight: 700; }
.stat-card .stat-value { font-family: 'Outfit', sans-serif; font-size: 30px; font-weight: 700; color: var(--wosh-blue); margin-top: 4px; }

/* ---------- Toasts ---------- */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px;
    pointer-events: none;
}
.toast {
    background: var(--wosh-blue);
    color: #fff;
    padding: 12px 18px;
    border-radius: 10px;
    box-shadow: 0 14px 30px -10px rgba(5, 31, 59, 0.5);
    font-size: 14px;
    font-weight: 500;
    max-width: 320px;
    pointer-events: auto;
    animation: toastIn 0.3s ease-out;
}
.toast.success { background: #16a34a; }
.toast.error { background: #dc2626; }
@keyframes toastIn {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* ---------- Layout helpers ---------- */
.flex { display: flex; }
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.gap-4 { gap: 16px; }
.gap-6 { gap: 24px; }
.mt-2 { margin-top: 8px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-6 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-sm { font-size: 13px; }
.text-xs { font-size: 11px; }
.muted { color: var(--wosh-muted); }
.uppercase { text-transform: uppercase; letter-spacing: 0.14em; font-size: 11px; font-weight: 700; }
.hidden { display: none; }

/* ---------- Booking confirm receipt ---------- */
.receipt {
    background: var(--wosh-ice);
    border-radius: 10px;
    padding: 22px;
}
.receipt .summary-row { padding: 6px 0; font-size: 14px; }

.success-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--wosh-lime);
    color: var(--wosh-blue);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 800;
    margin: 0 auto;
}

/* ---------- Diag stripes ---------- */
.diag-stripes {
    background-image: repeating-linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.05) 0px,
        rgba(255, 255, 255, 0.05) 2px,
        transparent 2px,
        transparent 12px
    );
}

/* ---------- Loader ---------- */
.spinner {
    width: 22px; height: 22px;
    border: 3px solid rgba(5, 31, 59, 0.15);
    border-top-color: var(--wosh-blue);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Profile / Member ---------- */
.avatar {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: var(--wosh-blue);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 22px;
}

/* ---------- Auth split screen ---------- */
.auth-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 64px);
}
.auth-side {
    background: var(--wosh-blue);
    color: #fff;
    padding: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.auth-side .auth-side-inner { max-width: 360px; text-align: center; }
.auth-side h2 { color: #fff; font-size: 32px; margin-top: 24px; }
.auth-side p { color: rgba(255,255,255,0.85); margin-top: 16px; line-height: 1.6; }
.auth-form-wrap { display: flex; align-items: center; justify-content: center; padding: 48px 24px; }
.auth-form { width: 100%; max-width: 420px; }
.auth-form h1 { font-size: 32px; margin-bottom: 4px; }
.auth-form .muted-sub { color: var(--wosh-muted); margin: 0 0 28px; }
.auth-form .field + .field { margin-top: 14px; }

@media (max-width: 800px) {
    .auth-grid { grid-template-columns: 1fr; }
    .auth-side { display: none; }
}

/* ---------- Big CTA banner ---------- */
.cta-banner { background: var(--wosh-blue); color: #fff; }
.cta-banner .cta-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-banner h2 { color: #fff; font-size: 32px; }

/* ---------- Misc ---------- */
.logo-circle { display: inline-flex; align-items: center; }
.logo-circle img { height: 48px; width: 48px; object-fit: contain; }

.about-hero { display: grid; grid-template-columns: 1.2fr 1fr; gap: 50px; align-items: center; padding: 80px 0; }
.about-hero img { width: 100%; border-radius: 18px; border: 2px solid var(--wosh-blue); }
.about-hero .img-wrap { position: relative; }
.about-hero .img-wrap::before {
    content: '';
    position: absolute; inset: -14px;
    background: var(--wosh-lime);
    border-radius: 22px;
    transform: rotate(2deg);
    z-index: 0;
}
.about-hero .img-wrap img { position: relative; z-index: 1; height: 300px; object-fit: cover; }
@media (max-width: 900px) { .about-hero { grid-template-columns: 1fr; padding: 50px 0; } .about-hero .img-wrap img { height: 200px; } }

.mission-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 32px; }
.mission-stats .ms { background: #fff; border: 1px solid var(--wosh-border); border-radius: 12px; padding: 24px; text-align: center; }
.mission-stats .ms .n { font-family: 'Outfit', sans-serif; font-size: 32px; font-weight: 700; color: var(--wosh-blue); }
.mission-stats .ms .l { font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--wosh-muted); font-weight: 600; margin-top: 4px; }
@media (max-width: 600px) { .mission-stats { grid-template-columns: 1fr; } }

/* Auth-based visibility — body class toggles which links show */
.is-anon .when-auth,
.is-anon .when-member,
.is-anon .when-admin,
.is-member .when-anon,
.is-member .when-admin,
.is-admin .when-anon,
.is-admin .when-member {
    display: none !important;
}

/* helper margins/utilities used by individual pages */
.mt-10 { margin-top: 40px; }
.mb-10 { margin-bottom: 40px; }
.hidden { display: none !important; }
.full-width { width: 100%; }
.text-right { text-align: right; }
.text-uppercase { text-transform: uppercase; letter-spacing: 0.14em; }

/* Area cluster cards — small chip list under the title */
.area-cluster { display: flex; flex-direction: column; }
.area-cluster .area-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.area-cluster .area-list li {
    background: var(--wosh-ice);
    color: var(--wosh-blue);
    border: 1px solid var(--wosh-border);
    border-radius: 999px;
    padding: 3px 10px;
    font-size: 11px;
    font-weight: 600;
}
.area-cluster.selected .area-list li {
    background: #fff;
    border-color: rgba(5, 31, 59, 0.25);
}

textarea.input { font-family: inherit; line-height: 1.5; }

/* Centered section header (used in pricing) */
.pricing-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}
.pricing-head .eyebrow,
.pricing-head h2 { text-align: center; }
.pricing-head p {
    max-width: 580px;
    margin: 14px auto 0;
    line-height: 1.6;
    text-align: center;
}

/* Car lock & change-car affordance */
.choice-card.locked {
    opacity: 0.35;
    cursor: not-allowed;
    filter: grayscale(0.4);
}
.choice-card.locked:hover {
    border-color: #e2e8f0;
    transform: none;
    box-shadow: none;
}
.car-lock-banner {
    background: var(--wosh-ice);
    border: 1px solid var(--wosh-border);
    border-radius: 10px;
    padding: 12px 16px;
    margin-bottom: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--wosh-text);
    flex-wrap: wrap;
}
.car-lock-banner strong { color: var(--wosh-blue); }
.car-lock-banner a {
    color: var(--wosh-blue);
    font-weight: 600;
    text-decoration: none;
}
.car-lock-banner a:hover { text-decoration: underline; }

/* Login hint shown when arriving via ?next= */
.login-hint {
    background: var(--wosh-ice);
    border-left: 3px solid var(--wosh-lime);
    color: var(--wosh-blue);
    padding: 12px 14px;
    margin-bottom: 18px;
    border-radius: 6px;
    font-size: 14px;
}

/* Clickable booking row */
.booking-row { transition: border-color 0.15s, transform 0.15s, box-shadow 0.2s; }
.booking-row:hover {
    border-color: var(--wosh-border-strong);
    transform: translateY(-1px);
    box-shadow: 0 14px 26px -18px rgba(5, 31, 59, 0.3);
}

/* Modal */
.modal-overlay {
    position: fixed; inset: 0;
    background: rgba(5, 31, 59, 0.55);
    backdrop-filter: blur(4px);
    z-index: 100;
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
}
.modal-content {
    background: #fff;
    border-radius: 14px;
    padding: 28px;
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 30px 60px -20px rgba(5, 31, 59, 0.5);
}
.modal-close {
    position: absolute; top: 14px; right: 14px;
    width: 32px; height: 32px;
    border: 0; background: var(--wosh-ice); border-radius: 50%;
    font-size: 22px; line-height: 1; cursor: pointer; color: var(--wosh-blue);
}
.modal-close:hover { background: var(--wosh-blue); color: #fff; }

/* Admin gate */
#adminVerifying {
    text-align: center;
    padding: 100px 20px;
    color: var(--wosh-blue);
    font-family: 'Outfit', sans-serif;
}
#adminVerifying .spinner { margin: 0 auto 16px; }


/* ==========================================================================
   Booked / unavailable time slots (reservation wizard)
   ========================================================================== */
.time-card.slot-taken {
    background: rgba(5, 31, 59, 0.04);
    border-color: var(--wosh-border);
    color: rgba(5, 31, 59, 0.35);
    text-decoration: line-through;
    cursor: not-allowed;
    pointer-events: none;
    position: relative;
}
.time-card.slot-taken:hover { transform: none; }
.time-card .slot-badge {
    position: absolute;
    top: 6px;
    right: 8px;
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--wosh-blue);
    background: var(--wosh-lime);
    padding: 2px 6px;
    border-radius: 999px;
    text-decoration: none;
}


/* ==========================================================================
   Testimonials (home page)
   ========================================================================== */
.testimonial-card {
    background: #fff;
    border: 1px solid var(--wosh-border);
    border-radius: 14px;
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.testimonial-card:hover {
    transform: translateY(-3px);
    border-color: var(--wosh-blue);
    box-shadow: 0 18px 32px -22px rgba(5, 31, 59, 0.4);
}
.testimonial-stars { color: var(--wosh-lime); font-size: 16px; letter-spacing: 4px; }
.testimonial-quote {
    color: var(--wosh-text);
    font-size: 15px;
    line-height: 1.65;
    margin: 0;
    font-style: italic;
}
.testimonial-quote::before { content: '"'; color: var(--wosh-blue); font-size: 22px; font-weight: 700; margin-right: 4px; }
.testimonial-quote::after { content: '"'; color: var(--wosh-blue); font-size: 22px; font-weight: 700; margin-left: 2px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 4px; }
.testimonial-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Outfit', sans-serif; font-weight: 700; font-size: 14px;
    flex-shrink: 0;
}
.testimonial-name { font-family: 'Outfit', sans-serif; font-weight: 600; font-size: 15px; color: var(--wosh-text); }
.testimonial-meta { font-size: 12px; color: var(--wosh-muted); margin-top: 2px; }

/* ==========================================================================
   Booking reference banner (success screen)
   ========================================================================== */
.ref-banner {
    background: linear-gradient(135deg, rgba(163,255,18,0.18) 0%, rgba(163,255,18,0.05) 100%);
    border: 2px dashed var(--wosh-blue);
    border-radius: 14px;
    padding: 22px;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    margin-bottom: 22px;
    text-align: center;
}
.ref-banner .ref-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 11px;
    color: var(--wosh-blue);
    font-weight: 700;
}
.ref-banner .ref-code {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--wosh-blue);
    letter-spacing: 0.04em;
    margin-top: 4px;
}
.ref-banner .ref-hint {
    font-size: 12px;
    color: var(--wosh-muted);
    margin-top: 6px;
}

/* ==========================================================================
   Admin: Export toolbar + clickable rows + tags
   ========================================================================== */
.export-toolbar { padding: 22px; margin-bottom: 22px; }
.export-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr) auto;
    gap: 14px;
    align-items: end;
}
.export-row .field { gap: 6px; }
.export-row .input, .export-row .select { min-height: 42px; }
.export-actions { display: flex; gap: 10px; flex-wrap: nowrap; align-items: end; padding-bottom: 0; }
.export-actions .btn { white-space: nowrap; }

.booking-row-clickable { cursor: pointer; transition: background 0.15s ease; }
.booking-row-clickable:hover { background: var(--wosh-ice); }

.guest-tag, .member-tag {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 2px 8px;
    border-radius: 999px;
    margin-left: 4px;
    vertical-align: middle;
}
.guest-tag { background: rgba(163, 255, 18, 0.25); color: var(--wosh-blue); }
.member-tag { background: rgba(5, 31, 59, 0.1); color: var(--wosh-blue); }

@media (max-width: 900px) {
    .export-row { grid-template-columns: repeat(2, 1fr); }
    .export-actions { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
    .export-row { grid-template-columns: 1fr; }
}

/* ==========================================================================
   FAQ page
   ========================================================================== */
.faq-hero {
    background: var(--wosh-blue);
    color: #fff;
    padding: 60px 0 50px;
    border-bottom: 4px solid var(--wosh-lime);
}
.faq-hero-row {
    display: flex; align-items: center; justify-content: space-between; gap: 40px;
    flex-wrap: wrap;
}
.faq-hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(40px, 6vw, 68px);
    font-weight: 800;
    color: #fff;
    line-height: 1;
    margin-top: 14px;
    letter-spacing: -0.02em;
}
.faq-hero-title .bar { color: var(--wosh-lime); margin: 0 8px; font-weight: 400; }
.faq-hero-sub {
    color: rgba(255, 255, 255, 0.85);
    font-size: 17px;
    line-height: 1.65;
    margin-top: 18px;
    max-width: 560px;
}
.faq-hero-logo { height: 130px; width: auto; object-fit: contain; flex-shrink: 0; }

.faq-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 40px;
    align-items: start;
}
.faq-nav {
    position: sticky;
    top: 90px;
    background: var(--wosh-ice);
    border-radius: 12px;
    padding: 22px;
    display: flex; flex-direction: column; gap: 4px;
}
.faq-nav-link {
    display: block;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--wosh-text);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.15s ease, color 0.15s ease;
}
.faq-nav-link:hover {
    background: #fff;
    color: var(--wosh-blue);
    text-decoration: none;
}

.faq-cat-title {
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--wosh-blue);
    margin: 0 0 18px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--wosh-lime);
}

.accordion { display: flex; flex-direction: column; gap: 12px; }
.accordion-item {
    background: #fff;
    border: 1px solid var(--wosh-border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.accordion-item[open] {
    border-color: var(--wosh-blue);
    box-shadow: 0 14px 28px -22px rgba(5, 31, 59, 0.35);
}
.accordion-summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--wosh-text);
    user-select: none;
}
.accordion-summary::-webkit-details-marker { display: none; }
.accordion-summary:hover { background: var(--wosh-ice); }
.accordion-summary .q-num {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 14px;
    color: var(--wosh-blue);
    background: var(--wosh-ice);
    padding: 6px 10px;
    border-radius: 6px;
    flex-shrink: 0;
    min-width: 38px;
    text-align: center;
}
.accordion-summary .q-text { flex: 1; line-height: 1.4; }
.accordion-summary .acc-icon {
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--wosh-blue);
    color: var(--wosh-lime);
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; font-weight: 700;
    flex-shrink: 0;
    transition: transform 0.2s ease, background 0.2s ease;
}
.accordion-item[open] .acc-icon {
    transform: rotate(45deg);
    background: var(--wosh-lime);
    color: var(--wosh-blue);
}
.accordion-body {
    padding: 4px 22px 22px 70px;
    color: var(--wosh-muted);
    font-size: 15px;
    line-height: 1.7;
}

.faq-cta {
    background: var(--wosh-blue);
    color: #fff;
    border-radius: 14px;
    padding: 32px;
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

@media (max-width: 900px) {
    .faq-layout { grid-template-columns: 1fr; }
    .faq-nav { position: static; flex-direction: row; flex-wrap: wrap; align-items: center; }
    .faq-nav-link { padding: 8px 12px; font-size: 13px; }
    .faq-hero-logo { height: 90px; }
    .accordion-body { padding-left: 22px; }
    .accordion-summary { padding: 16px 18px; font-size: 15px; }
}

/* ==========================================================================
   Step 7 – Acknowledgement checkbox
   ========================================================================== */
.policy-ack {
    background: var(--wosh-ice);
    border-left: 4px solid var(--wosh-blue);
    padding: 18px 20px;
    border-radius: 10px;
}
.ack-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    padding: 8px 0;
}
.ack-checkbox input[type="checkbox"] {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--wosh-blue);
    cursor: pointer;
}
.ack-checkbox .ack-text {
    font-size: 14px;
    line-height: 1.55;
    color: var(--wosh-text);
}

/* ==========================================================================
   Policy page
   ========================================================================== */
.policy-hero {
    background: var(--wosh-blue);
    color: #fff;
    padding: 60px 0 44px;
    border-bottom: 4px solid var(--wosh-lime);
}
.policy-title {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(32px, 5vw, 52px);
    color: #fff;
    margin-top: 10px;
    line-height: 1.05;
}
.policy-sub {
    color: rgba(255, 255, 255, 0.85);
    margin-top: 14px;
    font-size: 16px;
    max-width: 620px;
}
.policy-doc {
    max-width: 780px;
    background: #fff;
    border: 1px solid var(--wosh-border);
    border-radius: 14px;
    padding: 42px;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--wosh-text);
    box-shadow: 0 20px 40px -30px rgba(5, 31, 59, 0.35);
}
.policy-doc p { margin: 0 0 18px; }
.policy-doc ul { margin: 0 0 22px; padding-left: 22px; }
.policy-doc li { margin-bottom: 8px; }
.policy-callout {
    background: linear-gradient(135deg, rgba(163, 255, 18, 0.18) 0%, rgba(163, 255, 18, 0.05) 100%);
    border: 1px dashed var(--wosh-blue);
    border-radius: 10px;
    padding: 20px 22px;
    margin-top: 28px;
}
.policy-callout-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--wosh-blue);
    margin-bottom: 8px;
}
.policy-callout p { margin: 0; }
.policy-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--wosh-border);
}
@media (max-width: 700px) {
    .policy-doc { padding: 26px; }
}

/* ==========================================================================
   Footer social icons
   ========================================================================== */
.footer-socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}
.social-icon {
    width: 38px; height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.15s ease, transform 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.social-icon:hover {
    background: var(--wosh-lime);
    color: var(--wosh-blue);
    border-color: var(--wosh-lime);
    transform: translateY(-2px);
    text-decoration: none;
}
.social-icon .social-glyph {
    font-family: 'Outfit', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: -0.5px;
}

/* ==========================================================================
   Admin-blocked date on the reservation date grid
   ========================================================================== */
.date-card.date-blocked {
    background: rgba(5, 31, 59, 0.05);
    border-color: var(--wosh-border);
    color: rgba(5, 31, 59, 0.35);
    cursor: not-allowed;
    pointer-events: none;
    position: relative;
}
.date-card.date-blocked::after {
    content: 'Blocked';
    position: absolute;
    top: 4px;
    right: 6px;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: var(--wosh-blue);
    color: var(--wosh-lime);
    padding: 2px 6px;
    border-radius: 999px;
}
.date-card.date-blocked .dow,
.date-card.date-blocked .day,
.date-card.date-blocked .mo { text-decoration: line-through; opacity: 0.55; }

/* ==========================================================================
   Admin: Blocked Dates management card
   ========================================================================== */
.blocked-dates-card { padding: 22px; margin-bottom: 22px; }
.blocked-dates-row {
    display: grid;
    grid-template-columns: 180px 1fr auto;
    gap: 12px;
    align-items: end;
}
.blocked-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 14px;
    margin-top: 20px;
    max-height: 380px;
    overflow-y: auto;
    padding: 2px;
}
.blocked-empty {
    grid-column: 1 / -1;
    display: flex; align-items: center; justify-content: center; gap: 10px;
    padding: 28px;
    color: var(--wosh-muted);
    background: var(--wosh-ice);
    border-radius: 12px;
    border: 1px dashed var(--wosh-border);
    font-size: 14px;
}
.blocked-empty-icon { font-size: 20px; }

.blocked-item {
    display: grid !important;
    grid-template-columns: 78px 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 14px 16px 14px 20px;
    background: #ffffff;
    border-radius: 14px;
    border: 1px solid var(--wosh-border);
    box-shadow: 0 2px 6px -3px rgba(5, 31, 59, 0.12);
    transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
    position: relative;
    overflow: hidden;
    min-height: 90px;
}
.blocked-item::before {
    content: '';
    position: absolute; left: 0; top: 0; bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--wosh-blue) 0%, var(--wosh-lime) 100%);
}
.blocked-item:hover {
    border-color: var(--wosh-blue);
    box-shadow: 0 14px 28px -18px rgba(5, 31, 59, 0.4);
    transform: translateY(-2px);
}

.b-datechip {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    background: linear-gradient(160deg, var(--wosh-blue) 0%, #0a2f5c 100%);
    color: #fff;
    border-radius: 12px;
    padding: 10px 6px 8px;
    width: 78px;
    height: 82px;
    flex-shrink: 0;
    line-height: 1;
    box-shadow: 0 6px 12px -8px rgba(5, 31, 59, 0.55);
}
.b-datechip .b-dow {
    display: block;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--wosh-lime);
    margin-bottom: 6px;
}
.b-datechip .b-day {
    display: block;
    font-family: 'Outfit', sans-serif;
    font-size: 30px;
    font-weight: 800;
    line-height: 1;
    color: #fff;
}
.b-datechip .b-mo {
    display: block;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    margin-top: 6px;
}

.b-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
}
.b-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 15px;
    color: var(--wosh-text);
    line-height: 1.3;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.b-reason {
    font-size: 13px;
    color: var(--wosh-muted);
    font-style: italic;
    overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
}
.b-reason::before {
    content: '';
    display: inline-block;
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--wosh-lime);
    flex-shrink: 0;
}

.b-remove {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(220, 38, 38, 0.08);
    border: 1px solid rgba(220, 38, 38, 0.28);
    color: #dc2626;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 12px;
    padding: 8px 12px;
    border-radius: 999px;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
    flex-shrink: 0;
    white-space: nowrap;
}
.b-remove:hover {
    background: #dc2626;
    color: #fff;
    border-color: #dc2626;
    transform: scale(1.03);
}
.b-remove svg { flex-shrink: 0; }

@media (max-width: 700px) {
    .blocked-dates-row { grid-template-columns: 1fr; }
    .blocked-list { grid-template-columns: 1fr; }
    .blocked-item { grid-template-columns: 64px 1fr auto; gap: 12px; padding: 12px 14px 12px 18px; }
    .b-datechip { width: 64px; height: 72px; }
    .b-datechip .b-day { font-size: 24px; }
    .b-remove span { display: none; }
}


/* ==========================================================================
   Payment Instructions card (booking success screen)
   ========================================================================== */
.payment-card {
    background: linear-gradient(160deg, #f4f8ff 0%, #ffffff 100%);
    border: 1px solid var(--wosh-border);
    border-left: 6px solid var(--wosh-blue);
    border-radius: 14px;
    padding: 24px 26px;
    box-shadow: 0 12px 24px -20px rgba(5, 31, 59, 0.35);
}
.payment-head {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}
.payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--wosh-blue);
    color: var(--wosh-lime);
    font-size: 22px;
    flex-shrink: 0;
}
.payment-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 10px;
    font-weight: 700;
    color: var(--wosh-blue);
}
.payment-title {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--wosh-text);
    margin: 4px 0 0;
    line-height: 1.2;
}
.payment-bank {
    background: #fff;
    border: 1px dashed rgba(5, 31, 59, 0.25);
    border-radius: 12px;
    padding: 16px 18px;
    margin: 0 0 18px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.pb-row {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}
.pb-row dt {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--wosh-muted);
    font-weight: 600;
    margin: 0;
    flex-shrink: 0;
}
.pb-row dd {
    margin: 0;
    text-align: right;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    color: var(--wosh-text);
    word-break: break-word;
}
.pb-acct {
    letter-spacing: 0.06em;
    font-size: 17px !important;
    color: var(--wosh-blue) !important;
    font-weight: 800 !important;
}
.payment-note {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--wosh-text);
    margin: 0 0 16px;
}
.whatsapp-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: #fff !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 20px;
    border-radius: 999px;
    text-decoration: none !important;
    transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
    box-shadow: 0 8px 20px -12px rgba(37, 211, 102, 0.7);
}
.whatsapp-cta:hover {
    background: #1EBE5C;
    transform: translateY(-2px);
    box-shadow: 0 14px 26px -14px rgba(37, 211, 102, 0.7);
}

/* Payment QR poster (below bank details) */
.payment-qr {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    margin: 0 0 18px;
}
.payment-qr img {
    display: block;
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 14px;
    box-shadow: 0 12px 26px -18px rgba(5, 31, 59, 0.5);
    background: #fff;
}
.payment-qr-caption {
    font-size: 12.5px;
    color: var(--wosh-muted);
    text-align: center;
    line-height: 1.4;
    max-width: 320px;
    font-style: italic;
}
@media (max-width: 600px) {
    .payment-qr img { max-width: 240px; }
}

.whatsapp-cta svg { flex-shrink: 0; }

@media (max-width: 600px) {
    .payment-card { padding: 20px 18px; }
    .payment-head { gap: 12px; }
    .payment-icon { width: 40px; height: 40px; font-size: 20px; }
    .pb-row { flex-direction: column; align-items: flex-start; gap: 4px; }
    .pb-row dd { text-align: left; }
    .whatsapp-cta { width: 100%; justify-content: center; }
}