/* Social Widget Styles */
.social-widget-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    padding: 15px;
    background: #fff;
    border-radius: 0 0 8px 8px;
    border: 1px solid #eee;
    border-top: none;
}

.social-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 1;
    border-radius: 12px;
    color: #fff;
    font-size: 24px;
    text-decoration: none;
    transition: transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: #fff;
}

/* Brand Colors */
.sb-facebook {
    background: #3b5998;
}

.sb-website {
    background: #6f42c1;
}

.sb-tiktok {
    background: #000000;
    /* TikTok is usually black or gradient */
    background: linear-gradient(45deg, #000000, #25F4EE, #FE2C55);
}

.sb-twitter {
    background: #1da1f2;
}

.sb-instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.sb-whatsapp {
    background: #25d366;
}

.sb-youtube {
    background: #ff0000;
}

.sb-video {
    background: #ff9900;
}

/* Header Style for Social Widget */
.header-social {
    background: linear-gradient(to right, #6f42c1, #8e44ad);
}