/**
 * Cookie banner – Kurumsal çerez bildirimi
 * includes/sections/cookie_banner.php ile kullanılır.
 */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9999;
    background-color: #3a5a7c;
    color: #fff;
    padding: 1.5rem 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}
#cookie-banner .container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
#cookie-banner h2 {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
    #cookie-banner h2 { font-size: 1.875rem; }
}
#cookie-banner p {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}
@media (min-width: 768px) {
    #cookie-banner p { font-size: 1rem; }
}
#cookie-banner a {
    text-decoration: underline;
    color: inherit;
}
#cookie-banner a:hover {
    opacity: 0.8;
}
#cookie-banner .flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
}
#cookie-banner button {
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
    border-radius: 9999px;
    cursor: pointer;
    transition: background-color 0.2s;
}
#cookie-banner button:first-of-type,
#cookie-banner button:nth-of-type(2) {
    background-color: #0d5c93;
    color: #fff;
}
#cookie-banner button:first-of-type:hover,
#cookie-banner button:nth-of-type(2):hover {
    background-color: #094a75;
}
#cookie-banner button:last-of-type {
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
}
#cookie-banner button:last-of-type:hover {
    background: rgba(255, 255, 255, 0.1);
}
