/* ========================================
   STICKY SOCIAL ICONS
   Desktop: Right Side Sticky
   Mobile: Bottom Bar
   ======================================== */

/* Desktop Styles (min-width: 769px) */
@media (min-width: 769px) {
    .sticky-social-icons {
        position: fixed;
        right: 2px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9999;
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .sticky-social-icons .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: linear-gradient(180deg, #BF0000 0%, #600000 156%);
        color: #fff;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.3s ease;
        position: relative;
        overflow: hidden;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    }

    .sticky-social-icons .social-icon i {
        font-size: 24px;
        transition: all 0.3s ease;
    }

    .sticky-social-icons .social-icon:hover {
        background: #1a1a1a;
        transform: scale(1.05);
    }

    .sticky-social-icons .social-icon:hover i {
        transform: scale(1.1);
    }

    .sticky-social-icons .social-label {
        display: none;
    }
}

/* Mobile Styles (max-width: 768px) */
@media (max-width: 768px) {
    .sticky-social-icons {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        align-items: center;
        background-image: linear-gradient(180deg, #BF0000 0%, #600000 100%);
        backdrop-filter: blur(10px);
        padding: 12px 20px;
        box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    }

    .sticky-social-icons .social-icon {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
        color: #fff;
        gap: 5px;
        padding: 8px 12px;
        border-radius: 10px;
        transition: all 0.2s ease;
        flex: 1;
        max-width: 80px;
        background: transparent;
    }

    .sticky-social-icons .social-icon i {
        font-size: 22px;
    }

    .sticky-social-icons .social-label {
        font-size: 10px;
        font-family: sans-serif;
        display: block;
        font-weight: 500;
    }

    .sticky-social-icons .social-icon:active {
        background-color: rgba(255, 255, 255, 0.1);
        transform: scale(0.95);
    }
    
    .sticky-social-icons .facebook:active { color: #1877f2; }
    .sticky-social-icons .instagram:active { color: #e4405f; }
    .sticky-social-icons .tiktok:active { color: #00f2ea; }
    .sticky-social-icons .contact:active { color: #9B0400; }
}

/* Very small screens (max-width: 480px) */
@media (max-width: 480px) {
    .sticky-social-icons .social-label {
        font-size: 9px;
    }
    
    .sticky-social-icons .social-icon i {
        font-size: 18px;
    }
    
    .sticky-social-icons {
        padding: 10px 15px;
    }
    
    .sticky-social-icons .social-icon {
        padding: 6px 8px;
    }
}

@media (max-width: 768px) {
    body.has-sticky-footer .sticky-social-icons {
        bottom: 60px;
    }
}