/* /assets/css/cart.css */

/* Estilos para la página del carrito */
.cart-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    margin-top: 2rem;
}

.cart-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1a202c;
    text-align: center;
    margin-bottom: 2rem;
}

.cart-empty-message {
    background-color: #e2e8f0;
    color: #4a5568;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-details {
    display: flex;
    align-items: center;
}

.cart-item-image {
    width: 80px;
    height: 120px;
    object-fit: cover;
    border-radius: 5px;
    margin-right: 1.5rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.cart-item-info h2 {
    font-size: 1.25rem;
    font-weight: bold;
    color: #2d3748;
}

.cart-item-info p {
    font-size: 1rem;
    color: #718096;
    margin-top: 0.25rem;
}

.cart-item-info .price {
    font-size: 1.125rem;
    font-weight: bold;
    color: #000;
    margin-top: 0.5rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item-quantity {
    font-size: 1rem;
    color: #4a5568;
}

.cart-remove-button {
    color: #e53e3e;
    transition: color 0.2s ease-in-out;
}

.cart-remove-button:hover {
    color: #c53030;
}

.cart-summary {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 2px solid #e2e8f0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.cart-total {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1a202c;
    margin-right: 1.5rem;
}

.checkout-button {
    background-color: #3182ce;
    color: #fff;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.2s ease-in-out;
}

.checkout-button:hover {
    background-color: #2c5282;
}

/* Media Queries para responsividad */
@media (max-width: 768px) {
    .cart-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        text-align: center;
    }

    .cart-item-image {
        margin: 0 auto 1rem;
    }

    .cart-item-details {
        flex-direction: column;
        text-align: center;
    }

    .cart-item-info h2, .cart-item-info p, .cart-item-info .price {
        text-align: center;
    }

    .cart-item-actions {
        width: 100%;
        justify-content: center;
    }

    .cart-summary {
        flex-direction: column;
    }

    .cart-total {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}
