/**
 * Copyright since 2009 Webimpacto Consulting SL
 *
 * NOTICE OF LICENSE
 *
 * @author    Webimpacto Consulting SL <info@webimpacto.es>
 * @copyright Since 2009 Webimpacto Consulting SL
 * @license   Property of Webimpacto Consulting SL. Non redistributable.
 */

/* Container de botones */
#wim-buttons-top-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Lista de botones */
.wim-shop-buttons {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Item individual de botón */
.wim-shop-button-item {
    padding: 0 !important;
    list-style: none;
}

/* Link del botón */
.wim-shop-link {
    display: inline-block;
    text-decoration: none;
    padding: 0;
}

/* Texto del botón - estilo base (azul cuando no está activo) */
.wim-shop-button-text {
    background-color: #0282C8;
    color: #fff;
    height: 40px;
    border-radius: 20px;
    border: 1px solid #0282C8;
    padding: 11px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    white-space: nowrap;
    text-align: center;
    box-sizing: border-box;
    font-size: 12px !important;
}

/* Estilo cuando el botón está activo (blanco con letra azul) */
.wim-shop-button-text.active {
    background-color: #ffffff;
    color: #0282C8;
    border: 1px solid #0282C8;
    font-size: 12px;
}

/* Ajustes para menú horizontal */
#main-page-content .cbp-hrmenu > ul > li {
    padding: 0 !important;
}

#main-page-content .cbp-hrmenu .nav-link {
    padding: .5rem 0.8rem;
}

