/*
Theme Name: Shoptimizer Child Theme
Theme URI: 
Description: Child theme of Shoptimizer
Author: CommerceGurus
Author URI: 
Template: shoptimizer
Version: 1.2.2
License:         	GNU General Public License v2 or later
License URI:     	http://www.gnu.org/licenses/gpl-2.0.html
*/
.show-more-btn {
    background: none;
    border: none;
    color: #0073aa;
    cursor: pointer;
    font-size: 16px;
    margin: 8px 0;
    padding: 0;
}

.show-more-btn:hover {
    text-decoration: underline;
}



/* default hidden */
.bv-switcher-mobile-only,
.bv-switcher-desktop-only {
    display: none;
}

/* DESKTOP VIEW — Shoptimizer switches to desktop above 991px */
@media (min-width: 991px) {
    .bv-switcher-desktop-only {
        display: flex !important;
        align-items: center;
        margin-right: 15px;
    }
}

/* MOBILE VIEW — Shoptimizer mobile header below 990px */
@media (max-width: 990px) {
    .bv-switcher-mobile-only {
        display: flex !important;
        align-items: center;
        margin-left: 10px;
    }
}

/* Design rules */
.bv-lang-switcher {
    display: flex;
    gap: 10px;
    align-items: center;
}

.bv-lang {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #FFFFFF;
    padding: 6px 10px;
    border-radius: 5px;
    transition: 0.2s ease;
}

.bv-lang:hover {
    background: #0000000D;
}

.bv-flag {
    width: 26px;
    border-radius: 2px;
}

.bv-text {
    color: #143852;
    font-weight: 600;
    text-transform: uppercase;
}

/* Hover */
.bv-lang:hover .bv-text {
    color: #1D2327;
}

/* MOBILE styling (Shoptimizer mobile breakpoint 990px) */
@media (max-width: 990px) {
    .bv-text {
        display: none;
    }
    .bv-lang {
        padding: 6px;
    }
}