/* =====================================
   UNIVERSAL FOOTER CSS
   Safe to use on any website without conflicts
   ===================================== */

/* FOOTER BASE - Scoped to prevent conflicts */
.custom-universal-footer {
    background-color: #000 !important;
    color: #fff !important;
    width: 100% !important;
    padding: 40px 20px !important;
    text-align: center !important;
    font-family: 'Segoe UI', Arial, sans-serif !important;
    box-sizing: border-box !important;
    display: block !important;
    clear: both !important;
    margin: 0 !important;
    position: relative !important;
    line-height: 1.6 !important;
}

/* Footer inner wrapper */
.custom-universal-footer .footer-content-wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
}

/* Footer rows */
.custom-universal-footer .footer-row {
    margin-bottom: 10px !important;
    font-size: 15px !important;
    line-height: 1.6 !important;
    box-sizing: border-box !important;
}

/* Footer links */
.custom-universal-footer .footer-link {
    color: #fff !important;
    text-decoration: none !important;
    font-weight: bold !important;
    display: inline-block !important;
    box-sizing: border-box !important;
}

/* Footer link hover effect */
.custom-universal-footer .footer-link:hover {
    opacity: 0.8 !important;
    text-decoration: underline !important;
}

/* Separator pipes */
.custom-universal-footer .footer-separator {
    margin: 0 10px !important;
    opacity: 0.4 !important;
    display: inline !important;
}

/* Subtext styling */
.custom-universal-footer .footer-subtext {
    font-size: 13px !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin: 15px 0 !important;
    box-sizing: border-box !important;
}

/* Brand text */
.custom-universal-footer .footer-brand {
    color: #ff00ff !important;
    font-size: 13px !important;
    font-weight: bold !important;
    letter-spacing: 1px !important;
    margin-top: 20px !important;
    display: block !important;
    box-sizing: border-box !important;
}

/* =====================================
   📱 MOBILE RESPONSIVE STYLES
   ===================================== */
@media (max-width: 600px) {

    /* Hide separator pipes on mobile */
    .custom-universal-footer .footer-separator {
        display: none !important;
    }

    /* Stack all items vertically except separators */
    .custom-universal-footer .footer-row>*:not(.footer-separator) {
        display: block !important;
        margin: 6px 0 !important;
    }
}