/* Custom Footer Social Links Styles */

.customer-info-content .social-links-premium {
    display: flex;
    flex-direction: row;
    /* Force row */
    gap: 15px;
    margin-top: 5px;
    flex-wrap: nowrap;
    /* Prevent stacking */
    align-items: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    /* Slightly smaller to fit better */
    height: 40px;
    border-radius: 50%;
    background: #fff;
    color: #333;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    font-size: 18px;
    flex-shrink: 0;
    /* Prevent shrinking */
}

.social-icon:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
    color: white !important;
}

/* Instagram Gradient */
.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Facebook Blue */
.social-icon.facebook:hover {
    background: #1877F2;
}

/* Responsive adjustments */
@media (max-width: 768px) {

    /* Ensure flex row on mobile too */
    .customer-info-content .social-links-premium {
        flex-direction: row;
    }
}