.elementor-42212 .elementor-element.elementor-element-d963733{--display:flex;}/* Start custom CSS for global, class: .elementor-global-42220 *//* ============================================
   CFS Social Icons - Transparent Default
   Background appears only on hover
   ============================================ */

/* Container - Flexbox horizontal layout */
.cfs-social-icons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0;
}

/* Individual button base */
.cfs-social-button {
    cursor: pointer;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: none;
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    background: transparent;
    transition: background 0.3s ease, transform 0.15s ease;
}

.cfs-social-button svg {
    color: rgba(255, 255, 255, 0.7);
    width: 20px;
    height: 20px;
    z-index: 9;
    transition: color 0.3s ease, transform 0.2s ease;
}

/* Hover & Active states */
.cfs-social-button:hover svg {
    color: #ffffff;
    transform: scale(1.1);
}

.cfs-social-button:active {
    transform: scale(0.88);
}

/* ============================================
   Platform Brand Colors - Hover Only
   ============================================ */

/* X (Twitter) - Black */
.cfs-social-x:hover {
    background: #000000;
}

/* Facebook - Official Blue */
.cfs-social-facebook:hover {
    background: #1877F2;
}

/* Instagram - Gradient */
.cfs-social-instagram:hover {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

/* Reddit - Official Orange */
.cfs-social-reddit:hover {
    background: #FF4500;
}

/* WhatsApp - Green Gradient */
.cfs-social-whatsapp:hover {
    background: linear-gradient(135deg, #25D366, #128C7E);
}

/* YouTube - Official Red */
.cfs-social-youtube:hover {
    background: #FF0000;
}

/* ============================================
   Responsive Breakpoints
   ============================================ */

/* Tablet (768px - 1024px) */
@media (max-width: 1024px) {
    .cfs-social-button {
        width: 38px;
        height: 38px;
    }
    
    .cfs-social-button svg {
        width: 19px;
        height: 19px;
    }
}

/* Mobile (< 768px) */
@media (max-width: 767px) {
    .cfs-social-button {
        width: 40px;
        height: 40px;
    }
    
    .cfs-social-button svg {
        width: 20px;
        height: 20px;
    }
}

/* Small Mobile (< 480px) */
@media (max-width: 479px) {
    .cfs-social-button {
        width: 38px;
        height: 38px;
    }
    
    .cfs-social-button svg {
        width: 19px;
        height: 19px;
    }
}/* End custom CSS */