/* ============================= DETALHES DO CARRINHO ============================= */
.link-verde {
    color: #1d5039;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
}

.cart-page-container {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: linear-gradient(to bottom, #cef4d8, #276347);
    padding: 20px;
}

.cart-card {
    background-color: #f7f1f1;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 450px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: bold;
    color: var(--cor-primaria);
}

.logo-section .aroma-logo,
.aroma {
    width: 60px;
    height: 60px;
}

.cart-card h1 {
    font-size: 32px;
    color: var(--texto-escuro);
    margin-bottom: 30px;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #cef4d8;
    margin-bottom: 20px;
    font-weight: bold;
    color: var(--texto-escuro);
}

.product-column {
    flex-grow: 1;
}

.price-column {
    text-align: right;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--bege);
}

.product-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    background-color: var(--bege);
}

.item-price {
    font-weight: bold;
    color: var(--cor-primaria);
}

.cart-total {
    text-align: right;
    font-size: 20px;
    font-weight: bold;
    color: var(--texto-escuro);
    margin: 30px 0;
}

.checkout-button {
    width: 100%;
    background-color: var(--cor-primaria);
    color: var(--branco);
    border: none;
    padding: 15px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-button:hover {
    background-color: #456f50;
}

@media (max-width: 480px) {
    .cart-card {
        padding: 20px;
    }

    .cart-card h1 {
        font-size: 28px;
    }

    .cart-header,
    .cart-item {
        font-size: 14px;
    }

    .product-thumbnail {
        width: 50px;
        height: 50px;
    }

    .cart-total {
        font-size: 18px;
    }

    .checkout-button {
        font-size: 16px;
        padding: 12px;
    }
}