.wn-review-card {
    margin-top: 20px;
    padding: 24px;
    border: 1px solid rgba(95, 24, 93, .10);
    border-radius: 24px;
    background: rgba(255, 255, 255, .94);
}

.wn-review-heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.wn-review-heading > div:first-child > span {
    display: block;
    margin-bottom: 4px;
    font-size: 12px;
    color: #c3427b;
}

.wn-review-heading h2 {
    margin: 0;
    font-size: 22px;
}

.wn-review-summary {
    display: flex;
    align-items: center;
    gap: 7px;
    white-space: nowrap;
}

.wn-review-summary strong {
    font-size: 24px;
}

.wn-review-stars,
.wn-review-item-rating .is-active {
    color: #d89b20;
}

.wn-review-summary small {
    opacity: .65;
}

.wn-review-compose {
    margin-bottom: 24px;
    padding: 18px;
    border-radius: 18px;
    background: rgba(126, 32, 115, .045);
}

.wn-review-compose h3 {
    margin: 0 0 16px;
}

.wn-review-rating-field > span,
.wn-review-field > span {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}

.wn-review-rating-options {
    display: inline-flex;
    flex-direction: row-reverse;
    gap: 4px;
    margin-bottom: 14px;
}

.wn-review-rating-options input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.wn-review-rating-options label {
    cursor: pointer;
    font-size: 32px;
    color: #d8d3d8;
    transition: transform .15s ease, color .15s ease;
}

.wn-review-rating-options label:hover,
.wn-review-rating-options label:hover ~ label,
.wn-review-rating-options input:checked ~ label {
    color: #d89b20;
}

.wn-review-rating-options label:hover {
    transform: translateY(-1px);
}

.wn-review-field {
    display: block;
    margin-top: 14px;
}

.wn-review-field textarea,
.wn-review-reply-form textarea {
    box-sizing: border-box;
    width: 100%;
    resize: vertical;
    border: 1px solid rgba(95, 24, 93, .18);
    border-radius: 14px;
    padding: 12px 14px;
    font: inherit;
    background: #fff;
}

.wn-review-field input[type="file"] {
    width: 100%;
}

.wn-review-submit,
.wn-review-reply-form button,
.wn-review-login {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 14px;
    border: 0;
    border-radius: 999px;
    padding: 10px 18px;
    font: inherit;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    background: #6f1c69;
    color: #fff;
}

.wn-review-list {
    display: grid;
    gap: 14px;
}

.wn-review-item {
    padding: 18px;
    border: 1px solid rgba(95, 24, 93, .09);
    border-radius: 18px;
    background: rgba(255, 255, 255, .86);
}

.wn-review-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.wn-review-item-head small {
    display: block;
    margin-top: 3px;
    opacity: .58;
}

.wn-review-item-rating {
    direction: ltr;
    white-space: nowrap;
    color: #ddd6dd;
}

.wn-review-body {
    margin: 14px 0 0;
    line-height: 1.8;
    white-space: pre-line;
}

.wn-review-image {
    display: inline-block;
    margin-top: 14px;
}

.wn-review-image img,
.wn-review-current-image img {
    display: block;
    width: min(260px, 100%);
    max-height: 260px;
    object-fit: cover;
    border-radius: 16px;
}

.wn-review-current-image {
    display: grid;
    gap: 8px;
    margin-top: 14px;
}

.wn-review-owner-reply {
    margin-top: 15px;
    padding: 13px 15px;
    border-radius: 14px;
    background: rgba(111, 28, 105, .055);
}

.wn-review-owner-reply strong {
    color: #6f1c69;
}

.wn-review-owner-reply p {
    margin: 5px 0 0;
    line-height: 1.7;
}

.wn-review-reply-form {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(95, 24, 93, .10);
}

.wn-review-reply-form label > span {
    display: block;
    margin-bottom: 7px;
    font-weight: 700;
}

.wn-review-success,
.wn-review-errors,
.wn-review-owner-note,
.wn-review-empty {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 14px;
}

.wn-review-success {
    background: rgba(24, 143, 83, .09);
}

.wn-review-errors {
    background: rgba(190, 45, 65, .08);
}

.wn-review-errors ul {
    margin: 7px 0 0;
}

.wn-review-owner-note,
.wn-review-empty {
    background: rgba(111, 28, 105, .05);
}

@media (max-width: 700px) {
    .wn-review-card {
        padding: 16px;
        border-radius: 18px;
    }

    .wn-review-heading,
    .wn-review-item-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .wn-review-rating-options label {
        font-size: 29px;
    }
}
