/* Footer Base Styling */
.wn-footer {
    background-color: #ffffff;
    padding: 60px 20px 40px;
    color: #4a5568;
    font-family: 'Poppins', sans-serif;
    border-top: 1px solid #edf2f7;
    text-align: center;
}
.wn-footer-container { max-width: 1000px; margin: 0 auto; }

/* Trust Row & Badge */
.wn-trust-row {
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}
.wn-secure-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: #0d9276;
    background: rgba(13, 146, 118, 0.05);
    padding: 8px 16px;
    border-radius: 50px;
}
#digistore-badge-wrapper { min-height: 60px; display: flex; justify-content: center; align-items: center; }

/* Legal Links */
.wn-footer-links { margin-bottom: 25px; }
.wn-footer-links a {
    color: #718096;
    text-decoration: none;
    margin: 0 12px;
    font-size: 14px;
    transition: color 0.2s;
    cursor: pointer;
}
.wn-footer-links a:hover { color: #0d9276; text-decoration: underline; }

/* Disclaimer & Copyright */
.wn-disclaimer { max-width: 750px; margin: 0 auto 30px; font-size: 11px; color: #a0aec0; line-height: 1.6; }
.wn-copyright { font-size: 13px; color: #718096; margin-top: 20px; }

/* Popup Overlay */
.legal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.legal-overlay.active { display: flex; }

/* The Popup Card */
.legal-card {
    background: white;
    width: 100%;
    max-width: 600px;
    border-radius: 20px;
    position: relative;
    padding: 40px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    max-height: 80vh;
    overflow-y: auto;
    text-align: left;
}
.legal-close {
    position: absolute;
    top: 20px; right: 20px;
    font-size: 24px;
    color: #999;
    cursor: pointer;
    border: none;
    background: none;
}
.legal-content h2 { color: #0d9276; margin-bottom: 15px; font-family: 'Montserrat', sans-serif; }
.legal-content p { font-size: 14px; line-height: 1.6; margin-bottom: 15px; color: #444; }