/**
 * Erica Prints Footer V2 - Dark Theme
 * Version: 1.0.0
 */

/* ========================================
   Footer Container
   ======================================== */
.ep-footer-v2 {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #1a1a1a;
    color: #ffffff;
    margin-top: auto;
}

.ep-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Top Banner
   ======================================== */
.ep-footer-banner {
    background: linear-gradient(135deg, #9f1239, #e11d48);
    padding: 16px 24px;
    text-align: center;
}

.ep-footer-tagline {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.5px;
}

/* ========================================
   Main Footer Content
   ======================================== */
.ep-footer-main {
    padding: 48px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ep-footer-main .ep-footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
}

/* Brand Section */
.ep-footer-brand {
    padding-right: 24px;
}

.ep-footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
    display: inline-block;
    margin-bottom: 16px;
}

.ep-footer-logo:hover {
    color: #ffffff;
}

.ep-footer-description {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
}

/* Social Links */
.ep-footer-social {
    display: flex;
    gap: 12px;
}

.ep-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
}

.ep-social-link:hover {
    background: #e11d48;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Footer Columns */
.ep-footer-column {
    min-width: 0;
}

.ep-footer-heading {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
}

.ep-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.ep-footer-links li {
    margin-bottom: 12px;
}

.ep-footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ep-footer-links a:hover {
    color: #ffffff;
}

/* ========================================
   Trust Badges Section
   ======================================== */
.ep-footer-trust {
    padding: 32px 0;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.ep-trust-badges {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.ep-trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
}

.ep-trust-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #e11d48;
}

.ep-trust-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.ep-trust-title {
    font-size: 14px;
    font-weight: 600;
    color: #ffffff;
}

.ep-trust-subtitle {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
}

/* ========================================
   Bottom Bar
   ======================================== */
.ep-footer-bottom {
    padding: 24px 0;
}

.ep-footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

/* Payment Icons */
.ep-payment-icons {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.ep-payment-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
    border-radius: 4px;
    overflow: hidden;
    width: 42px;
    height: 26px;
}

.ep-payment-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

/* Legal Section */
.ep-footer-legal {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
}

.ep-copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.ep-legal-links {
    display: flex;
    gap: 16px;
}

.ep-legal-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.ep-legal-links a:hover {
    color: #ffffff;
}

/* ========================================
   Responsive Styles
   ======================================== */

/* Tablet */
@media (max-width: 1024px) {
    .ep-footer-main .ep-footer-container {
        grid-template-columns: 1fr 1fr 1fr 1fr;
        gap: 32px;
    }

    .ep-footer-brand {
        grid-column: 1 / -1;
        padding-right: 0;
        text-align: center;
        max-width: 400px;
        margin: 0 auto;
    }

    .ep-footer-social {
        justify-content: center;
    }

    .ep-trust-badges {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .ep-footer-container {
        padding: 0 16px;
    }

    .ep-footer-banner {
        padding: 12px 16px;
    }

    .ep-footer-tagline {
        font-size: 16px;
    }

    .ep-footer-main {
        padding: 32px 0;
    }

    .ep-footer-main .ep-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .ep-footer-brand {
        grid-column: 1 / -1;
        text-align: center;
    }

    .ep-footer-logo {
        font-size: 22px;
    }

    .ep-footer-heading {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .ep-footer-links li {
        margin-bottom: 10px;
    }

    .ep-footer-trust {
        padding: 24px 0;
    }

    .ep-trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }

    .ep-trust-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
    }

    .ep-trust-icon svg {
        width: 20px;
        height: 20px;
    }

    .ep-trust-title {
        font-size: 13px;
    }

    .ep-trust-subtitle {
        font-size: 11px;
    }

    .ep-footer-bottom {
        padding: 20px 0;
    }

    .ep-payment-icons {
        gap: 6px;
    }

    .ep-payment-icon {
        width: 36px;
        height: 22px;
    }
}

/* Small Mobile - keep 2-column layout */
@media (max-width: 480px) {
    .ep-footer-main .ep-footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }

    .ep-footer-column {
        text-align: left;
    }

    .ep-trust-badges {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .ep-trust-badge {
        justify-content: flex-start;
    }

    .ep-footer-legal {
        gap: 12px;
    }

    .ep-copyright {
        font-size: 11px;
        line-height: 1.4;
    }

    .ep-payment-icon {
        width: 34px;
        height: 21px;
    }
}

/* ========================================
   Hide default Kadence footer
   ======================================== */
.site-footer:not(.ep-footer-v2),
footer.site-footer .footer-widget-area,
footer.site-footer .site-footer-wrap,
.kadence-footer,
#colophon:not(.ep-footer-v2) {
    display: none !important;
}
