.airg-hp {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.airg-rating-widget {
    margin: 24px 0;
    padding: 16px 20px;
    background: #fafafa;
    border: 1px solid #eee;
    border-radius: 8px;
    text-align: center;
    font-family: inherit;
}

.airg-rating-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.airg-stars {
    display: inline-flex;
    gap: 6px;
    margin-bottom: 8px;
    line-height: 1;
}

.airg-star {
    font-size: 34px;
    color: #ddd;
    cursor: pointer;
    transition: color 0.1s, transform 0.1s;
    user-select: none;
}

.airg-star.hover,
.airg-star.active {
    color: #f5a623;
}

.airg-star:hover {
    transform: scale(1.15);
}

.airg-stars.voted .airg-star {
    cursor: default;
}

.airg-stars.voted .airg-star:hover {
    transform: none;
}

.airg-rating-stats {
    font-size: 13px;
    color: #888;
    margin-top: 4px;
}

.airg-rating-average {
    font-weight: 700;
    color: #444;
    margin-right: 5px;
}

.airg-rating-message {
    margin-top: 8px;
    font-size: 13px;
    color: #666;
    min-height: 18px;
}