body.theme-store .storefront-product-price-tiers {
    display: grid;
    gap: 10px;
    padding: 14px;
    border: 1px solid var(--st-border);
    border-radius: var(--st-radius);
    background: var(--st-bg-alt);
}

body.theme-store .storefront-product-price-tiers[hidden] {
    display: none;
}

body.theme-store .storefront-product-price-tiers h2 {
    margin: 0;
    font-size: 14px;
    font-weight: 750;
    letter-spacing: 0;
}

body.theme-store .storefront-product-price-tiers-list {
    display: grid;
    gap: 8px;
}

body.theme-store .storefront-product-price-tier {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 9px 10px;
    border: 1px solid var(--st-border);
    border-radius: calc(var(--st-radius) * 0.75);
    background: var(--st-bg);
    color: var(--st-fg);
    font-size: 13px;
}

body.theme-store .storefront-product-price-tier span {
    color: var(--st-fg-muted);
}

body.theme-store .storefront-product-price-tier strong {
    color: var(--st-fg);
    font-weight: 800;
    white-space: nowrap;
}

@media (max-width: 575px) {
    body.theme-store .storefront-product-price-tier {
        align-items: flex-start;
        flex-direction: column;
        gap: 2px;
    }
}
