
@media (max-width: 768px) {
    .item-carrinho {
        display: flex;
        flex-direction: column;
        background-color: #111;
        border-radius: 10px;
        margin: 1rem auto;
        width: 100%;
        max-width: 500px;
        text-align: left;
        box-shadow: 0 0 4px rgba(255, 255, 255, 0.1);
    }

    .item-carrinho img {
        width: 100px;
        height: auto;
        object-fit: cover;
        border-radius: 6px;
        margin: 0 auto 1rem auto;
        margin-top: 4vh;
    }

    .detalhes-produto {
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
        color: #fff;
        font-size: 0.9rem;
        text-align: center;
    }

    .detalhes-produto h3 {
        font-size: 1rem;
        font-weight: bold;
        margin-bottom: 0.3rem;
    }

    .detalhes-produto .total-preco {
        font-weight: bold;
        font-size: 1rem;
        color: #00e0ff;
        margin: 0.6rem 0 0.3rem;
    }

    .detalhes-produto a {
        display: inline-block;
        padding: 0.4rem 1.2rem;
        margin-top: 0.2rem;
        background: linear-gradient(to right, #2b00ff, #c800ff);
        color: #fff;
        font-size: 0.85rem;
        border-radius: 5px;
        text-decoration: none;
        align-self: center;
    }

    .subtotal {
        text-align: center;
        margin: 2rem auto 1rem;
        font-size: 1rem;
        color: #fff;
        font-weight: 500;
    }

    .btn-finalizar {
        display: block;
        margin: 0 auto;
        padding: 0.9rem 1rem;
        width: 90%;
        background-color: #ffc107;
        color: #ffffff;
        border: none;
        border-radius: 8px;
        font-size: 1rem;
        font-weight: bold;
        text-align: center;
    }

    .info-checkout {
        text-align: center;
        font-size: 0.75rem;
        color: #aaa;
        margin-top: 0.6rem;
    }
}

@media (max-width: 768px) {
    .item-carrinho .remover {
        padding: 4px 16px;
        width: 172px;
        height: 100%;
        letter-spacing: 0.6px;
        border-radius: 48px;
        background: linear-gradient(90deg, #4f00ff, #b400ff);
        color: white;
        border: none;
        margin-top: 12px;
        font-weight: 600;
        display: block;
        text-align: center;
        text-decoration: none;
        margin-left: auto;
        margin-right: auto;
    }
}
