﻿/* ============================================================================
   BAFLEH GO-LIVE UI B12 - 2026-09-04
   Go-live public-site visual refinement from current bafleh.com reference and supplied captures.
   Loaded after B3/B4/B7/B8 so these rules intentionally win.
   ============================================================================ */

/* HOME: match the legacy editorial overlay while preserving each CMS image position. */
@media (min-width: 981px) {
    body.bafleh-page-home .bafleh-wp-home-section {
        align-items: center !important;
        justify-content: flex-start !important;
        background-position: var(--wp-home-position, center center) !important;
    }
    body.bafleh-page-home .bafleh-wp-home-content {
        width: min(var(--wp-home-panel-width, 650px), calc(100% - 40px)) !important;
        max-width: var(--wp-home-panel-width, 650px) !important;
        margin: 0 auto 0 clamp(28px, 4.6vw, 78px) !important;
        padding: 4.4rem 2.15rem 4.6rem !important;
        background: rgba(0,0,0,var(--wp-home-overlay,.40)) !important;
    }
    body.bafleh-page-home .bafleh-wp-home-label { margin-bottom: 18px !important; }
    body.bafleh-page-home .bafleh-wp-home-title {
        margin-bottom: 18px !important;
        font-size: 50px !important;
        line-height: 1.30 !important;
        font-weight: 400 !important;
    }
    body.bafleh-page-home .bafleh-wp-home-description {
        font-size: 16px !important;
        line-height: 1.58 !important;
        font-weight: 400 !important;
    }
}

/* SHOP: flatter, quieter archive presentation matching the WordPress reference. */
.bafleh-wp-shop { padding-top: 4px !important; }
.bafleh-wp-shop .catalog-layout { grid-template-columns: 238px minmax(0,1fr) !important; gap: 30px !important; }
.bafleh-wp-shop .catalog-sidebar .live-filter-form {
    padding-right: 22px !important;
    border-right: 0 !important;
}
.bafleh-wp-shop .live-filter-heading { display: none !important; }
.bafleh-wp-shop .filter-block {
    margin: 0 0 17px !important;
    padding: 0 !important;
    border-bottom: 0 !important;
}
.bafleh-wp-shop .filter-title-row { margin-bottom: 8px !important; }
.bafleh-wp-shop .filter-title-row > a { display: none !important; }
.bafleh-wp-shop .filter-title-row h3,
.bafleh-wp-shop .filter-block > h3 {
    font-size: 13px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
}

/* Small circular filter selectors as seen on the live reference. */
.bafleh-wp-shop .live-filter-option {
    gap: 9px !important;
    min-height: 0 !important;
    padding: 4px 0 !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
}
.bafleh-wp-shop .live-filter-option input[type="checkbox"],
.bafleh-wp-shop .live-filter-option input[type="radio"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    display: inline-grid !important;
    place-content: center !important;
    width: 11px !important;
    height: 11px !important;
    min-width: 11px !important;
    margin: 2px 0 0 !important;
    border: 1px solid #9b9b9b !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: none !important;
}
.bafleh-wp-shop .live-filter-option input[type="checkbox"]::before,
.bafleh-wp-shop .live-filter-option input[type="radio"]::before {
    content: "" !important;
    width: 5px !important;
    height: 5px !important;
    border-radius: 50% !important;
    background: #111 !important;
    transform: scale(0) !important;
    transition: transform .12s ease !important;
}
.bafleh-wp-shop .live-filter-option input[type="checkbox"]:checked,
.bafleh-wp-shop .live-filter-option input[type="radio"]:checked { border-color: #111 !important; }
.bafleh-wp-shop .live-filter-option input[type="checkbox"]:checked::before,
.bafleh-wp-shop .live-filter-option input[type="radio"]:checked::before { transform: scale(1) !important; }
.bafleh-wp-shop .live-filter-option:has(input:checked) span { font-weight: 400 !important; }
.bafleh-wp-shop .filter-category-link::before { border-radius: 50% !important; width: 11px !important; height: 11px !important; top: 6px !important; }
.bafleh-wp-shop .filter-category-link.active::after { left: 3px !important; top: 9px !important; width: 5px !important; height: 5px !important; border-radius: 50% !important; }

/* Dual-ended price range visual; request parameters stay min_price/max_price. */
.b10-price-slider { position: relative; height: 24px; margin: 4px 1px 2px; }
.b10-price-slider-track {
    position: absolute; left: 3px; right: 3px; top: 11px; height: 3px;
    border-radius: 3px; background: #d9d9d9;
}
.b10-price-slider-fill { position: absolute; top: 0; bottom: 0; left: 0; right: 0; border-radius: 3px; background: #111; }
.b10-price-range {
    position: absolute; left: 0; top: 4px; width: 100%; height: 17px; margin: 0;
    padding: 0; border: 0; background: transparent; pointer-events: none;
    -webkit-appearance: none; appearance: none;
}
.b10-price-range::-webkit-slider-runnable-track { height: 3px; background: transparent; border: 0; }
.b10-price-range::-moz-range-track { height: 3px; background: transparent; border: 0; }
.b10-price-range::-webkit-slider-thumb {
    -webkit-appearance: none; appearance: none; width: 11px; height: 11px; margin-top: -4px;
    border: 0; border-radius: 50%; background: #111; pointer-events: auto; cursor: pointer;
}
.b10-price-range::-moz-range-thumb { width: 11px; height: 11px; border: 0; border-radius: 50%; background: #111; pointer-events: auto; cursor: pointer; }
.b10-price-range-min { z-index: 3; }
.b10-price-range-max { z-index: 4; }
.bafleh-wp-shop .price-filter-action { margin-top: 2px !important; font-size: 10px !important; color: #555 !important; }
.bafleh-wp-shop .price-filter-action strong { font-weight: 400 !important; color: #333 !important; }
.bafleh-wp-shop .live-filter-price-button {
    min-height: 26px !important; padding: 6px 13px !important; border-radius: 14px !important;
    font-size: 9px !important; letter-spacing: .02em !important;
}
.bafleh-wp-shop .live-clear-all-filters {
    padding: 8px 0 !important; border: 0 !important; background: transparent !important;
    font-size: 10px !important; font-weight: 500 !important;
}

/* Cards: no archive CTA, no lift/shadow, centred title and price. */
.bafleh-wp-shop .live-product-card,
.bafleh-wp-shop .live-product-card:hover {
    transform: none !important; box-shadow: none !important;
}
.bafleh-wp-shop .live-product-info { padding-top: 13px !important; text-align: center !important; align-items: center !important; }
.bafleh-wp-shop .live-product-info h3,
.bafleh-wp-shop .live-product-card h3 {
    min-height: 42px !important;
    margin: 0 auto 5px !important;
    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 400 !important;
    text-align: center !important;
}
.bafleh-wp-shop .live-price-row { justify-content: center !important; align-items: center !important; min-height: 22px !important; margin-top: 0 !important; text-align: center !important; }
.bafleh-wp-shop .live-price-row .price { font-size: 13px !important; font-weight: 600 !important; }
.bafleh-wp-shop .live-card-cart-form,
.bafleh-wp-shop .live-card-cta { display: none !important; }

/* Keep sidebar scroll compact and close to the reference. */
.bafleh-wp-shop .filter-option-list,
.bafleh-wp-shop .filter-category-list { max-height: 170px !important; scrollbar-width: thin !important; }
.bafleh-wp-shop .filter-option-list::-webkit-scrollbar,
.bafleh-wp-shop .filter-category-list::-webkit-scrollbar { width: 5px !important; }
.bafleh-wp-shop .filter-option-list::-webkit-scrollbar-thumb,
.bafleh-wp-shop .filter-category-list::-webkit-scrollbar-thumb { background: #8f8f8f !important; border-radius: 5px !important; }

/* Old public site uses a small circular WhatsApp launcher on desktop as well. */
.bafleh-smart-whatsapp {
    width: 52px !important; height: 52px !important; min-width: 52px !important; padding: 0 !important;
    border-radius: 50% !important; justify-content: center !important;
}
.bafleh-smart-whatsapp .bafleh-smart-whatsapp-text { display: none !important; }

@media (max-width: 980px) {
    .bafleh-wp-shop .catalog-sidebar .live-filter-form { border-right: 0 !important; padding-right: 0 !important; }
    .bafleh-wp-shop .live-filter-option { min-height: 36px !important; font-size: 14px !important; align-items: center !important; }
    .bafleh-wp-shop .live-filter-option input[type="checkbox"],
    .bafleh-wp-shop .live-filter-option input[type="radio"] { width: 16px !important; height: 16px !important; min-width: 16px !important; margin-top: 0 !important; }
    .bafleh-wp-shop .live-filter-option input[type="checkbox"]::before,
    .bafleh-wp-shop .live-filter-option input[type="radio"]::before { width: 8px !important; height: 8px !important; }
    .bafleh-wp-shop .filter-title-row > a { display: inline !important; }
    .bafleh-wp-shop .live-product-info h3,
    .bafleh-wp-shop .live-product-card h3 { font-size: 13px !important; min-height: 0 !important; }
}

/* B12 go-live corrections: current bafleh.com archive uses a quiet 3-column product area
   beside its filter rail. Keep jewellery fully visible instead of cropping tall pieces. */
@media (min-width: 981px) {
    .bafleh-wp-shop .live-product-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
        gap: 30px 22px !important;
    }
}
.bafleh-wp-shop .live-product-image-primary,
.bafleh-wp-shop .live-product-image-secondary {
    object-fit: contain !important;
    object-position: center center !important;
}
.bafleh-wp-shop .live-product-card {
    overflow: hidden !important;
}
.bafleh-wp-shop .catalog-toolbar {
    margin-bottom: 18px !important;
}

/* B12 mobile CMS image position: preserve the image focal point selected in BaflehOnline. */
@media (max-width: 980px) {
    body.bafleh-page-home .bafleh-wp-home-section {
        background-position: var(--wp-home-position, center top) !important;
    }
}

/* ============================================================================
   BAFLEH SHOP FILTER B13 - 2026-09-05
   Stable dual-ended price slider + quieter luxury filter rail.
   These rules intentionally load last in bafleh-go-live-ui-b10.css.
   ============================================================================ */

/* Filter rail spacing/hierarchy. Keep it editorial rather than admin-panel styled. */
@media (min-width: 981px) {
    .bafleh-wp-shop .catalog-layout {
        grid-template-columns: 250px minmax(0, 1fr) !important;
        gap: 42px !important;
    }
    .bafleh-wp-shop .catalog-sidebar .live-filter-form {
        padding-right: 14px !important;
    }
}

.bafleh-wp-shop .catalog-sidebar {
    color: #262626 !important;
}
.bafleh-wp-shop .catalog-filter-scroll {
    padding: 0 1px !important;
}
.bafleh-wp-shop .filter-block {
    margin: 0 0 20px !important;
    padding: 0 0 19px !important;
    border-bottom: 1px solid #ece9e4 !important;
}
.bafleh-wp-shop .filter-block:last-of-type {
    margin-bottom: 10px !important;
}
.bafleh-wp-shop .filter-title-row {
    min-height: 24px !important;
    margin: 0 0 10px !important;
}
.bafleh-wp-shop .filter-title-row h3,
.bafleh-wp-shop .filter-block > h3 {
    margin: 0 !important;
    color: #171717 !important;
    font-family: var(--bafleh-font-ui, "Montserrat", Arial, sans-serif) !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    line-height: 1.35 !important;
    letter-spacing: .015em !important;
}

/* Filter options: larger hit target while the visible control remains fine/light. */
.bafleh-wp-shop .live-filter-option {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
    min-height: 28px !important;
    margin: 0 !important;
    padding: 4px 3px !important;
    border-radius: 4px !important;
    color: #505050 !important;
    font-family: Arial, Helvetica, sans-serif !important;
    font-size: 12px !important;
    line-height: 1.35 !important;
    cursor: pointer !important;
    transition: background-color .15s ease, color .15s ease !important;
}
.bafleh-wp-shop .live-filter-option:hover {
    background: #faf9f7 !important;
    color: #111 !important;
}
.bafleh-wp-shop .live-filter-option input[type="checkbox"],
.bafleh-wp-shop .live-filter-option input[type="radio"] {
    -webkit-appearance: none !important;
    appearance: none !important;
    display: inline-grid !important;
    place-content: center !important;
    flex: 0 0 14px !important;
    width: 14px !important;
    height: 14px !important;
    min-width: 14px !important;
    min-height: 14px !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 1px solid #aaa49b !important;
    border-radius: 50% !important;
    background: #fff !important;
    box-shadow: none !important;
    outline: 0 !important;
}
.bafleh-wp-shop .live-filter-option input[type="checkbox"]::before,
.bafleh-wp-shop .live-filter-option input[type="radio"]::before {
    content: "" !important;
    width: 6px !important;
    height: 6px !important;
    border-radius: 50% !important;
    background: #171717 !important;
    transform: scale(0) !important;
    transition: transform .12s ease !important;
}
.bafleh-wp-shop .live-filter-option input[type="checkbox"]:checked,
.bafleh-wp-shop .live-filter-option input[type="radio"]:checked {
    border-color: #171717 !important;
}
.bafleh-wp-shop .live-filter-option input[type="checkbox"]:checked::before,
.bafleh-wp-shop .live-filter-option input[type="radio"]:checked::before {
    transform: scale(1) !important;
}
.bafleh-wp-shop .live-filter-option input[type="checkbox"]:focus-visible,
.bafleh-wp-shop .live-filter-option input[type="radio"]:focus-visible {
    outline: 2px solid rgba(17, 17, 17, .18) !important;
    outline-offset: 2px !important;
}
.bafleh-wp-shop .live-filter-option:has(input:checked) {
    color: #111 !important;
}

/* Scrollable category/color lists: no heavy native scrollbar. */
.bafleh-wp-shop .filter-option-list,
.bafleh-wp-shop .filter-category-list {
    max-height: 188px !important;
    padding-right: 8px !important;
    overflow-y: auto !important;
    scrollbar-width: thin !important;
    scrollbar-color: #bdb8b0 transparent !important;
}
.bafleh-wp-shop .filter-option-list::-webkit-scrollbar,
.bafleh-wp-shop .filter-category-list::-webkit-scrollbar {
    width: 4px !important;
}
.bafleh-wp-shop .filter-option-list::-webkit-scrollbar-track,
.bafleh-wp-shop .filter-category-list::-webkit-scrollbar-track {
    background: transparent !important;
}
.bafleh-wp-shop .filter-option-list::-webkit-scrollbar-thumb,
.bafleh-wp-shop .filter-category-list::-webkit-scrollbar-thumb {
    min-height: 30px !important;
    border-radius: 6px !important;
    background: #bdb8b0 !important;
}

/* PRICE RANGE
   Fully reset the native input box styles. This prevents Chrome from rendering
   the ranges as white rectangular text-field boxes, as seen in the supplied capture. */
.bafleh-wp-shop .price-filter-block {
    overflow: visible !important;
}
.bafleh-wp-shop .b10-price-slider {
    position: relative !important;
    box-sizing: border-box !important;
    width: 100% !important;
    height: 34px !important;
    margin: 8px 0 8px !important;
    padding: 0 9px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    overflow: visible !important;
}
.bafleh-wp-shop .b10-price-slider-track {
    position: absolute !important;
    z-index: 1 !important;
    left: 9px !important;
    right: 9px !important;
    top: 15px !important;
    height: 4px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: #e4e1dc !important;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .04) !important;
    pointer-events: none !important;
}
.bafleh-wp-shop .b10-price-slider-fill {
    position: absolute !important;
    top: 0 !important;
    bottom: 0 !important;
    min-width: 0 !important;
    border-radius: 999px !important;
    background: #202020 !important;
    box-shadow: none !important;
}
.bafleh-wp-shop input.b10-price-range,
.bafleh-wp-shop .live-filter-form input.b10-price-range {
    -webkit-appearance: none !important;
    appearance: none !important;
    position: absolute !important;
    z-index: 3 !important;
    left: 0 !important;
    top: 0 !important;
    display: block !important;
    box-sizing: border-box !important;
    width: 100% !important;
    min-width: 0 !important;
    height: 34px !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    color: transparent !important;
    opacity: 1 !important;
    pointer-events: none !important;
    touch-action: none !important;
}
.bafleh-wp-shop input.b10-price-range:focus,
.bafleh-wp-shop input.b10-price-range:active {
    border: 0 !important;
    outline: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
}
.bafleh-wp-shop .b10-price-range-min { z-index: 3 !important; }
.bafleh-wp-shop .b10-price-range-max { z-index: 4 !important; }
.bafleh-wp-shop .b10-price-range.is-active-thumb { z-index: 6 !important; }

.bafleh-wp-shop .b10-price-range::-webkit-slider-runnable-track {
    -webkit-appearance: none !important;
    width: 100% !important;
    height: 4px !important;
    margin: 0 !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    box-shadow: none !important;
}
.bafleh-wp-shop .b10-price-range::-webkit-slider-thumb {
    -webkit-appearance: none !important;
    appearance: none !important;
    box-sizing: border-box !important;
    width: 18px !important;
    height: 18px !important;
    margin-top: -7px !important;
    padding: 0 !important;
    border: 3px solid #fff !important;
    border-radius: 50% !important;
    background: #171717 !important;
    box-shadow: 0 0 0 1px #171717, 0 2px 5px rgba(0,0,0,.16) !important;
    cursor: ew-resize !important;
    pointer-events: auto !important;
    transition: transform .12s ease, box-shadow .12s ease !important;
}
.bafleh-wp-shop .b10-price-range::-moz-range-track {
    width: 100% !important;
    height: 4px !important;
    border: 0 !important;
    border-radius: 999px !important;
    background: transparent !important;
    box-shadow: none !important;
}
.bafleh-wp-shop .b10-price-range::-moz-range-progress {
    height: 4px !important;
    border: 0 !important;
    background: transparent !important;
}
.bafleh-wp-shop .b10-price-range::-moz-range-thumb {
    box-sizing: border-box !important;
    width: 18px !important;
    height: 18px !important;
    padding: 0 !important;
    border: 3px solid #fff !important;
    border-radius: 50% !important;
    background: #171717 !important;
    box-shadow: 0 0 0 1px #171717, 0 2px 5px rgba(0,0,0,.16) !important;
    cursor: ew-resize !important;
    pointer-events: auto !important;
}
.bafleh-wp-shop .b10-price-range:focus-visible::-webkit-slider-thumb,
.bafleh-wp-shop .b10-price-range:active::-webkit-slider-thumb {
    transform: scale(1.08) !important;
    box-shadow: 0 0 0 1px #171717, 0 0 0 5px rgba(17,17,17,.08) !important;
}
.bafleh-wp-shop .b10-price-range:focus-visible::-moz-range-thumb,
.bafleh-wp-shop .b10-price-range:active::-moz-range-thumb {
    box-shadow: 0 0 0 1px #171717, 0 0 0 5px rgba(17,17,17,.08) !important;
}

/* Price value readout. Gives the range obvious min/max values without adding editable text boxes. */
.bafleh-wp-shop .b13-price-values {
    display: grid !important;
    grid-template-columns: minmax(0,1fr) 14px minmax(0,1fr) !important;
    align-items: center !important;
    gap: 5px !important;
    margin: 4px 0 9px !important;
}
.bafleh-wp-shop .b13-price-value {
    min-width: 0 !important;
    padding: 7px 8px 6px !important;
    border: 1px solid #e5e1db !important;
    border-radius: 3px !important;
    background: #fbfaf8 !important;
    line-height: 1.15 !important;
}
.bafleh-wp-shop .b13-price-value > span {
    display: block !important;
    margin-bottom: 3px !important;
    color: #8a857e !important;
    font-size: 8px !important;
    font-weight: 600 !important;
    letter-spacing: .08em !important;
    text-transform: uppercase !important;
}
.bafleh-wp-shop .b13-price-value strong {
    display: block !important;
    overflow: hidden !important;
    color: #222 !important;
    font-size: 11px !important;
    font-weight: 500 !important;
    line-height: 1.25 !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
}
.bafleh-wp-shop .b13-price-value strong small {
    color: #777 !important;
    font-size: 8px !important;
    font-weight: 500 !important;
}
.bafleh-wp-shop .b13-price-value-separator {
    color: #9b968f !important;
    font-size: 12px !important;
    text-align: center !important;
}
.bafleh-wp-shop .b13-price-actions {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 10px !important;
    margin-top: 0 !important;
}
.bafleh-wp-shop .live-filter-price-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 74px !important;
    min-height: 30px !important;
    margin: 0 !important;
    padding: 7px 15px !important;
    border: 1px solid #202020 !important;
    border-radius: 2px !important;
    background: #202020 !important;
    color: #fff !important;
    font-size: 9px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    transition: background-color .15s ease, color .15s ease !important;
}
.bafleh-wp-shop .live-filter-price-button:hover,
.bafleh-wp-shop .live-filter-price-button:focus {
    background: #fff !important;
    color: #202020 !important;
}
.bafleh-wp-shop .b13-price-reset {
    color: #777 !important;
    font-size: 9px !important;
    font-weight: 500 !important;
    text-decoration: none !important;
    border-bottom: 1px solid #c9c5bf !important;
}
.bafleh-wp-shop .b13-price-reset:hover {
    color: #111 !important;
    border-bottom-color: #111 !important;
}

/* Clear-all reads like a quiet utility action, not another button. */
.bafleh-wp-shop .live-clear-all-filters {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-top: 1px !important;
    padding: 3px 0 !important;
    border: 0 !important;
    border-bottom: 1px solid #c9c5bf !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #696969 !important;
    font-size: 9px !important;
    font-weight: 500 !important;
    letter-spacing: .03em !important;
    text-decoration: none !important;
    text-transform: uppercase !important;
}
.bafleh-wp-shop .live-clear-all-filters:hover {
    color: #111 !important;
    border-bottom-color: #111 !important;
}

/* Sort control receives the same restrained treatment. */
.bafleh-wp-shop .catalog-sort-form select {
    min-width: 184px !important;
    height: 36px !important;
    padding: 0 34px 0 12px !important;
    border: 1px solid #dedbd6 !important;
    border-radius: 2px !important;
    background-color: #fff !important;
    color: #444 !important;
    font-size: 11px !important;
    box-shadow: none !important;
}
.bafleh-wp-shop .catalog-sort-form select:focus {
    border-color: #9e9992 !important;
    outline: 0 !important;
    box-shadow: 0 0 0 3px rgba(17,17,17,.04) !important;
}

@media (max-width: 980px) {
    .bafleh-wp-shop .catalog-filter-scroll { padding: 0 !important; }
    .bafleh-wp-shop .filter-block { margin-bottom: 16px !important; padding-bottom: 16px !important; }
    .bafleh-wp-shop .live-filter-option {
        min-height: 40px !important;
        padding: 7px 4px !important;
        font-size: 14px !important;
    }
    .bafleh-wp-shop .live-filter-option input[type="checkbox"],
    .bafleh-wp-shop .live-filter-option input[type="radio"] {
        flex-basis: 18px !important;
        width: 18px !important;
        height: 18px !important;
        min-width: 18px !important;
        min-height: 18px !important;
    }
    .bafleh-wp-shop .live-filter-option input[type="checkbox"]::before,
    .bafleh-wp-shop .live-filter-option input[type="radio"]::before {
        width: 8px !important;
        height: 8px !important;
    }
    .bafleh-wp-shop .b10-price-slider {
        height: 44px !important;
        margin-top: 10px !important;
        padding: 0 11px !important;
    }
    .bafleh-wp-shop .b10-price-slider-track { left: 11px !important; right: 11px !important; top: 20px !important; }
    .bafleh-wp-shop input.b10-price-range,
    .bafleh-wp-shop .live-filter-form input.b10-price-range { height: 44px !important; }
    .bafleh-wp-shop .b10-price-range::-webkit-slider-thumb { width: 22px !important; height: 22px !important; margin-top: -9px !important; }
    .bafleh-wp-shop .b10-price-range::-moz-range-thumb { width: 22px !important; height: 22px !important; }
    .bafleh-wp-shop .b13-price-value { padding: 9px 10px 8px !important; }
    .bafleh-wp-shop .b13-price-value strong { font-size: 13px !important; }
    .bafleh-wp-shop .live-filter-price-button { min-height: 38px !important; min-width: 90px !important; }
    .bafleh-wp-shop .catalog-sort-form select { min-width: 0 !important; width: 100% !important; }
}
