﻿
.cookie-overlay {
    display: none;
    position: fixed !important;
    inset: 0; /* top:0 left:0 width:100% height:100% yerine */
    background: rgba(0,0,0,0.75);
    backdrop-filter: blur(5px);
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 9998 !important;
    pointer-events: auto !important;
}


        .cookie-container {
            background: #ffffff;
            width: 100%;
            max-width: 520px; 
            border-radius: 20px;
            padding: 40px 42px; 
            box-shadow: 0 0 48px rgba(0,0,0,0.28);
            text-align: left;
        }

        .cookie-logo {
            width: 70px;
            height: auto;
        }

        .cookie-title {
            font-size: 20px;
            font-weight: 700;
            margin: 0;
            color: #222;
        }

        .cookie-desc {
            font-size: 14px;
            color: #444;
            margin: 15px 0;
            line-height: 1.5;
        }

        .cookie-settings {
            background: #f1f1f1;
            border-radius: 12px;
            padding: 12px;
            margin: 20px 0;
        }

        .cookie-option {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 10px;
            font-size: 14px;
        }

        .badge-required {
            background: #009739;
            color: white;
            font-size: 10px;
            padding: 2px 6px;
            border-radius: 5px;
        }
        .cookie-btn.main:hover {
            background: #007d2f; 
            color: #fff;
        }

        .cookie-btn.light:hover {
            background: #111; 
            color: #fff;
        }

        .cookie-btn.border-btn:hover {
            background: #e8e8e8; 
            border-color: #999;
            color: #111;
        }
        .cookie-buttons {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .cookie-btn {
            padding: 12px;
            border-radius: 8px;
            border: none;
            font-size: 14px;
            font-weight: 600;
            cursor: pointer;
        }

        .main {
            background: #009739;
            color: #fff;
        }

        .light {
            background: #222;
            color: #fff;
        }

        .border-btn {
            background: transparent;
            border: 1px solid #bbb;
            color: #222;
        }

        .cookie-link {
            display: block;
            text-align: center;
            margin-top: 14px;
            font-size: 12px;
            color: #009739;
            text-decoration: underline;
        }

        


