/******* Do not edit this file *******
Woody Code Snippets CSS and JS
Saved: May 08 2026 | 16:58:32 */
/* =======================================================
   BANANAPOP - DISEÑO DE VARIANTES CUSTOM (Sin Plugin)
======================================================= */

/* Ocultamos el menú desplegable feo por defecto de WooCommerce */
table.variations td.value select { 
    display: none !important; 
}

/* Ocultamos la etiqueta "Tamaño" y el botón de texto "Limpiar" */
table.variations th.label,
.reset_variations { 
    display: none !important; 
}

/* Contenedor de nuestras nuevas cápsulas */
.bananapop-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 15px;
    width: 100%;
}

/* Nuestras Cápsulas (Geometría blindada) */
.bp-swatch {
    background-color: #A1D73C;
    color: #ffffff;
    font-family: 'Fredoka', sans-serif;
    font-weight: 600;
    font-size: 13px;
    padding: 0 18px;
    height: 38px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(161, 215, 60, 0.2);
    transition: all 0.3s ease;
    user-select: none; /* Evita que el texto se seleccione por error en móviles al hacer tap rápido */
}

/* Animación Hover al pasar el ratón */
.bp-swatch:hover {
    background-color: #8CCF2F;
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(161, 215, 60, 0.3);
}

/* Estado Seleccionado */
.bp-swatch.selected {
    background-color: #5C9C11;
    transform: translateY(0);
    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.4), inset 0 2px 5px rgba(0,0,0,0.2);
}

/* Estado Sin Stock (Gris y bloqueada por si acaso) */
.bp-swatch.disabled {
    background-color: #e0e0e0;
    color: #999;
    box-shadow: none;
    cursor: not-allowed;
    transform: none;
}