/* SWATCHES */
.color-swatches-wrapper { margin-bottom:16px; }
.color-swatches { display:flex; gap:12px; flex-wrap:wrap; align-items:center; }
.swatch-color { width:48px; height:48px; border-radius:8px; border:2px solid #ccc; cursor:pointer; transition:.15s; box-shadow:0 1px 3px rgba(0,0,0,.15);}
.swatch-color:hover{transform:scale(1.1);}
.swatch-color.selected{border:3px solid #0071f3; transform:scale(1.15);}

/* TABLE */
.tabla-tallas-wrapper{margin-top:25px; max-width:720px; width:100%;}
.tabla-tallas-header, .tabla-talla-row{display:grid; grid-template-columns:100px 160px 1fr; align-items:center; gap:12px;}
.tabla-tallas-header{font-weight:700; color:#666; margin-bottom:12px;}
.tabla-tallas-list{display:flex; flex-direction:column; gap:12px;}
.talla-pill{background:#f2f2f2; padding:0 14px; height:42px; border-radius:10px; border:1px solid #ddd; display:flex; align-items:center; justify-content:center; font-weight:700;}
.talla-pill.pill-selected{background:#e6f0ff; border-color:#99c2ff;}
.col-color{display:flex; align-items:center; gap:12px;}
.color-swatch-mini{width:32px; height:32px; border-radius:8px; border:1px solid rgba(0,0,0,0.15);}
.talla-controles{display:grid; grid-template-columns:45px 60px 45px; gap:8px; align-items:center;}
.btn-talla{background:#dff0ff; border:none; border-radius:10px; height:42px; font-size:22px; font-weight:700; cursor:pointer;}
.talla-cantidad{height:42px; border-radius:10px; border:1px solid #ddd; font-size:18px; text-align:center; font-weight:700; box-sizing:border-box;}

/* reset */
.reset-wrap{display:flex; justify-content:flex-end; margin-top:12px; margin-bottom:18px;}
.btn-resetear{background:#f8f8f8; border:1px solid #ddd; border-radius:10px; padding:10px 18px; display:none;}

/* hide originals */
select[name="attribute_pa_color"], select[name="attribute_pa_talla"]{display:none!important;}

/* btn styling */
.single_add_to_cart_button{margin-top:18px!important; opacity:1!important; pointer-events:auto!important;}

/* responsive */
@media (max-width:640px){
    .tabla-tallas-header, .tabla-talla-row{grid-template-columns:1fr 1fr 1fr; gap:8px;}
    .talla-controles{grid-template-columns:40px 60px 40px;}
    .color-swatch-mini{width:28px; height:28px;}
    .swatch-color{width:40px; height:40px;}
}

/* ======== VACIAR CARRITO AJUSTES ======= */
/* OCULTAR BOTONES ORIGINALES */
.woocommerce-cart table.cart td.actions,
.blocksy-cart-actions-wrapper {
    display: none !important;
}

/* FILA PERSONALIZADA */
.custom-cart-actions {
    padding: 40px 0 0 0;
}

.cart-actions-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 20px;
}

/* BOTONES: izquierda */
.cart-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}
.cart-buttons button {
    padding: 10px 20px;
}

/* CUPÓN: derecha */
.coupon {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: flex-end;
}
.coupon input {
    min-width: 180px;
    padding: 8px;
}
.coupon button {
    padding: 10px 20px;
    white-space: nowrap;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .cart-actions-wrapper {
        flex-direction: column;
        align-items: stretch;
    }
    .cart-buttons,
    .coupon {
        width: 100%;
        flex-direction: column;
    }
    .cart-buttons button,
    .coupon input,
    .coupon button {
        width: 100%;
    }
    .coupon {
        margin-top: 15px;
        justify-content: flex-start;
    }
}
