/* ── FAT Recipe Star Rating Widget ──────────────────────────────── */

.fat-rating-widget {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 14px 0 18px;
    border-bottom: 1px solid #f0ebe0;
    margin-bottom: 16px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* Current rating display (stars + text) */
.fat-rating-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.fat-stars-display {
    display: inline-flex;
    gap: 1px;
}

.fat-stars-display .fat-star {
    font-size: 20px;
    line-height: 1;
    color: #ddd;
    transition: color 0.1s;
}

.fat-stars-display .fat-star.filled {
    color: #ff4a52;
}

.fat-rating-info {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

/* Interactive stars row */
.fat-rating-prompt {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

.fat-stars-interactive {
    display: inline-flex;
    gap: 2px;
    cursor: pointer;
    margin-top: 2px;
}

.fat-star-btn {
    background: none;
    border: none;
    padding: 0 2px;
    font-size: 28px;
    line-height: 1;
    color: #ddd;
    cursor: pointer;
    transition: color 0.12s, transform 0.1s;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
}

.fat-star-btn:hover,
.fat-star-btn.fat-star-hover {
    color: #ff4a52;
    transform: scale(1.1);
}

.fat-star-btn.fat-star-active {
    color: #ff4a52;
}

/* Thank-you message after voting */
.fat-rating-thanks {
    font-size: 14px;
    color: #ff4a52;
    font-weight: 600;
    padding: 6px 0;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .fat-star-btn {
        font-size: 36px;
        padding: 0 4px;
    }
}

/* ── "Did you make this recipe?" CTA section ──────────────────────── */

.fat-review-cta {
    margin: 40px 0 24px;
    padding: 28px 24px;
    background: #fffaf5;
    border: 1px solid #f0ebe0;
    border-radius: 8px;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.fat-review-cta__heading {
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 8px;
    line-height: 1.3;
}

.fat-review-cta__subheading {
    font-size: 15px;
    color: #555;
    margin: 0 0 16px;
    line-height: 1.6;
}

#fat-rating-cta-widget .fat-rating-widget {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}
