p.product-freebie-badge {
    max-width: 100%;
    margin: 8px 0 12px;
    padding: 7px 10px;
    color: #315c3b;
    border: 1px solid #d6e5d6;
    border-radius: 8px;
    background: #f0f7ee;
    font-size: .76rem;
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.product-freebie-badge i {
    margin-right: 4px;
}

.product-freebie-note {
    display: block;
    margin-top: 6px;
    color: #315c3b;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1.5;
    overflow-wrap: anywhere;
}

.product-freebies {
    margin: 18px 0;
    padding: 16px;
    border: 1px solid #d6e5d6;
    border-radius: 14px;
    background: #f7faf4;
}

.product-freebies__heading {
    margin-bottom: 12px;
}

.product-freebies__heading h2 {
    margin: 0 0 4px;
    color: #315c3b;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.4;
}

.product-freebies__heading p {
    margin: 0;
    color: #59634f;
    font-size: .8rem;
    line-height: 1.5;
}

.product-freebies__items {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.product-freebies__items li {
    display: flex;
    min-width: 0;
    gap: 10px;
    align-items: center;
}

.product-freebies__items strong {
    color: #3b4334;
    font-size: .86rem;
    line-height: 1.4;
    overflow-wrap: anywhere;
}

.product-freebies__photo {
    position: relative;
    flex: 0 0 72px;
    width: 72px;
    height: 72px;
    border: 1px solid #e2e8dc;
    border-radius: 9px;
    background: #fff;
}

.product-freebies__photo img {
    position: absolute;
    inset: 5px;
    width: calc(100% - 10px);
    height: calc(100% - 10px);
    object-fit: contain;
}

@media (max-width: 480px) {
    .product-freebies__items {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-freebies__items li:not(:only-child) {
        flex-direction: column;
        align-items: flex-start;
    }

    .product-freebies__items li:only-child {
        grid-column: 1 / -1;
    }
}
