.btn-opinion {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 11px 18px;
    margin-bottom: 18px;
    border-radius: 10px;
    border: none;
    background: linear-gradient(
        135deg,
        #01B03B,
        #019a33
    );
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 6px 16px
        rgba(1, 176, 59, .35);
    transition: .18s ease;
}

.btn-opinion::before {
    content: "✍️";
}

.btn-opinion:hover {
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 10px 22px
        rgba(1, 176, 59, .45);
}

.review-summary {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 22px;
    padding: 20px;
    border-radius: 14px;
    background: #f9fafb;
}

.review-average {
    color: #111827;
    font-size: 42px;
    font-weight: 800;
}

.wawaland-review {
    border-left: 5px solid #01B03B;
}

.wawaland-review h3 {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #01B03B;
}

.wawaland-review blockquote {
    margin: 15px 0;
    color: #374151;
    font-size: 16px;
    font-style: italic;
    line-height: 1.7;
}

.wawaland-review footer {
    padding-top: 12px;
    border-top: 1px solid #e5e7eb;
    color: #6b7280;
    font-size: 13px;
}

.resena-divider {
    position: relative;
    margin: 36px 0 24px;
    text-align: center;
}

.resena-divider::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        #d1d5db,
        transparent
    );
}

.resena-divider span {
    position: relative;
    padding: 0 14px;
    background: #ffffff;
    color: #374151;
    font-size: 14px;
    font-weight: 700;
}

.resenas-list {
    margin-top: 10px;
}

.resena-item {
    margin-bottom: 18px;
    padding: 20px 18px;
    border-left: 4px solid #01B03B;
    border-radius: 14px;
    background: #f9fafb;
    transition: .15s ease;
}

.resena-item:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 20px
        rgba(0, 0, 0, .06);
}

.resena-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
    margin-bottom: 7px;
}

.resena-header strong {
    color: #111827;
    font-size: 14px;
}

.resena-fecha {
    color: #6b7280;
    font-size: 12px;
}

.resena-stars {
    margin: 6px 0 10px;
}

.star-on {
    color: #fbbf24;
}

.star-off {
    color: #d1d5db;
}

.resena-text {
    margin: 0;
    color: #374151;
    font-size: 14px;
    line-height: 1.65;
}

.empty-reviews {
    padding: 35px 20px;
    border-radius: 14px;
    background: #f9fafb;
    color: #6b7280;
    text-align: center;
}

.empty-reviews i {
    margin-bottom: 12px;
    color: #01B03B;
    font-size: 35px;
}

.empty-reviews p {
    margin: 5px 0;
    color: #374151;
    font-weight: 700;
}