/* Social Bar Styling */
.bb-social-interaction-section {
    background: rgba(10, 10, 10, 0.4);
    backdrop-filter: blur(20px) saturate(170%);
    -webkit-backdrop-filter: blur(20px) saturate(170%);
    border: 1px solid #1e656d;
    border-radius: 20px;
    padding: 30px;
    margin-top: 50px;
    color: #fff;
}

.bb-interaction-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.bb-like-btn {
    background: transparent;
    border: 1px solid #f62a00;
    color: #f62a00;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.bb-like-btn:hover, .bb-like-btn.active {
    background: #f62a00;
    color: #fff;
}

.bb-share-icons a {
    color: #fff;
    font-size: 20px;
    margin-left: 15px;
    transition: color 0.3s;
}

.bb-share-icons a:hover {
    color: #f62a00;
}

.bb-rating-stars {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.bb-star-group {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
}

.bb-star-group input {
    display: none;
}

.bb-star-group label {
    color: #444;
    font-size: 28px;
    cursor: pointer;
    transition: color 0.2s, transform 0.2s;
    padding: 0 2px;
}

/* Hover effect: color current and all following (visually left) stars */
.bb-star-group label:hover,
.bb-star-group label:hover ~ label {
    color: #f62a00 !important;
}

/* Selected state: color checked and all following stars */
.bb-star-group input:checked ~ label {
    color: #f62a00 !important;
}

/* Maintain color on hover after selection */
.bb-star-group label:hover ~ label {
    color: #f62a00 !important;
}

.bb-interaction-form textarea {
    width: 100%;
    min-height: 100px;
    background: rgba(255,255,255,0.05);
    border: 1px solid #1e656d;
    border-radius: 8px;
    color: #fff;
    padding: 15px;
    margin-bottom: 15px;
}

.bb-guest-fields {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.bb-guest-fields input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: 1px solid #1e656d;
    border-radius: 8px;
    color: #fff;
    padding: 10px 15px;
}

.bb-submit-social {
    background: #f62a00;
    color: #fff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s;
}

.bb-submit-social:hover {
    background: #1e656d;
}

.bb-comment-item {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.bb-comment-avatar img {
    border-radius: 50%;
}

.bb-comment-meta {
    margin-bottom: 5px;
}

.bb-comment-date {
    color: #888;
    font-size: 0.85em;
    margin-left: 10px;
}

.bb-comment-rating {
    color: #f62a00;
    font-size: 14px;
    margin-top: 2px;
}

.bb-form-response {
    margin-top: 15px;
}

@keyframes bbPop {
    0% { transform: scale(1); }
    50% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.bb-pop-anim {
    animation: bbPop 0.3s ease-in-out;
}
