/**
 * ROSTTYA Legal Footer Styles (D2C Apparel)
 * BEM naming: .rosttya-legal-footer__{section}
 *
 * Design: warm neutral palette suitable for contemporary womenswear
 * Background: deep charcoal #1a1a1a (matches editorial fashion aesthetic)
 * Accent: warm camel #d4a373 (D2C apparel default, can adjust to brand color later)
 */

.rosttya-legal-footer {
    background: #1a1a1a;
    color: #f5f5f5;
    padding: 40px 24px 32px;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Helvetica Neue", Arial, sans-serif;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

.rosttya-legal-footer__container {
    max-width: 1200px;
    margin: 0 auto;
}

.rosttya-legal-footer__brand {
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    font-size: 14px;
}

.rosttya-legal-footer__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 0;
    margin-bottom: 24px;
}

.rosttya-legal-footer__link {
    color: #f5f5f5;
    text-decoration: none;
    transition: color 0.15s ease;
    padding: 0 4px;
}

.rosttya-legal-footer__link:hover,
.rosttya-legal-footer__link:focus {
    color: #d4a373;
    text-decoration: underline;
}

/* Prominent modifier for Returns & Refunds link (Stripe risk team checks this) */
.rosttya-legal-footer__link--prominent {
    font-weight: 600;
}

.rosttya-legal-footer__separator {
    color: #666;
    margin: 0 6px;
    user-select: none;
}

.rosttya-legal-footer__company-block {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #333;
}

.rosttya-legal-footer__company {
    color: #cccccc;
    font-size: 12px;
}

.rosttya-legal-footer__address {
    color: #999;
    font-size: 12px;
    margin-top: 6px;
}

.rosttya-legal-footer__vat {
    color: #999;
    font-size: 12px;
    margin-top: 6px;
}

.rosttya-legal-footer__contact {
    color: #cccccc;
    font-size: 12px;
    margin-top: 14px;
}

.rosttya-legal-footer__contact a {
    color: #cccccc;
    text-decoration: underline;
}

.rosttya-legal-footer__contact a:hover {
    color: #d4a373;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .rosttya-legal-footer {
        padding: 32px 16px 24px;
    }

    .rosttya-legal-footer__nav {
        flex-direction: column;
        gap: 8px;
    }

    .rosttya-legal-footer__separator {
        display: none;
    }

    .rosttya-legal-footer__link {
        font-size: 13px;
        padding: 4px 0;
    }
}

/* Hide Astra default footer (both legacy Customizer footer and modern HFB footer)
 * Defensive: covers both Astra naming conventions to handle templates using either system.
 * Preserves: Scroll to Top button, SureCart mini-cart, and other elements outside the .site-footer container.
 */

/* Legacy Astra Customizer footer (footer-layout = 2-equal / 4-grid / etc.) */
.site-primary-footer-wrap,
.site-below-footer-wrap,
.footer-sml-section-1,
.footer-sml-section-2,
.footer-adv,
.footer-adv-overlay,
.ast-small-footer {
    display: none !important;
}

/* Modern Astra Header/Footer Builder (HFB) */
.ast-below-footer-section,
.ast-above-footer-section,
[data-section="section-footer-primary"],
[data-section="section-below-footer"] {
    display: none !important;
}
