/* ===============================
    AUTOBOMBO – Landing pública
================================ */

:root {
    --primary-red: #C0392B;
    --primary-red-dark: #a93226;
    --primary-red-soft: rgba(192, 57, 43, 0.12);
    --bg-soft: #f8fafc;
    --card-bg: #ffffff;
    --border-soft: #e5e7eb;
    --text-main: #0f172a;
    --text-muted: #64748b;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}


body.autobombo-body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: var(--bg-soft);
    color: var(--text-main);
}

/* ===============================
    HEADER PÚBLICO
================================ */

.autobombo-header {
    background: linear-gradient(180deg, #C0392B 0%, #a93226 100%);
    color: #fff;
    padding: 12px 20px 12px;
    border-bottom-left-radius: 22px;
    border-bottom-right-radius: 22px;
    box-shadow: inset 0 -1px 0 rgba(255,255,255,.05);
}

/* Offset para navegación con header fijo */
section[id] {
    scroll-margin-top: 50px;
}

.autobombo-header-inner {
    max-width: 1440px;
    margin: 0 auto;
}

.autobombo-header-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

.autobombo-header-block {
    display: flex;
    align-items: center;
    gap: 16px;
    min-width: 0;
}

.autobombo-logo {
    width: 76px;
    height: 76px;
    object-fit: contain;
    border-radius: 20px;
    background: #fff;
    padding: 8px;
    box-shadow: 0 8px 18px rgba(0,0,0,.10);
    flex-shrink: 0;
}

.autobombo-shell-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.autobombo-shell-auth-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    height: 42px;
    padding: 0 18px;
    border-radius: 14px;
    text-decoration: none;
    font-size: 15px;
    font-weight: 800;
    transition: .18s ease;
}

.autobombo-shell-auth-btn-primary {
    background: #ffffff;
    color: #0f172a;
    border: 1px solid #ffffff;
}

.autobombo-shell-auth-btn-primary:hover {
    background: #f8fafc;
    color: #0f172a;
    transform: translateY(-1px);
}

.autobombo-shell-auth-btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
}

.autobombo-shell-auth-btn-secondary:hover {
    background: rgba(255,255,255,.09);
    color: #ffffff;
    border-color: rgba(255,255,255,.24);
    transform: translateY(-1px);
}

.autobombo-nav {
    display: flex;
    gap: 12px;
    align-items: center;
}

.autobombo-nav a {
    height: 42px;
    padding: 0 18px;
    border-radius: 14px;
    font-weight: 800;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: .18s ease;
}

.autobombo-login-link {
    background: rgba(255,255,255,0.12);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
}

.autobombo-login-link:hover {
    background: rgba(255,255,255,0.2);
}

.autobombo-demo-link {
    background: transparent;
    color: #f8fafc;
    border: 1px solid rgba(255,255,255,.16);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.03);
    font-weight: 900;
}

.autobombo-demo-link:hover {
    background: rgba(255,255,255,.09);
    color: #ffffff;
    border-color: rgba(255,255,255,.24);
    transform: translateY(-1px);
}

/* ===============================
    HERO – BLOQUE 1
================================ */

.hero {
    position: relative;
    height: min(90vh, 760px);
    background: url('/img/info_publi_1.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    }

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(15,23,42,0.65),
        rgba(15,23,42,0.45)
    );
}

.hero-content {
    position: relative;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
    color: #fff;
}

.hero-content h1 {
    max-width: 880px;
    font-size: clamp(25px, 4vw, 40px);
    line-height: 1.1;
    font-weight: 900;
    margin-bottom: 20px;
}

/* Cards funciones */
.feature-cards {
    margin-top: 26px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
}

.feature-card {
    background: rgba(255,255,255,0.96);
    border: 1px solid var(--border-soft);
    border-radius: 20px;
    padding: 18px;
    color: var(--text-main);
    box-shadow: 0 12px 28px rgba(15,23,42,0.12);
    transition: .18s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 36px rgba(15,23,42,0.16);
}

.feature-card h3 {
    margin: 0 0 6px;
    color: var(--primary-red);
    font-size: 17px;
}

.feature-card p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.55;
}

/* ===============================
    BLOQUE 2 – Ventajas
================================ */

.advantages {
    padding: 80px 24px;
}

.advantages h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 36px;
}

.advantage-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}

.adv-card {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 26px rgba(15,23,42,0.06);
}

.adv-card h3 {
    margin: 0 0 8px;
    color: var(--primary-red);
}

.adv-card p {
    margin: 0;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ===============================
    BLOQUE 3 – Planes
================================ */

.plans {
    padding: 80px 24px;
    background: linear-gradient(180deg, #ffffff, #fff7f6);
}

.plans h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 36px;
}

.plans-grid {
    max-width: 940px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
}

.plan-card {
    background: var(--card-bg);
    border: 1px solid var(--border-soft);
    border-radius: 26px;
    padding: 34px;
    text-align: center;
    box-shadow: 0 14px 32px rgba(15,23,42,0.08);
}

.plan-card.highlight {
    border-color: var(--primary-red);
    box-shadow: 0 20px 44px rgba(192,57,43,0.22);
}

.plan-card h3 {
    margin: 0 0 10px;
    font-size: 28px;
    color: var(--primary-red);
}

.plan-card p {
    margin: 0;
    color: var(--text-muted);
}

/* ===============================
    BLOQUE 4 – DEMO
================================ */

.demo {
    padding: 90px 24px;
}

.demo h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 24px;
    font-size: clamp(34px, 5vw, 56px);
}

.demo-form {
    max-width: 620px;
    margin: 0 auto;
    padding: 32px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.88);
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
    display: grid;
    gap: 14px;
}

.demo-form input,
.demo-form select,
.demo-form textarea {
    min-height: 86px;
    resize: vertical;
    width: 100%;
    min-height: 48px;
    padding: 12px 16px;
    border-radius: 14px;
    border: 1px solid rgba(148, 163, 184, 0.45);
    background: #ffffff;
    color: #1f2937;
    font-size: 15px;
    font-family: inherit;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.demo-form input:focus,
.demo-form select:focus,
.demo-form textarea:focus {
    border-color: #C0392B;
    box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.10);
}

.demo-request-message {
    margin: 0;
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.demo-request-message.success {
    color: #15803d;
}

.demo-request-message.error {
    color: #C0392B;
}

.demo-form input:focus,
.demo-form select:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 4px var(--primary-red-soft);
}

.demo-form button {
    height: 52px;
    border-radius: 16px;
    border: none;
    background: linear-gradient(135deg, #C0392B 0%, #d94a3a 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    transition: .18s ease;
}

.demo-form button:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(192,57,43,0.28);
}

/* ===============================
    RESPONSIVE
================================ */

@media (max-width: 768px) {
    .hero {
        height: auto;
        padding: 60px 0;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .advantages,
    .plans,
    .demo {
        padding: 60px 18px;
    }
}

/* ===============================
HEADER FIJO
================================ */
.autobombo-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

/* Offset para evitar que el contenido quede debajo del header */
.autobombo-body {
    padding-top: 120px; 
}

/* ===============================
PLANES – PRECIOS
================================ */
.plan-subtitle {
    font-size: 15px;
    margin-bottom: 18px;
}

.plan-prices {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 18px;
}

.price-item {
    background: var(--bg-soft);
    border-radius: 16px;
    padding: 14px 18px;
    min-width: 120px;
}

.price-item span {
    display: block;
    font-size: 13px;
    color: var(--text-muted);
}

.price-item strong {
    font-size: 22px;
    color: var(--primary-red);
}

/* ===============================
FEATURES
================================ */
.plans-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-top: 36px;
}

.features-column {
    background: #fff;
    border-radius: 26px;
    padding: 28px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 14px 36px rgba(15,23,42,0.08);
}

.features-column.highlight {
    border-color: var(--primary-red);
    box-shadow: 0 20px 44px rgba(192,57,43,0.18);
}

.plan-column-title {
    text-align: center;
    font-size: 22px;
    margin-bottom: 26px;
    color: var(--primary-red);
}

.feature-item {
    padding: 16px 0;
    border-bottom: 1px dashed var(--border-soft);
}

.feature-item:last-child {
    border-bottom: none;
}

.feature-item h5 {
    margin: 0 0 6px;
    font-size: 15px;
    color: var(--primary-red);
}

.feature-item p {
    margin: 0;
    font-size: 14px;
    color: var(--text-muted);
}

.extra {
    display: inline-block;
    margin-top: 6px;
    font-size: 13px;
    font-weight: 700;
    color: #2563eb;
}

.demo-wizard-card {
    max-width: 720px;
    text-align: center;
}

.wizard-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 10px;
    margin: 24px 0;
}

.wizard-steps span {
    background: #f8fafc;
    border: 1px solid var(--border-soft);
    border-radius: 14px;
    padding: 12px 8px;
    font-size: 13px;
    font-weight: 800;
    color: var(--text-muted);
}

.wizard-steps span.active {
    background: var(--primary-red-soft);
    color: var(--primary-red);
    border-color: rgba(192, 57, 43, 0.35);
}

@media (max-width: 768px) {
    body.autobombo-body {
        overflow-x: hidden;
    }

    .autobombo-header {
        padding: 10px 12px;
    }

    .autobombo-header-inner {
        width: 100%;
    }

    .autobombo-header-top {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
        align-items: center;
    }

    .autobombo-header-block {
        width: 100%;
        display: flex;
        justify-content: center;
    }

    .autobombo-logo {
        max-height: 52px;
        max-width: 150px;
        object-fit: contain;
    }

    .autobombo-shell-actions {
        margin: 0;
    }

    .autobombo-shell-auth-btn {
        min-height: 38px;
        padding: 9px 12px;
        font-size: 13px;
        border-radius: 999px;
    }

    .hero {
        padding: 36px 16px 28px;
    }

    .hero-content h1 {
        font-size: clamp(30px, 8vw, 42px);
        line-height: 1.08;
        text-align: center;
    }

    .feature-cards,
    .advantage-grid,
    .plans-grid,
    .plans-features-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .feature-card,
    .adv-card,
    .plan-card,
    .features-column {
        padding: 18px;
        border-radius: 20px;
    }

    .advantages,
    .plans,
    .demo {
        padding: 42px 16px;
    }

    .advantages h2,
    .plans h2,
    .demo h2 {
        font-size: clamp(30px, 8vw, 44px);
        margin-bottom: 22px;
        text-align: center;
    }

    .plans-features {
        margin-top: 24px;
    }

    .demo-form {
        width: 100%;
        max-width: 100%;
        padding: 22px 16px;
        border-radius: 22px;
        gap: 12px;
    }

    .demo-form input,
    .demo-form select,
    .demo-form textarea {
        min-height: 46px;
        padding: 11px 14px;
        font-size: 14px;
        border-radius: 13px;
    }

    .demo-form textarea {
        min-height: 78px;
    }

    .demo-form button,
    .demo button {
        min-height: 46px;
        padding: 12px 16px;
        font-size: 14px;
        border-radius: 14px;
    }
}

@media (max-width: 420px) {
    .autobombo-header-top {
        justify-content: center;
    }

    .autobombo-shell-auth-btn {
        padding: 8px 10px;
        font-size: 12px;
    }

    .hero {
        padding-top: 28px;
    }

    .feature-card h3,
    .adv-card h3,
    .plan-card h3 {
        font-size: 18px;
    }

    .feature-card p,
    .adv-card p,
    .feature-item p,
    .plan-subtitle {
        font-size: 14px;
    }

    .demo-form {
        padding: 18px 14px;
    }
}

@media (max-width: 768px) {
    .demo-wizard-card {
        width: 100%;
        max-width: 100%;
        padding: 22px 16px;
        border-radius: 22px;
    }

    .wizard-steps {
        grid-template-columns: 1fr;
        gap: 8px;
        margin: 18px 0;
    }

    .wizard-steps span {
        padding: 10px 12px;
        font-size: 13px;
        text-align: left;
        border-radius: 12px;
    }

    .wizard-steps span.active {
        border-left: 5px solid #C0392B;
    }
}

.autobombo-shell-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
}

.wizard-step-form textarea,
.wizard-step-form select,
.wizard-step-form input {
    width: 100%;
    min-height: 44px;
    border: 1px solid #eadbd8;
    border-radius: 14px;
    padding: 10px 12px;
    margin-bottom: 10px;
    background: #fff;
    color: #2d2d2d;
    font-size: 0.95rem;
}

.wizard-step-form textarea {
    min-height: 90px;
    resize: vertical;
}

.wizard-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 16px 0;
}

.wizard-steps span,
.wizard-steps a {
    text-decoration: none;
    padding: 8px 10px;
    border-radius: 999px;
    background: #f8edea;
    color: #7b3a32;
    font-size: 0.82rem;
    font-weight: 700;
}

.wizard-steps .active,
.wizard-steps a.active {
    background: #C0392B;
    color: #fff;
}

.wizard-actions {
    display: flex;
    gap: 10px;
    justify-content: space-between;
    align-items: center;
    margin-top: 12px;
}

.wizard-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 10px 14px;
    border: 1px solid #eadbd8;
    border-radius: 14px;
    background: #fff;
    color: #C0392B;
    text-decoration: none;
    font-weight: 700;
    cursor: pointer;
}

.wizard-inline-fields,
.wizard-offer-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.wizard-offer-row {
    grid-template-columns: 100px 180px 2fr 100px;
    align-items: start;
    margin-bottom: 10px;
}

.wizard-summary-list {
    display: grid;
    gap: 8px;
    margin-bottom: 14px;
}

.wizard-summary-item {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 10px 12px;
    border: 1px solid #f0dedb;
    border-radius: 14px;
    background: #fffafa;
}

.wizard-summary-item span {
    color: #75635f;
    font-size: 0.9rem;
}

.wizard-shift-schedules-builder {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 16px 0;
}

.wizard-shift-card {
    background: #fff;
    border: 1px solid #eadfdd;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.05);
}

.wizard-shift-card-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 38px;
    gap: 10px;
    align-items: end;
    margin-bottom: 10px;
}

.wizard-shift-name-field {
    margin: 0;
}

.wizard-shift-name-field::placeholder {
    color: #8a8a8a;
    opacity: 1;
}

.wizard-shift-card .wizard-schedule-builder {
    margin: 0;
    gap: 8px;
}

.wizard-shift-card .wizard-day-row {
    grid-template-columns: 92px 96px minmax(0, 1fr) 38px;
    gap: 8px;
    padding: 10px;
    border-radius: 14px;
    box-shadow: none;
}

.wizard-shift-card .wizard-day-title {
    padding-top: 8px;
    font-size: 0.92rem;
}

.wizard-shift-card .wizard-closed-check {
    padding-top: 6px;
    font-size: 0.9rem;
}

.wizard-shift-card .wizard-closed-check input {
    width: 20px;
    height: 20px;
}

.wizard-shift-card .wizard-time-range {
    grid-template-columns: minmax(82px, 108px) minmax(82px, 108px) 34px;
    gap: 6px;
}

.wizard-shift-card .wizard-time-range input[type="time"] {
    height: 36px;
    font-size: 0.86rem;
}

.wizard-shift-card .wizard-icon-btn {
    width: 34px;
    height: 34px;
    min-width: 34px;
    border-radius: 10px;
}

@media (max-width: 768px) {
    .wizard-shift-card .wizard-day-row {
        grid-template-columns: 1fr;
    }

    .wizard-shift-card .wizard-day-title,
    .wizard-shift-card .wizard-closed-check {
        padding-top: 0;
    }

    .wizard-shift-card .wizard-time-range {
        grid-template-columns: 1fr 1fr 34px;
    }
}

@media (max-width: 640px) {
    .wizard-actions,
    .wizard-inline-fields,
    .wizard-offer-row {
        grid-template-columns: 1fr;
        flex-direction: column;
    }

    .wizard-actions a,
    .wizard-actions button,
    .wizard-secondary-btn {
        width: 100%;
    }
}

.wizard-field-label {
    margin: 4px 0 8px;
    font-size: 0.88rem;
    font-weight: 700;
    color: #4b5563;
}

.wizard-day-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 8px 0 14px;
}

.wizard-day-group .wizard-field-label {
    flex: 0 0 100%;
}

.wizard-day-group label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border: 1px solid rgba(192, 57, 43, 0.18);
    border-radius: 999px;
    background: #fff;
    color: #374151;
    font-size: 0.88rem;
    cursor: pointer;
}

.wizard-day-group input {
    width: auto;
    margin: 0;
}

.wizard-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px;
}

.wizard-field label {
    font-size: 0.86rem;
    font-weight: 800;
    color: #4b5563;
}

.wizard-field input,
.wizard-field select,
.wizard-field textarea {
    margin-bottom: 0;
}

.wizard-step-form .demo-request-message.error {
    margin-top: 4px;
    margin-bottom: 8px;
    color: #b42318;
    font-weight: 700;
}

@media (max-width: 640px) {
    .wizard-field {
        margin-bottom: 12px;
    }
}

.wizard-user-card {
    margin-bottom: 20px;
    border-radius: 20px;
    background: #ffffff;
    border: 1px solid rgba(192, 57, 43, 0.15);
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
    overflow: hidden;
}

.wizard-user-card-header {
    background: linear-gradient(135deg, #C0392B, #E74C3C);
    color: #fff;
    padding: 10px 16px;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.wizard-user-card-body {
    padding: 14px 16px;
}

.wizard-user-field {
    margin-bottom: 8px;
}

.wizard-user-field label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: #6b7280;
    margin-bottom: 2px;
    text-transform: uppercase;
}

.wizard-user-value {
    font-size: 1.05rem;
    font-weight: 700;
    color: #C0392B;
    word-break: break-word;
}

.wizard-user-hint {
    margin-top: 6px;
    font-size: 0.8rem;
    color: #6b7280;
    line-height: 1.4;
}

.wizard-schedule-builder,
.wizard-floor-tree {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 18px 0;
}

.wizard-day-row,
.wizard-floor-card {
    background: #fff;
    border: 1px solid #eadfdd;
    border-radius: 18px;
    padding: 14px;
    box-shadow: 0 8px 20px rgba(31, 41, 55, 0.05);
}

.wizard-day-row {
    display: grid;
    grid-template-columns: 115px 118px minmax(0, 1fr) 42px;
    gap: 10px;
    align-items: start;
}

.wizard-day-title {
    font-weight: 800;
    color: #2f2f2f;
    padding-top: 10px;
    font-size: 0.98rem;
}

.wizard-closed-check {
    display: flex;
    align-items: center;
    gap: 8px;
    padding-top: 8px;
    color: #444;
    white-space: nowrap;
}

.wizard-closed-check input {
    width: 24px;
    height: 24px;
}

.wizard-day-ranges,
.wizard-floor-tables {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 0;
}

.wizard-time-range {
    display: grid;
    grid-template-columns: minmax(92px, 118px) minmax(92px, 118px) 38px;
    gap: 8px;
    align-items: center;
}

.wizard-time-range input[type="time"] {
    width: 100%;
    min-width: 0;
    height: 40px;
    padding: 6px 8px;
    font-size: 0.9rem;
}

.wizard-icon-btn {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border: none;
    border-radius: 12px;
    background: #f4d2cf;
    color: #C0392B;
    cursor: pointer;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.wizard-icon-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.wizard-day-row.has-error {
    border-color: #C0392B;
}

.wizard-step-hint-box {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 14px 16px;
    margin: 12px 0 18px;
    border-radius: 16px;
    background: #fdf4f2;
    color: #4b332f;
}

.wizard-step-hint-box span,
.wizard-floor-title-row span,
.wizard-table-section-title span {
    color: #7a6f6c;
    font-size: 0.88rem;
}

.wizard-floor-card {
    padding: 18px;
}

.wizard-floor-title-row {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.wizard-floor-title-row > div,
.wizard-table-section-title {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.wizard-floor-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

.wizard-floor-header label,
.wizard-table-row label {
    display: flex;
    flex-direction: column;
    gap: 5px;
    min-width: 0;
}

.wizard-floor-header span,
.wizard-table-row span {
    color: #5b5553;
    font-size: 0.82rem;
    font-weight: 700;
}

.wizard-table-section-title {
    margin: 8px 0 10px;
    padding-left: 14px;
    border-left: 4px solid #f0d7d2;
}

.wizard-table-row {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(120px, 1fr) 72px 72px 38px;
    gap: 8px;
    align-items: end;
    padding: 12px 0 12px 14px;
    border-left: 4px solid #f0d7d2;
}

.wizard-table-row input,
.wizard-floor-header input {
    width: 100%;
    min-width: 0;
}

.wizard-add-table-btn {
    margin-top: 12px;
}

.wizardLatitude::placeholder,
.wizardLongitude::placeholder {
    color: #8a8a8a;
    opacity: 1;
}

@media (max-width: 900px) {
    .wizard-day-row {
        grid-template-columns: 1fr;
    }

    .wizard-time-range,
    .wizard-floor-header,
    .wizard-table-row {
        grid-template-columns: 1fr;
    }

    .wizard-table-row {
        padding-left: 0;
        border-left: none;
    }
}

.wizard-map-section {
    margin: 16px 0;
}

@media (max-width: 780px) {
    .wizard-day-row,
    .wizard-floor-header,
    .wizard-table-row,
    .wizard-time-range {
        grid-template-columns: 1fr;
    }

    .wizard-table-row {
        padding-left: 0;
        border-left: none;
    }
}

.wizard-section-title {
    margin: 22px 0 6px;
    font-size: 20px;
    font-weight: 800;
    color: #2f2f2f;
}

.wizard-section-hint {
    margin: 0 0 16px;
    color: #777;
    font-size: 14px;
}

.wizard-floor-card {
    border: 1px solid #ead8d5;
    border-radius: 22px;
    padding: 22px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(0,0,0,.06);
    }

