/* Estilos para el Carrito de Cotizaciones */
body {
    background: #FFF7E7 !important;
    
}

.rblweb-carrito-cotizaciones {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    background: #FFF7E7;
    border-radius: 10px;
}

.carrito-titulo {
    color: #4F8821;
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 50px;
    text-align: left;
    padding: 30px;
    
}

/* Carrito vacío */
.carrito-vacio {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.carrito-vacio p {
    font-size: 18px;
    color: #666;
    margin-bottom: 30px;
}

/* Tabla del carrito */
.carrito-tabla {
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-collapse: collapse;
}

.carrito-tabla thead {
    background: #f8f8f8;
}

.carrito-tabla th {
    padding: 20px 30px;
    text-align: left;
    font-weight: 600;
    color: #333;
    border-bottom: 1px solid #9BC47B;
    border-left: none;
    border-right: none;
}

.producto-header {
    width: 85%;
}

.acciones-header {
    width: 15%;
    text-align: center;
}

.carrito-tabla td {
    padding: 20px 30px;
    border-bottom: 1px solid #9BC47B;
    border-left: none;
    border-right: none;
    vertical-align: middle;
}

/* Información del producto */
.producto-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.producto-imagen {
    width: 220px;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.producto-imagen img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.producto-nombre {
    font-weight: 500;
    color: #333;
    font-size: 22px;
}

/* Controles de cantidad - REMOVIDOS */

/* Botón eliminar */
.producto-acciones {
    text-align: center;
}

.eliminar-item {
    border: 1px solid #4F8821;
    background: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.eliminar-item:hover {
    background: #4F8821;
    transform: scale(1.1);
}

.eliminar-icono {
    color: #4F8821;
    font-size: 16px;
    font-weight: bold;
    transition: color 0.3s ease;
}

.eliminar-item:hover .eliminar-icono {
    color: white;
}

/* Acciones del carrito */
.carrito-acciones {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding: 0 10px;
}

.btn-volver-productos {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 25px;
    background: transparent;
    border: 2px solid #4F8821;
    color: #4F8821;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
    text-decoration: none !important;
}

.btn-volver-productos:hover {
    background: #4F8821;
    color: white;
    text-decoration: none !important;
}

.btn-cotizar {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 40px;
    background: #B8860B;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none !important;
}

.btn-cotizar:hover {
    background: #9A7209;
    color: white;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(184, 134, 11, 0.3);
}

/* Estados de loading */
.carrito-contenido.loading {
    opacity: 0.6;
    pointer-events: none;
}

.carrito-item.eliminando {
    opacity: 0.5;
    background: #ffe6e6;
}

/* Responsive */
@media (max-width: 768px) {
    .rblweb-carrito-cotizaciones {
        padding: 15px;
    }
    
    .carrito-titulo {
        font-size: 24px;
        margin-bottom: 20px;
    }
    
    .carrito-tabla {
        font-size: 14px;
    }
    
    .carrito-tabla th,
    .carrito-tabla td {
        padding: 15px 10px;
    }
    
    .producto-info {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .producto-imagen {
        width: 50px;
        height: 50px;
    }
    
    .carrito-acciones {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-volver-productos,
    .btn-cotizar {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .carrito-tabla {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .producto-info {
        flex-direction: row;
        text-align: left;
    }
}
