.radio-container {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.radio-container input {
    margin-right: 8px;
}

.radio-container label {
    display: flex;
    align-items: center;
    white-space: nowrap; /* Evita saltos de línea */
}

.radio-container label span {
    margin-right: 4px; /* Espacio entre los spans */
}

.original-price {
    text-decoration: line-through; /* Línea tachada */
    color: red; /* Color rojo */
    margin-left: 8px; /* Espacio entre el precio en oferta y el original */
}

.cart-single-list {
    padding: 15px;
    border-bottom: 1px solid #ddd;
}

.cart-single-list .input-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cart-single-list img {
    max-width: 60px;
    height: auto;
}

.product-name a {
    font-weight: bold;
    text-decoration: none;
    color: #333;
}

.total-amount {
    background: #f8f9fa;
    padding: 15px;
    border-radius: 5px;
}

.total-amount .right {
    text-align: right;
}

.total-amount ul {
    list-style: none;
    padding: 0;
}

.total-amount ul li {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    font-size: 18px;
}

.button {
    margin-top: 10px;
}

.button .btn {
    width: 100%;
    text-align: center;
}

@media (max-width: 768px) {
    .cart-list-title .row,
    .cart-single-list .input-group {
        flex-wrap: wrap;
        text-align: center;
    }

    .cart-single-list .input-group > div {
        width: 100%;
        margin-bottom: 10px;
    }

    .total-amount .right {
        text-align: center;
    }

    .button .btn {
        width: 100%;
        margin-bottom: 5px;
    }
}

