/* Estilos generales */
.saw-armado-option {
    transition: all 0.3s ease;
}

.saw-armado-option:hover {
    background: #f0f0f0 !important;
}

.saw-armado-option input[type="checkbox"] {
    accent-color: #27ae60;
}

/* Notificaciones */
.saw-notice {
    padding: 12px 15px;
    border-radius: 4px;
    margin: 10px 0;
}

.saw-notice-error {
    background: #fdf2f2;
    border-left: 4px solid #e74c3c;
    color: #c0392b;
}

.saw-notice-info {
    background: #ebf5fb;
    border-left: 4px solid #3498db;
    color: #2980b9;
}

/* Botones */
.saw-toggle-armado,
.saw-add-armado-checkout {
    transition: all 0.3s ease;
    border: none !important;
    padding: 10px 20px !important;
    font-weight: 600;
}

.saw-toggle-armado:hover,
.saw-add-armado-checkout:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

/* Checkout */
.saw-checkout-section {
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .saw-cart-section,
    .saw-checkout-section {
        padding: 15px !important;
    }
}

/* ... (mantener CSS anterior) ... */

/* Nuevos estilos para cantidades */

.saw-detalle-armado {
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}

.saw-detalle-armado th {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.saw-detalle-armado td {
    border-bottom: 1px solid #f0f0f0;
}

.saw-detalle-armado tr:last-child td {
    border-bottom: none;
}

.saw-price-info {
    animation: fadeIn 0.5s ease;
}

.saw-mini-detalle {
    border: 1px solid #e0e0e0;
}

.saw-mini-detalle td {
    padding: 3px 0;
    border-bottom: 1px dotted #eee;
}

.saw-mini-detalle tr:last-child td {
    border-bottom: none;
}

/* Animaciones */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Responsive mejorado */
@media (max-width: 768px) {
    .saw-detalle-armado table {
        font-size: 0.8em;
    }
    
    .saw-detalle-armado th,
    .saw-detalle-armado td {
        padding: 3px !important;
    }
}