/* WAL My Account - Reviews cards */
.wal-review-product-card {
    display: grid;
    gap: 16px;
    padding: 18px;
    border: 1px solid #e2e8e2;
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 1px 2px rgba(17, 24, 39, 0.03);
}

.wal-review-product-card--pending_review,
.wal-review-product-card--pending_reward {
    background: #fffaf0;
    border-color: #f3d891;
}

.wal-review-product-card--rewarded {
    background: #f7fcf7;
    border-color: #bddfbe;
}

.wal-review-product-card__image {
    flex: 0 0 96px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    border-radius: 8px;
    background: #fbfbfb;
    overflow: hidden;
}

.wal-review-product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.wal-review-product-card__info {
    min-width: 0;
}

.wal-review-product-card__title {
    margin: 0;
    color: #111827;
    font-size: 17px;
    line-height: 1.35;
}

.wal-review-product-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 10px;
    margin-top: 6px;
    color: var(--wal-review-muted, #6b7280);
    font-size: 13px;
}

.wal-review-product-card__share {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    color: var(--wal-review-green, #166534);
    font-size: 22px;
    text-decoration: none;
}

.wal-review-product-card__status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    background: #eef8ee;
    color: var(--wal-review-green, #166534);
    font-size: 14px;
    font-weight: 800;
}

.wal-review-product-card__status strong {
    color: var(--wal-review-green, #166534);
}

.wal-review-product-card__status-icon {
    width: 17px;
    height: 17px;
    border: 2px solid currentColor;
    border-radius: 4px;
}

.wal-review-product-card__stars-cta {
    display: grid;
    gap: 6px;
    color: var(--wal-review-gold, #b98718);
    text-decoration: none;
}

.wal-review-product-card__star-row,
.wal-review-stars {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    color: var(--wal-review-gold, #b98718);
    font-size: 38px;
    line-height: 1;
}

.wal-review-stars {
    justify-content: flex-start;
    gap: 3px;
    font-size: 22px;
}

.wal-review-stars span {
    color: #d1d5db;
}

.wal-review-stars span.is-filled {
    color: #f4c430;
}

.wal-review-product-card__scale {
    display: flex;
    justify-content: space-between;
    color: var(--wal-review-muted, #6b7280);
}

.wal-review-product-card__review-title {
    margin: 0;
    color: #111827;
    font-size: 17px;
    line-height: 1.3;
}

.wal-review-product-card__excerpt {
    margin: 0;
    color: #374151;
    line-height: 1.55;
}

.wal-review-product-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    border-radius: 8px;
    background: var(--wal-review-green, #166534);
    color: #fff;
    font-weight: 900;
    text-decoration: none;
}

.wal-review-product-card__button:hover {
    background: var(--wal-review-green-dark, #14532d);
    color: #fff;
}

@media (max-width: 560px) {
    .wal-review-product-card {
        gap: 14px;
        margin-bottom: 18px;
        padding: 16px;
    }

    .wal-review-product-card__top {
        align-items: flex-start;
    }

    .wal-review-product-card__image {
        flex-basis: 88px;
        width: 88px;
        height: 88px;
    }

    .wal-review-product-card__star-row {
        font-size: 38px;
    }

    .wal-review-product-card__button {
        display: none;
    }
}
