/* Cookie Banner */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e1e1e;
    color: #fff;
    padding: 15px 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}
#cookie-banner .cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}
#cookie-banner p { margin: 0; font-size: 14px; }
#cookie-banner a { color: #D10024; }
.cookie-buttons { display: flex; gap: 10px; }
.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: bold;
}
#cookie-accept { background: #D10024; color: #fff; }
#cookie-reject { background: #444; color: #fff; }

/* Newsletter Modal */
#newsletter-modal {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9998;
}
.newsletter-box {
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    max-width: 400px;
    width: 90%;
    text-align: center;
    position: relative;
}
.newsletter-box .close-btn {
    position: absolute;
    top: 10px;
    right: 15px;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}
.newsletter-box h3 { margin: 0 0 10px; color: #D10024; }
.newsletter-box p { color: #666; margin-bottom: 20px; }
#newsletter-form { display: flex; gap: 10px; }
#newsletter-form input {
    flex: 1;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}
#newsletter-form button {
    padding: 12px 20px;
    background: #D10024;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}
#newsletter-msg { display: block; margin-top: 10px; color: #666; }
