/**
 * Best-by display on the product page.
 *
 * Simple products render a single <p class="best-by-date">.
 * Variable products render the list variant, one row per variation.
 */

.best-by-date {
    margin: 1em 0 0;
    color: #1f3d36;
    font-size: 0.95em;
}

.best-by-date--list {
    background: #f4f9f5;
    border: 1px solid #d4e6dc;
    border-radius: 8px;
    padding: 0.75em 1em;
}

.best-by-date--list .best-by-heading {
    display: block;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin-bottom: 0.35em;
}

.best-by-date--list .best-by-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.best-by-date--list .best-by-list li {
    display: flex;
    flex-wrap: wrap;
    gap: 0 0.4em;
    padding: 0.2em 0;
}

.best-by-date--list .best-by-list li + li {
    border-top: 1px solid #e3ece8;
}

.best-by-date--list .best-by-variation {
    font-weight: 600;
}
