.top-points {
    top: 150px;
    z-index: 1050;
}

.top-cart {
    top: 100px;
    z-index: 1050;
}

/* Ajuste para dispositivos móveis */
@media (max-width: 768px) {
    .top-cart {
        top: 70px;
    }
    .top-points {
        top: 120px;
    }
}

/* Estilos para os botões do SweetAlert2 */
.swal2-confirm-button {
    background-color: var(--bs-success) !important;
    color: white !important;
    border: none !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.25rem !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    margin-left: 20px !important;
}

.swal2-cancel-button {
    background-color: var(--bs-danger) !important;
    color: white !important;
    border: none !important;
    padding: 0.5rem 1rem !important;
    border-radius: 0.25rem !important;
    font-size: 1rem !important;
    cursor: pointer !important;
    margin-left: 20px !important;
}

/* Novos estilos para o checkout */
.checkout-container {
    max-width: 800px;
    margin: 0 auto;
}

.cart-summary {
    background: #f8f9fa;
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.cart-summary h4 {
    color: #333;
    margin-bottom: 1rem;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 0.5rem;
}

.cart-items-list {
    margin-bottom: 1rem;
}

.cart-item-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 2px solid #dee2e6;
}

.shipping-form {
    padding: 1rem;
}

.shipping-form h4 {
    color: #333;
    margin-bottom: 1rem;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.form-control {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #dee2e6;
    border-radius: 4px;
    font-size: 0.9rem;
}

.form-control:focus {
    border-color: #80bdff;
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0,123,255,.25);
}

/* Responsividade */
@media (max-width: 768px) {
    .form-grid {
        grid-template-columns: 1fr;
    }
}

/* Ajustes do SweetAlert2 */
.swal2-popup {
    padding: 1.5rem;
}

.swal2-title {
    font-size: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.action-buttons {
    width: 100%;
    padding: 15px;
    position: sticky;
    bottom: 0;
    background: #fff;
}

.action-buttons .checkout-button {
    padding: 21px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 12px !important;
    border-radius: 0px;
}