/**
 * Footer Styles
 * @package JustForU
 */

.site-footer {
    background-color: var(--gray-800);
    color: var(--white);
    padding-top: var(--space-3xl);
}

.footer-widgets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-2xl);
    margin-bottom: var(--space-2xl);
}

.footer-widget-title {
    color: var(--primary-pink);
    margin-bottom: var(--space-md);
}

.footer-bottom {
    border-top: 1px solid var(--gray-700);
    padding: var(--space-lg) 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-social {
    display: flex;
    gap: var(--space-md);
}

.footer-social a {
    color: var(--white);
    font-size: var(--text-xl);
}

.footer-social a:hover {
    color: var(--primary-pink);
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25D366;
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: var(--shadow-lg);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

.whatsapp-float:hover {
    background-color: #20BA5A;
    transform: scale(1.1);
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 90px;
    right: 20px;
    background-color: var(--primary-pink);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    border: none;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    z-index: var(--z-fixed);
    transition: all var(--transition-base);
}

.scroll-to-top:hover {
    background-color: var(--primary-blue);
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .footer-widgets-grid {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: var(--space-md);
    }
}
