/* =============================
   Identifix Base Footer Styles
   Used across all page types (main-store, product-pages)
   ============================= */

.site-footer {
    display: none !important;
}

.identifix-custom-footer {
    background-color: var(--solera-jacarta);
    color: var(--solera-white);
}

.identifix-footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
}

.identifix-footer-content a {
    color: var(--solera-white);
    text-decoration: none;
}

.identifix-footer-content a:hover {
    color: var(--solera-gray);
}

.identifix-footer-left {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.identifix-footer-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
}

/* =============================
   Mobile Responsive Footer
   ============================= */

@media (max-width: 768px) {
    .identifix-footer-content {
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .identifix-footer-left {
        text-align: center;
    }

    .identifix-footer-right {
        text-align: center;
        align-items: center;
    }
}
