/* ==============================================
   CENTRALIZAÇÃO E ESTILO DOS BOTÕES
   ============================================== */

.address-actions {
    display: flex;
    justify-content: space-around;
    align-items: center;
    gap: 15px;
    margin-top: 35px;
    padding-top: 25px;
    border-top: 1px solid var(--bg-base-grey-dark);
    flex-wrap: wrap;
}

/* BOTÃO PADRÃO VIT+ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 48px;
    padding: 8px 12px;
    border-radius: 8px;
    font-family: "Oswald", sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    transition: 0.3s ease;
    cursor: pointer;
    border: none;
    min-width: 220px;
}

/* AJUSTES DE CARD E EMPTY STATE */
.address-card {
    grid-column: 1 / 2;
}

.empty-pedidos-box {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    background: var(--bg-base-light);
    border: 1px dashed var(--bg-base-grey-dark);
    border-radius: 16px;

    i {
        font-size: 3.5rem;
        color: var(--text-grey);
        margin-bottom: 20px;
        display: block;
    }

    p {
        font-size: 1.2rem;
        color: var(--text-dark);
        margin-bottom: 10px;
    }
}

/* RESPONSIVIDADE MOBILE */
@media (max-width: 640px) {
    .address-actions {
        flex-direction: column;
        width: 100%;

        .vit-btn {
            width: 100%;
        }
    }
}