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

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

.cap-custom-footer {
    background-color: var(--solera-jacarta);
    color: #fff;
    border-top: 1px solid #e0e0e0;
}

.cap-footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    gap: 0.5rem;
    padding: 1.5rem 0;
}

.cap-footer-content a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cap-footer-content a:hover {
    color: #ddd;
}

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

.cap-footer-left img {
    max-width: 250px;
    height: auto;
    margin-bottom: 0.5rem;
}

.cap-footer-left p {
    margin: 0 !important;
    line-height: 16px !important;
}

.cap-footer-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-start;
    gap: 1.4rem;
    font-size: 1rem;
}

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

@media (max-width: 768px) {
    .cap-footer-content {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem 1rem;
    }

    .cap-footer-left,
    .cap-footer-right {
        width: 100%;
        align-items: center;
        text-align: center;
    }
}
