﻿/* ============================================
   Cotizador Inteligente â€” Vanilla CSS
   Mobile-first, app-like design
   ============================================ */

:root {
    --brand: #1fb86d;
    --accent: #2dd4bf;
    --accent-soft: rgba(45, 212, 191, 0.12);
    --navy: #0f172a;
    --bg: #f8fafc;
    --card: #ffffff;
    --ink: #0f172a;
    --muted: #64748b;
    --light: #94a3b8;
    --border: #e2e8f0;
    --danger: #ef4444;
    --success: #25D366;
    --radius: 16px;
    --radius-sm: 12px;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, .08);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, .12);
    --transition: all .25s cubic-bezier(.4, 0, .2, 1);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Public Sans', system-ui, -apple-system, sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.5;
    min-height: 100dvh;
    overscroll-behavior: none;
}

img {
    max-width: 100%;
    display: block;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ===== APP SHELL ===== */
.app-shell {
    max-width: 480px;
    margin: 0 auto;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    background: var(--card);
    box-shadow: 0 0 40px rgba(0, 0, 0, .06);
    padding-bottom: 140px;
    position: relative;
}

/* ===== HEADER ===== */
.app-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 20;
}

.header-back {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 50%;
    color: var(--ink);
    transition: var(--transition);
}

.header-back:hover {
    background: var(--bg);
}

.header-title {
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    flex: 1;
    text-align: center;
}

.header-spacer {
    width: 40px;
}

/* ===== PROGRESS ===== */
.progress-section {
    padding: 16px 20px;
    background: var(--card);
    border-bottom: 1px solid var(--border);
}

.progress-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.progress-label {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--navy);
}

.progress-pct {
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted);
}

.progress-track {
    height: 8px;
    background: #e2e8f0;
    border-radius: 99px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), var(--brand));
    border-radius: 99px;
    transition: width .5s cubic-bezier(.4, 0, .2, 1);
}

.progress-hint {
    margin-top: 6px;
    font-size: .78rem;
    color: var(--muted);
    font-style: italic;
}


.install-banner {
    margin: 16px 20px 0;
    padding: 16px;
    border: 1px solid rgba(31, 184, 109, 0.18);
    border-radius: var(--radius);
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.12), rgba(31, 184, 109, 0.08));
    display: grid;
    gap: 14px;
}

.install-banner[hidden] {
    display: none;
}

.install-banner-title {
    font-size: .86rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: var(--navy);
}

.install-banner-copy {
    margin-top: 4px;
    font-size: .84rem;
    color: var(--muted);
}

.install-banner-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.install-banner-btn {
    flex: 1;
    border: none;
    border-radius: 999px;
    padding: 12px 14px;
    background: var(--navy);
    color: white;
    font-family: inherit;
    font-size: .88rem;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
}

.install-banner-btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.install-banner-dismiss {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 12px 14px;
    background: white;
    color: var(--muted);
    font-family: inherit;
    font-size: .82rem;
    font-weight: 600;
    cursor: pointer;
}
/* ===== STEPS ===== */
.step {
    display: none;
    padding: 24px 20px;
    animation: stepFadeIn .4s ease;
}

.step.active {
    display: block;
}

@keyframes stepFadeIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-header {
    text-align: center;
    margin-bottom: 24px;
}

.step-title {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--navy);
    margin-bottom: 8px;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: var(--accent-soft);
    color: var(--accent);
    font-size: .82rem;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 99px;
}

.location-badge .material-symbols-outlined {
    font-size: .9rem;
}

/* ===== SERVICE CARDS (Step 1) ===== */
.service-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.service-card {
    display: flex;
    flex-direction: column;
    width: 100%;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    cursor: pointer;
    transition: var(--transition);
    text-align: left;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
}

.service-card:hover {
    border-color: var(--accent);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.service-card:active {
    transform: scale(.98);
}

.service-card-img {
    height: 140px;
    overflow: hidden;
    background: var(--bg);
}

.service-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.service-card:hover .service-card-img img {
    transform: scale(1.05);
}

.service-card-body {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-card-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.service-card-top h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
}

.service-icon {
    color: var(--accent);
    font-size: 1.4rem;
}

.service-card-body p {
    font-size: .85rem;
    color: var(--muted);
    margin-bottom: 8px;
}

.service-card-price {
    font-size: .82rem;
    font-weight: 700;
    color: var(--brand);
    margin-top: auto;
    align-self: flex-start;
    white-space: nowrap;
}

/* ===== DETAIL CARDS (Step 2 Hogar) ===== */
.detail-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}

.detail-card-img {
    height: 140px;
    overflow: hidden;
}

.detail-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.detail-card-body {
    padding: 16px;
}

.detail-card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.detail-card-top h3 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
}

.detail-sub {
    font-size: .8rem;
    color: var(--muted);
    margin-top: 2px;
}

.accent-icon {
    color: var(--accent);
    font-size: 1.3rem;
}

/* Size buttons */
.size-options {
    display: flex;
    gap: 8px;
}

.size-btn {
    flex: 1;
    padding: 10px 8px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    background: var(--card);
    cursor: pointer;
    font-size: .8rem;
    font-weight: 600;
    color: var(--muted);
    font-family: inherit;
    transition: var(--transition);
}

.size-btn:hover {
    border-color: var(--accent);
    color: var(--ink);
}

.size-btn.selected {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--navy);
    font-weight: 700;
}

/* Quantity control */
.qty-control {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px;
}

.qty-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: var(--card);
    cursor: pointer;
    color: var(--accent);
    font-family: inherit;
    transition: var(--transition);
}

.qty-btn.plus {
    background: var(--accent);
    color: white;
    border: none;
    box-shadow: 0 4px 12px rgba(45, 212, 191, .3);
}

.qty-btn:active {
    transform: scale(.9);
}

.qty-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--navy);
}

.qty-unit {
    font-size: .85rem;
    color: var(--muted);
    font-weight: 500;
}

/* ===== VEHICLE CARDS (Step 2 VehÃ­culo) ===== */
.vehicle-cards {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 24px;
}

.vehicle-card {
    position: relative;
    border: 2px solid transparent;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    background: none;
    font-family: inherit;
    text-align: left;
    padding: 0;
}

.vehicle-card:hover {
    border-color: rgba(255, 255, 255, .3);
}

.vehicle-card.selected {
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(45, 212, 191, .2);
}

.vehicle-card-img {
    height: 130px;
    overflow: hidden;
    position: relative;
}

.vehicle-card-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(15, 23, 42, .75) 0%, transparent 60%);
}

.vehicle-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}

.vehicle-card:hover .vehicle-card-img img {
    transform: scale(1.05);
}

.vehicle-card-label {
    position: absolute;
    bottom: 12px;
    left: 16px;
    z-index: 2;
}

.vehicle-card-label span {
    color: white;
    font-size: 1rem;
    font-weight: 700;
}

.vehicle-card .vehicle-check {
    display: none;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 28px;
    height: 28px;
    background: var(--accent);
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 3;
}

.vehicle-card .vehicle-check .material-symbols-outlined {
    font-size: .9rem;
    color: white;
    font-weight: 700;
}

.vehicle-card.selected .vehicle-check {
    display: flex;
}

/* ===== BUSINESS CARDS (Step 2 Negocio) ===== */
.biz-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 24px;
}

.biz-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 20px 12px;
    border: 2px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    cursor: pointer;
    font-family: inherit;
    font-size: .88rem;
    font-weight: 600;
    color: var(--muted);
    transition: var(--transition);
}

.biz-card:hover {
    border-color: var(--accent);
    color: var(--ink);
}

.biz-card.selected {
    border-color: var(--accent);
    background: var(--accent-soft);
    color: var(--navy);
}

.biz-icon {
    color: var(--accent);
    font-size: 1.8rem;
}

/* ===== EXTRAS ===== */
.extras-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--navy);
    margin: 24px 0 12px;
}

.extras-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.extra-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    background: var(--card);
    cursor: pointer;
    transition: var(--transition);
}

.extra-item:hover {
    border-color: rgba(45, 212, 191, .4);
}

.extra-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.extra-icon-wrap {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--accent-soft);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
}

.extra-icon-wrap .material-symbols-outlined {
    color: var(--accent);
}

.extra-name {
    font-size: .88rem;
    font-weight: 700;
    color: var(--navy);
}

.extra-desc {
    font-size: .75rem;
    color: var(--muted);
}

.extra-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    min-width: 96px;
    justify-content: flex-end;
}

.extra-price {
    font-size: .85rem;
    font-weight: 700;
    color: var(--accent);
    white-space: nowrap;
    text-align: right;
}

.extra-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    accent-color: var(--accent);
    cursor: pointer;
}

/* ===== CONTACT FORM ===== */
.contact-form-section {
    padding: 0 20px 16px;
}

.form-row {
    margin-bottom: 14px;
}

.form-label {
    display: block;
    font-size: .82rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-input {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: .95rem;
    color: var(--ink);
    transition: var(--transition);
    background: var(--card);
}

.form-input:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 4px rgba(45, 212, 191, .15);
}

.form-input::placeholder {
    color: var(--light);
}

.consent-group {
    display: grid;
    gap: 10px;
    margin-top: 8px;
}

.consent-group-app {
    margin-top: 4px;
}

.consent-check {
    display: grid;
    grid-template-columns: 18px minmax(0, 1fr);
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.92);
}

.consent-check input {
    margin: 2px 0 0;
    width: 16px;
    height: 16px;
    padding: 0;
    accent-color: var(--accent);
}

.consent-copy {
    font-size: .82rem;
    color: var(--muted);
    line-height: 1.45;
}

.hp-field {
    position: absolute !important;
    left: -9999px !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}

/* ===== CONFIRMATION (Step 3) ===== */
.confirm-hero {
    text-align: center;
    margin-bottom: 24px;
}

.confirm-check-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    background: #d1fae5;
    border-radius: 50%;
    margin-bottom: 14px;
    animation: popIn .5s cubic-bezier(.17, .67, .35, 1.5);
}

.confirm-check-icon {
    font-size: 2.8rem;
    color: #059669;
    font-variation-settings: 'FILL' 1;
}

.confirm-title {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: -.03em;
}

.confirm-sub {
    font-size: .9rem;
    color: var(--muted);
    margin-top: 6px;
}

.accent-text {
    color: var(--accent);
}

@keyframes popIn {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    60% {
        transform: scale(1.15);
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Summary Card */
.summary-card {
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--card);
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.summary-header {
    padding: 12px 16px;
    background: var(--accent-soft);
    font-size: .78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--accent);
    border-bottom: 1px solid var(--border);
}

.summary-body {
    padding: 16px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
}

.summary-row+.summary-row {
    border-top: 1px solid #f1f5f9;
}

.summary-label {
    font-size: .82rem;
    color: var(--muted);
}

.summary-value {
    font-size: .88rem;
    font-weight: 600;
    text-align: right;
    max-width: 60%;
}

.summary-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 16px;
    margin-top: 12px;
    border-top: 1px solid var(--border);
}

.summary-total-label {
    font-size: .75rem;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .05em;
}

.summary-total-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -.02em;
}

.summary-total-note {
    font-size: .75rem;
    color: var(--muted);
    font-weight: 500;
}

/* Actions */
.confirm-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.btn-whatsapp {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px;
    background: var(--success);
    color: white;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 6px 20px rgba(37, 211, 102, .3);
}

.btn-whatsapp:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.btn-whatsapp:active {
    transform: scale(.98);
}

.btn-secondary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px;
    background: var(--card);
    color: var(--muted);
    font-size: .9rem;
    font-weight: 600;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
}

.btn-secondary:hover {
    background: var(--bg);
    color: var(--ink);
}

/* ===== BOTTOM BAR ===== */
.bottom-bar {
    position: fixed;
    bottom: 52px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 20px;
    background: var(--card);
    border-top: 1px solid var(--border);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, .06);
    z-index: 15;
}

.bottom-bar-price {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.bottom-bar-label {
    font-size: .65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--muted);
}

.bottom-bar-total {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent);
    letter-spacing: -.02em;
    transition: var(--transition);
    line-height: 1;
    white-space: nowrap;
}

.bottom-bar-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 14px 28px;
    background: var(--accent);
    color: white;
    font-size: .95rem;
    font-weight: 700;
    border: none;
    border-radius: var(--radius);
    cursor: pointer;
    font-family: inherit;
    transition: var(--transition);
    box-shadow: 0 6px 16px rgba(45, 212, 191, .25);
    white-space: nowrap;
}

.bottom-bar-btn:hover {
    filter: brightness(1.05);
    transform: translateY(-1px);
}

.bottom-bar-btn:active {
    transform: scale(.96);
}

.bottom-bar-btn:disabled {
    opacity: .45;
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

.bottom-bar-btn:disabled:hover {
    filter: none;
    transform: none;
}

/* ===== BOTTOM NAV ===== */
.bottom-nav {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    display: flex;
    background: var(--card);
    border-top: 1px solid var(--border);
    z-index: 15;
    padding: 6px 0 calc(6px + env(safe-area-inset-bottom, 0px));
}

.bottom-nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    padding: 4px 0;
    font-size: .65rem;
    font-weight: 500;
    color: var(--light);
    text-decoration: none;
    transition: var(--transition);
}

.bottom-nav-item.active {
    color: var(--accent);
    font-weight: 700;
}

.bottom-nav-item .material-symbols-outlined {
    font-size: 1.3rem;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    max-width: 360px;
    padding: 12px 20px;
    border-radius: 12px;
    background: var(--navy);
    color: white;
    font-size: .85rem;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    z-index: 100;
    transition: transform .3s ease;
    pointer-events: none;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast.error {
    background: var(--danger);
}

.toast.success {
    background: var(--brand);
}

/* ===== BASE INCLUDES TAGS ===== */
.base-includes {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 12px;
}

.base-tag {
    font-size: .7rem;
    font-weight: 600;
    color: #059669;
    background: #ecfdf5;
    padding: 3px 10px;
    border-radius: 99px;
    border: 1px solid #d1fae5;
}

/* Step subtitle */
.step-subtitle {
    font-size: .82rem;
    color: var(--muted);
    font-style: italic;
    margin-bottom: 20px;
    padding: 8px 14px;
    background: #ecfdf5;
    border-radius: var(--radius-sm);
    border-left: 3px solid #059669;
}

/* Vehicle includes text */
.vehicle-includes {
    display: block;
    color: rgba(255, 255, 255, .7);
    font-size: .7rem;
    font-weight: 400;
    margin-top: 2px;
}

/* Extras optional label */
.extras-optional {
    font-size: .82rem;
    font-weight: 400;
    color: var(--muted);
    font-style: italic;
}

/* Bottom bar disclaimer */
.bottom-bar-disclaimer {
    font-size: .6rem;
    color: var(--light);
    font-style: italic;
    font-weight: 400;
}

/* Summary disclaimer */
.summary-disclaimer {
    font-size: .72rem;
    color: var(--muted);
    font-style: italic;
    text-align: center;
    margin-top: 8px;
    padding: 8px 12px;
    background: #fffbeb;
    border-radius: 8px;
    border: 1px solid #fde68a;
    line-height: 1.4;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 380px) {
    .install-banner-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .install-banner-btn,
    .install-banner-dismiss {
        width: 100%;
    }
    .bottom-bar {
        padding: 12px 14px;
    }

    .bottom-bar-total {
        font-size: 1.35rem;
    }

    .bottom-bar-btn {
        padding: 12px 14px;
        font-size: .88rem;
    }
}
@media (min-width: 480px) {
    .service-cards {
        gap: 20px;
    }

    .service-card-img {
        height: 180px;
    }

    .biz-cards {
        gap: 16px;
    }
}

@media (min-width: 768px) {
    .app-shell,
    .bottom-bar,
    .bottom-nav {
        max-width: 520px;
    }

    .service-card-img {
        height: 200px;
    }

    .vehicle-cards {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
    }

    .vehicle-card-img {
        height: 160px;
    }
}







