/* Checkbox */
.wp-block-scmb-filters-wrapper {
    margin-bottom: 120px;
}
.wp-block-scmb-filters-wrapper * {
    user-select: none;
}

.wp-block-scmb-filters-wrapper .wc-block-components-checkbox>label {
    background-color: #3A3A3F;
    border-radius: 1.5em;
    padding: .5em 1em;
    text-align: center;
    cursor: pointer;
}

.wp-block-scmb-filters-wrapper .wc-block-components-checkbox>label>input {
    opacity: 0;
    visibility: hidden;
    position: absolute !important;
}

.wp-block-scmb-filters-wrapper .wc-block-components-checkbox>label:has(>input:checked) {
    background-color: white;
    color: black;
}


/* Radio */
.wp-block-scmb-filters-wrapper .wc-block-components-radio>label {
    background-color: #3A3A3F;
    border-radius: 1.5em;
    padding: .5em 1em;
    text-align: center;
    cursor: pointer;
}

.wp-block-scmb-filters-wrapper .wc-block-components-radio>label>input {
    opacity: 0;
    visibility: hidden;
    position: absolute !important;
}

.wp-block-scmb-filters-wrapper .wc-block-components-radio>label:has(>input:checked) {
    background-color: white;
    color: black;
}

.wp-block-scmb-filters-buttons {
    display: grid;
    justify-content: space-between;
    position: fixed;
    bottom: 0;
    background-color: #2D2D32;
    padding: 1em 2em;
    width: 100%;
    left: 0;
    box-sizing: border-box;
    grid-template-columns: 1fr 1fr;
}

.cancel-button {
    background: transparent;
    border: none;
    color: #aaa;
    font-size: 16px;
    cursor: pointer;
    text-align: left;
}

.confirm-button {
    background: linear-gradient(180deg, #FFD700, #CDAF00);
    border: none;
    color: #000;
    font-size: 16px;
    padding: 10px 20px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: bold;
}

.wp-block-scmb-filters-wrapper fieldset {
    border-bottom: none;
    gap: .5em;
    display: flex;
    flex-wrap: wrap;
}

.wp-block-scmb-filters-fields > *:not(:last-of-type) fieldset {
    padding-bottom: 1em;
    border-bottom: 1px solid #3C3C41;
}