/**
 * Variation Selector - Estilos Mejorados
 * Asegura que el selector dropdown tenga estilos consistentes y se vea bien
 * 
 * @package FlyntChild
 * @version 1.1.0
 */

/* ========================================================================
   SELECTOR DE VARIACIONES - Estilos consistentes con la página
   ======================================================================== */

.productCard-variationDropdown {
    margin-bottom: 0.625rem !important;
    width: 100% !important;
}

/* Label oculto por defecto - solo visible si existe en el template */
.productCard-variationLabel {
    display: none !important;
}

.productCard-variationSelect {
    width: 100% !important;
    padding: 12px 14px !important;
    padding-right: 40px !important;
    border: 2px solid #4b5563 !important;
    background: white !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234b5563'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 10px center !important;
    background-size: 20px !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #1f2937 !important;
    cursor: pointer !important;
    border-radius: 3px !important;
    transition: all 0.2s ease !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
    line-height: 1.5 !important;
}

.productCard-variationSelect:hover {
    border-color: #374151 !important;
    background-color: #f9fafb !important;
}

.productCard-variationSelect:focus {
    outline: none !important;
    border-color: #1f2937 !important;
    background-color: #fff !important;
    box-shadow: 0 0 0 3px rgba(31, 41, 55, 0.1) !important;
}

.productCard-variationSelect option {
    padding: 8px !important;
    font-weight: 600 !important;
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */

@media (max-width: 768px) {
    .productCard-variationSelect {
        padding: 10px 12px !important;
        padding-right: 36px !important;
        font-size: 12px !important;
    }
    
    .productCard-variationLabel {
        font-size: 10px !important;
        margin-bottom: 5px !important;
    }
}

