.mobile-menu {
    display: none !important;
}

.mobile-menu.open {
    display: flex !important;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    background: rgba(15, 23, 42, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, visibility 0.2s ease;
    z-index: 10001;
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-card {
    width: min(100%, 420px);
    background: #fff;
    border-radius: 24px;
    padding: 28px;
    box-shadow: 0 32px 72px rgba(15, 23, 42, 0.24);
    text-align: center;
}

.modal-icon {
    width: 58px;
    height: 58px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(239, 68, 68, 0.1);
    color: #dc2626;
    margin-bottom: 14px;
}

.modal-card h2 {
    color: #1a1a2e;
    margin: 0 0 10px;
    font-size: 1.6rem;
}

.modal-card p {
    color: #6b7280;
    line-height: 1.6;
    margin: 0 0 20px;
}

.modal-button {
    width: 100%;
    justify-content: center;
}

.faq-answer[hidden] {
    display: block;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    padding-top: 0;
    padding-bottom: 0;
}

.faq-answer {
    max-height: 220px;
    opacity: 1;
    transition: max-height 0.2s ease, opacity 0.2s ease;
}

.status-floating-bar {
    max-width: calc(100% - 32px);
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
    border-radius: 100px !important;
}

.status-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.status-step-button {
    border: none;
    border-radius: 999px;
    padding: 10px 16px;
    font: inherit;
    font-size: 0.82rem;
    font-weight: 700;
    transition: all 0.2s ease;
}

.status-step-button.is-active {
    color: #fff;
    background: linear-gradient(135deg, #627eea, #0052ff);
    cursor: pointer;
}

.status-step-button.is-active:hover {
    transform: translateY(-1px);
}

.status-step-button.is-waiting {
    color: #6b7280;
    background: #eef1f7;
    cursor: not-allowed;
}

.status-step-button.is-done {
    color: #fff;
    background: linear-gradient(135deg, #22c55e, #16a34a);
}

@media (max-width: 768px) {
    .status-floating-bar {
        justify-content: center;
        align-items: center;
        border-radius: 0 !important;
    }

    .status-address,
    .status-text,
    .status-divider {
        text-align: center;
    }

    .status-actions {
        width: 100%;
        justify-content: center;
    }

    .status-step-button {
        flex: 1 1 140px;
        justify-content: center;
        display: inline-flex;
    }
}
