.thmf-service-price {
    display: inline;
}

.thmf-takeaway-price {
    display: none;
}

.thmf-mode-takeaway .thmf-restaurant-price {
    display: none;
}

.thmf-mode-takeaway .thmf-takeaway-price {
    display: inline;
}

.thmf-takeaway-price--unavailable {
    color: #777;
    font-size: .78em;
    font-weight: 600;
}

.wd-products-tabs .thpl-variation-price-list {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 5px;
}

.wd-products-tabs .thpl-variation-price-row {
    display: flex;
    align-items: baseline;
    width: 100%;
    min-width: 0;
    gap: 6px;
}

.wd-products-tabs .thpl-variation-label {
    flex: 0 0 auto;
    color: inherit;
    font-size: .82em;
    font-weight: 650;
}

.wd-products-tabs .thpl-variation-dots {
    flex: 1 1 auto;
    min-width: 10px;
    border-bottom: 1px dotted currentColor;
    opacity: .4;
}

.wd-products-tabs .thpl-variation-amount {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: flex-end;
}

.wd-products-tabs .thpl-variation-price-unavailable .thpl-variation-amount {
    color: #777;
    font-size: .72em;
    font-weight: 600;
}

.thmf-woodmart-filter {
    width: 100%;
    container-type: inline-size;
}

.thmf-filter-details {
    display: block;
}

.thmf-filter-summary {
    display: none;
}

.thmf-filter-details:not([open]) > .thmf-filter-panel {
    display: block;
}

.thmf-filter-panel {
    padding: 22px;
    border-radius: 16px;
    background: #f5f5f2;
    color: #111;
}

.thmf-service-selector {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 9px;
    margin: 0 0 22px;
}

.thmf-standalone-service {
    width: 100%;
}

.thmf-standalone-service .thmf-service-buttons {
    width: auto;
}

.thmf-service-title {
    color: inherit;
    font-size: 14px;
    font-weight: 750;
    line-height: 1.3;
}

.thmf-service-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    width: 100%;
}

.thmf-service-button {
    appearance: none;
    flex: 1 1 100px;
    padding: 9px 15px;
    border: 1px solid currentColor;
    border-radius: 999px;
    background: #fff;
    color: #111;
    cursor: pointer;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    transition: color .2s ease, background-color .2s ease, border-color .2s ease, transform .2s ease;
}

.thmf-service-button:hover {
    transform: translateY(-1px);
}

.thmf-service-button.is-active {
    border-color: #111;
    background: #111;
    color: #fff;
}

.thmf-filter-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.thmf-filter-heading > div {
    min-width: 0;
}

.thmf-filter-title {
    margin: 0 0 5px;
    color: inherit;
    font-size: 20px;
    font-weight: 750;
    line-height: 1.2;
}

.thmf-filter-description {
    width: 100%;
    max-width: 720px;
    margin: 0;
    color: inherit;
    font-size: 13px;
    line-height: 1.55;
    opacity: .66;
    overflow-wrap: anywhere;
}

.thmf-woodmart-filter .thmf-filter-reset {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 2px 0;
    width: auto;
    height: auto !important;
    min-height: 0 !important;
    border: 0;
    border-bottom: 1px solid currentColor;
    background: transparent;
    color: inherit;
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1.2;
    cursor: pointer;
    white-space: normal;
    overflow-wrap: anywhere;
}

.thmf-filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.thmf-filter-chip {
    --thmf-chip-hover-y: 1px;
    --thmf-chip-hover-scale: 1;
    --thmf-chip-duration: 200ms;
    position: relative;
    margin: 0;
    cursor: pointer;
}

.thmf-filter-chip[hidden] {
    display: none !important;
}

@container (max-width: 430px) {
    .thmf-filter-heading {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .thmf-filter-reset {
        align-self: flex-start;
        max-width: 100%;
        text-align: left;
    }
}

.thmf-filter-chip input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.thmf-filter-chip span {
    display: block;
    padding: 10px 15px;
    border: 1px solid #d9d9d6;
    border-radius: 999px;
    background: #fff;
    color: #111;
    font-size: 12px;
    font-weight: 650;
    line-height: 1;
    transition: transform var(--thmf-chip-duration) ease, color var(--thmf-chip-duration) ease, background-color var(--thmf-chip-duration) ease, border-color var(--thmf-chip-duration) ease, box-shadow var(--thmf-chip-duration) ease;
}

.thmf-filter-chip:hover span {
    transform: translateY(calc(var(--thmf-chip-hover-y) * -1)) scale(var(--thmf-chip-hover-scale));
}

.thmf-filter-chip input:focus-visible + span {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

.thmf-filter-chip input:checked + span {
    border-color: #111;
    background: #111;
    color: #fff;
}

.thmf-filter-count {
    margin: 14px 0 0;
    color: inherit;
    font-size: 12px;
    line-height: 1.3;
    opacity: .62;
}

.thmf-filter-warning,
.thmf-target-warning {
    margin: 12px 0 0;
    color: #b32d2e;
    font-size: 12px;
}

.thmf-product-hidden,
.thmf-filter-item-hidden,
.wd-products-tabs .thmf-filter-item-hidden[hidden] {
    display: none !important;
}

.thmf-empty-result {
    width: 100%;
    margin: 24px 0;
    padding: 32px 20px;
    border: 1px dashed rgba(0, 0, 0, .18);
    border-radius: 12px;
    color: #6a6a6a;
    text-align: center;
}

.thmf-summary-state {
    position: relative;
    width: 18px;
    height: 18px;
}

.thmf-summary-state::before,
.thmf-summary-state::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 12px;
    height: 1px;
    background: currentColor;
    transform: translate(-50%, -50%);
}

.thmf-summary-state::after {
    transform: translate(-50%, -50%) rotate(90deg);
    transition: transform .2s ease;
}

.thmf-filter-details[open] .thmf-summary-state::after {
    transform: translate(-50%, -50%) rotate(0deg);
}

@media (max-width: 767px) {
    .thmf-filter-details--mobile .thmf-filter-summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 20px;
        padding: 16px 18px;
        border: 1px solid rgba(0, 0, 0, .12);
        border-radius: 12px;
        background: #f5f5f2;
        color: #111;
        font-size: 14px;
        font-weight: 750;
        cursor: pointer;
        list-style: none;
    }

    .thmf-filter-details--mobile:not([open]) > .thmf-filter-panel {
        display: none;
    }

    .thmf-filter-details--mobile .thmf-filter-summary::-webkit-details-marker {
        display: none;
    }

    .thmf-filter-details--mobile[open] .thmf-filter-summary {
        border-radius: 12px 12px 0 0;
    }

    .thmf-filter-details--mobile .thmf-filter-panel {
        border-radius: 0 0 12px 12px;
    }

    .thmf-filter-heading {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .thmf-filter-reset {
        align-self: flex-start;
        max-width: 100%;
        text-align: left;
    }

    .thmf-filter-details--mobile .thmf-filter-title {
        display: none;
    }

    .thmf-filter-chip span {
        padding: 9px 12px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .thmf-filter-chip span,
    .thmf-summary-state::after,
    .thmf-service-button {
        transition-duration: .01ms !important;
    }
}
