.local-location-guide {
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(74, 25, 32, .14);
    border-radius: 24px;
    background: #fffaf3;
    box-shadow: 0 18px 48px rgba(58, 22, 28, .12);
}

.local-location-guide > img {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 12 / 7;
    object-fit: cover;
    background: #f3eadc;
}

.local-location-guide > figcaption {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 20px 24px;
}

.local-location-guide > figcaption > span {
    display: grid;
    gap: 4px;
}

.local-location-guide > figcaption strong {
    color: #32181c;
    font-size: 1.05rem;
}

.local-location-guide > figcaption small {
    color: #695c5f;
    line-height: 1.55;
}

.local-location-guide > figcaption a {
    flex: 0 0 auto;
    border-radius: 999px;
    padding: 12px 18px;
    color: #fff;
    background: #6f1d2b;
    font-weight: 700;
    text-decoration: none;
}

.local-location-guide > figcaption a:hover,
.local-location-guide > figcaption a:focus-visible {
    background: #4e121e;
}

.product-reviews {
    padding: 56px 20px;
    background: #fffaf3;
}

.product-reviews__inner {
    max-width: 1120px;
    margin: 0 auto;
}

.product-reviews__header,
.product-review-form-wrap {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 32px;
}

.product-reviews__eyebrow {
    margin: 0 0 6px;
    color: #8b2032;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.product-reviews h2,
.product-review-form-wrap h3 {
    margin: 0;
    color: #32181c;
}

.product-reviews__summary {
    display: grid;
    gap: 2px;
    min-width: 180px;
    padding: 16px 20px;
    border: 1px solid rgba(111, 29, 43, .14);
    border-radius: 18px;
    background: #fff;
}

.product-reviews__summary strong {
    color: #32181c;
    font-size: 1.5rem;
}

.product-reviews__summary span,
.product-review__meta span {
    color: #c77b00;
    letter-spacing: .08em;
}

.product-reviews__summary small,
.product-review time,
.product-review__meta small {
    color: #695c5f;
}

.product-reviews__empty {
    margin: 24px 0 0;
    padding: 20px;
    border-radius: 16px;
    background: #fff;
    color: #55484b;
}

.product-reviews__list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    margin-top: 24px;
}

.product-review {
    padding: 22px;
    border: 1px solid rgba(74, 25, 32, .12);
    border-radius: 18px;
    background: #fff;
}

.product-review__meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 12px;
}

.product-review h3 {
    margin: 14px 0 8px;
    color: #32181c;
    font-size: 1.05rem;
}

.product-review p {
    color: #55484b;
    line-height: 1.7;
}

.product-review-form-wrap {
    margin-top: 28px;
    padding: 28px;
    border-radius: 24px;
    background: #32181c;
    color: #fff;
}

.product-review-form-wrap > div {
    max-width: 330px;
}

.product-review-form-wrap h3,
.product-review-form-wrap .product-reviews__eyebrow {
    color: #fff;
}

.product-review-form-wrap p {
    color: #eadde0;
    line-height: 1.7;
}

.product-review-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
    width: min(100%, 680px);
}

.product-review-form label {
    display: grid;
    gap: 6px;
    font-weight: 700;
}

.product-review-form input,
.product-review-form select,
.product-review-form textarea {
    box-sizing: border-box;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 10px;
    padding: 11px 12px;
    color: #241115;
    background: #fff;
    font: inherit;
}

.product-review-form__wide,
.product-review-form button {
    grid-column: 1 / -1;
}

.product-review-form__consent {
    display: flex !important;
    grid-template-columns: none;
    align-items: flex-start;
    font-weight: 400 !important;
}

.product-review-form__consent input {
    flex: 0 0 auto;
    width: auto;
    margin-top: 4px;
}

.product-review-form button {
    border: 0;
    border-radius: 999px;
    padding: 13px 20px;
    color: #32181c;
    background: #f6d797;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
}

.product-review-form button:disabled {
    cursor: wait;
    opacity: .65;
}

.product-review-form__status {
    min-height: 1.4em;
    margin: 0;
}

.product-review-form__honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

@media (max-width: 720px) {
    .local-location-guide {
        border-radius: 18px;
    }

    .local-location-guide > figcaption,
    .product-reviews__header,
    .product-review-form-wrap {
        align-items: stretch;
        flex-direction: column;
    }

    .local-location-guide > figcaption {
        padding: 18px;
    }

    .local-location-guide > figcaption a {
        text-align: center;
    }

    .product-reviews {
        padding: 40px 16px;
    }

    .product-reviews__list,
    .product-review-form {
        grid-template-columns: 1fr;
    }

    .product-review-form-wrap {
        padding: 22px 18px;
    }
}
