#email-popup {
    position: fixed;
    bottom: -400px;
    right: 20px;
    width: 320px;
    background: #ffffff;
    padding: 22px;
    border-radius: 14px;
    box-shadow: 0 6px 25px rgba(0,0,0,0.25);
    transition: bottom 0.4s ease;
    z-index: 9999;
    font-family: sans-serif;
}

#email-popup.show {
    bottom: 20px;
}

#email-popup h2 {
    margin: 0 0 10px 0;
    font-size: 20px;
    font-weight: 700;
}

#email-popup p {
    font-size: 14px;
    margin-bottom: 12px;
}

#email-popup input {
    width: 100%;
    padding: 10px;
    margin: 10px 0 12px 0;
    border: 1px solid #ccc;
    border-radius: 6px;
}

#email-popup button {
    width: 100%;
    padding: 10px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

#email-popup button:hover {
    background: #333;
}

.skip-link {
    display: block;
    margin-top: 10px;
    font-size: 13px;
    text-align: center;
    cursor: pointer;
    color: #666;
}

#popup-close {
    position: absolute;
    top: 8px;
    right: 12px;
    cursor: pointer;
    font-size: 20px;
}
