.cookie-banner-box {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 320px;
    background: #d71920; /* Proje kırmızı tonu */
    color: #fff;
    padding: 25px 20px 15px 20px;
    border-radius: 8px;
    z-index: 10000;
    box-shadow: 0 10px 30px rgba(215, 25, 32, 0.3);
    font-family: 'Montserrat', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.cookie-banner-box .close-banner {
    position: absolute;
    top: 8px;
    right: 12px;
    background: none;
    border: none;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    line-height: 1;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.cookie-banner-box .close-banner:hover {
    opacity: 1;
}

.cookie-banner-box .cookie-content p {
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #fff;
    font-weight: 500;
}

.cookie-banner-box .cookie-content a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}

.cookie-banner-box .cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    align-items: center;
}

.cookie-banner-box .accept-link {
    background: #fff;
    border: none;
    color: #d71920;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 4px;
    text-transform: uppercase;
    transition: all 0.3s;
}

.cookie-banner-box .accept-link:hover {
    background: #f8f9fa;
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

/* Reddet butonu (Hukuki tam uyum için eklenebilir, şimdilik gizli veya pasif tutulabilir) */
.cookie-banner-box .reject-link {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s;
}

.cookie-banner-box .reject-link:hover {
    background: rgba(255, 255, 255, 0.1);
}

@media (max-width: 480px) {
    .cookie-banner-box {
        width: calc(100% - 40px);
        left: 20px;
        bottom: 20px;
    }
}
