/* ====================================
   UI Elements - Icons, Links, Buttons
   ==================================== */

/* Footer Social Link */
.footer-social-link {
    transition: all 0.3s ease;
}

.footer-social-link:hover {
    background: linear-gradient(135deg, #FFD93D, #F6C344) !important;
    fill: #1a1a1a !important;
}

.footer-social-link svg {
    transition: fill 0.3s ease;
}

/* Mobile - убираем серый фон */
@media (max-width: 768px) {
    .footer-social-link {
        background: transparent !important;
    }

    .footer-social-link:hover {
        background: linear-gradient(135deg, #FFD93D, #F6C344) !important;
    }
}

/* Footer Links */
.footer-link {
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: #F6C344 !important;
}

/* Back to Top Button - Always Golden */
.back-to-top-btn {
    background: linear-gradient(135deg, #FFD93D, #F6C344) !important;
    fill: #1a1a1a;
    transition: all 0.3s ease;
    box-shadow: 0 6px 18px rgba(246, 195, 68, 0.35);
}

.back-to-top-btn:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(246, 195, 68, 0.5);
}

.back-to-top-btn svg {
    fill: #1a1a1a;
    transition: transform 0.3s ease;
}

.back-to-top-btn:hover svg {
    transform: scale(1.1);
}

/* Star Rating Colors */
.tw-fill-primary-600 {
    fill: #F2C94C !important;
}

.tw-text-primary-600 {
    color: #FFD93D !important;
}

.tw-bg-primary-600 {
    background-color: #FFD93D !important;
}

.hover\:tw-bg-primary-600:hover {
    background-color: #FFD93D !important;
}

.hover\:tw-text-primary-600:hover {
    color: #F6C344 !important;
}

.hover\:tw-fill-white:hover {
    fill: #1a1a1a !important;
}
