/* Overlay de carregamento global */
.loja-loading {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.loja-loading[hidden] {
    display: none !important;
}

.loja-loading-backdrop {
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 16px;
    padding: 28px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    text-align: center;
    max-width: 280px;
    width: 100%;
}

.loja-loading-spinner {
    width: 44px;
    height: 44px;
    margin: 0 auto 14px;
    border: 3px solid #eee;
    border-top-color: var(--orange, #f57c00);
    border-radius: 50%;
    animation: loja-spin 0.75s linear infinite;
}

.loja-loading-text {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 600;
    color: #333;
}

@keyframes loja-spin {
    to { transform: rotate(360deg); }
}

.btn-account-cancel {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    margin-top: 8px;
    padding: 11px 14px;
    border: 2px solid #bdbdbd;
    border-radius: 8px;
    background: #fff;
    color: #616161;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.15s ease, border-color 0.15s ease;
    box-sizing: border-box;
}

.btn-account-cancel:hover {
    background: #f5f5f5;
    border-color: #9e9e9e;
    color: #424242;
}

.account-order-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.checkout-success-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 8px;
}

.checkout-success-actions .btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
}

.btn-secondary {
    display: inline-block;
    padding: 12px 18px;
    border: 2px solid #ddd;
    border-radius: 8px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
}

.btn-secondary:hover {
    background: #f5f5f5;
    border-color: #ccc;
}

.checkout-success-redirect-hint {
    font-size: 0.82rem;
    color: #666;
    margin: 12px 0 0;
}

.checkout-success-redirect-hint .loja-loading-spinner {
    width: 28px;
    height: 28px;
    margin: 10px auto 0;
}

.account-alert-success {
    background: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    padding: 12px 14px;
    border-radius: 8px;
    margin-bottom: 16px;
    font-size: 0.88rem;
}
