/* Shop by Values — Collection page filter entry points */

.roomify-shop-by-values-wrap {
    margin: 0 0 72px;
    padding: 48px 24px;
    background: #f4f0e8;
    box-sizing: border-box;
}

.roomify-shop-by-values {
    margin: 0;
    text-align: center;
}

.roomify-shop-by-values__heading {
    margin: 0 0 12px;
    color: #2d2a26;
    font-family: "Cormorant Garamond", serif;
    font-size: 40px;
    font-weight: 500;
    line-height: 1.15;
}

.roomify-shop-by-values__intro {
    margin: 0 auto 28px;
    max-width: 520px;
    color: #5e5a55;
    font-size: 15px;
    line-height: 1.6;
}

.roomify-shop-by-values ul.roomify-shop-by-values__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.roomify-shop-by-values li.roomify-shop-by-values__item {
    margin: 0;
    padding: 0;
    list-style: none;
}

.roomify-shop-by-values__link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 16px;
    background: #fff;
    border: 1px solid #e7dfd3;
    border-radius: 0;
    color: #2d2a26;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.roomify-shop-by-values__link:hover,
.roomify-shop-by-values__link:focus {
    border-color: #315543;
    box-shadow: 0 8px 20px rgba(47, 42, 37, 0.08);
    transform: translateY(-2px);
    color: #2d2a26;
    text-decoration: none;
}

.roomify-shop-by-values__check {
    display: inline-block;
    width: 16px;
    height: 16px;
    flex: 0 0 16px;
    border: 1.5px solid #315543;
    border-radius: 2px;
    background: transparent;
    box-sizing: border-box;
}

.roomify-shop-by-values__link:hover .roomify-shop-by-values__check,
.roomify-shop-by-values__link:focus .roomify-shop-by-values__check {
    background: #315543;
    box-shadow: inset 0 0 0 2px #fff;
}

.roomify-shop-by-values__label {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.3;
    text-align: left;
}

.roomify-shop-by-values__count {
    margin-left: 4px;
    color: #315543;
    font-size: 11px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Inside Elementor dark sections — keep the light panel readable */
.elementor-section .roomify-shop-by-values-wrap,
.elementor-widget-shortcode .roomify-shop-by-values-wrap {
    width: 100%;
}

@media (max-width: 767px) {
    .roomify-shop-by-values-wrap {
        margin-bottom: 48px;
        padding: 32px 16px;
    }

    .roomify-shop-by-values__heading {
        font-size: 32px;
    }

    .roomify-shop-by-values ul.roomify-shop-by-values__list {
        gap: 10px;
    }

    .roomify-shop-by-values__link {
        width: 100%;
        justify-content: flex-start;
    }
}