﻿
        #cookieOverlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0,0,0,0.65);
            display: none;
            justify-content: center;
            align-items: center;
            z-index: 999999;
        }
        #cookieOverlay h2,
        #cookieOverlay h3 {
            font-size: 22px;
            color: #000;
            margin: 0;
            padding: 0 0 20px 0;
        }
        #cookieOverlay p{
            font-size:14px;
            line-height:22px;
            color:#000;
        }
        #cookieModal .cookie-buttons {
            margin-top:30px;
        }
        #cookieModal {
            background: #fff;
            width: 600px;
            max-width: 95%;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 15px 40px rgba(0,0,0,0.3);
            font-family: Arial, sans-serif;
        }
        
        .cookie-buttons button {
            width:32%;
        }

        .cookie-settings {
            margin-top: 0px;
            display: none;
        }

        .cookie-category {
            margin-bottom:15px;
        }
        .cookie-category label{
            margin-bottom:0px;
            font-size:12px;
            color:#000;
            display:flex;
            line-height: 18px;
        }
        .cookie-category label input {
            width: 16px;
            height: 16px;
            margin-right: 10px;
            margin-top: 0;
        }
        .cookie-category label input[type="checkbox"]::before {
            color: #000;
            font-size: 13px;
            line-height: 1;
            height: 12px;
            position: absolute;
            z-index: 1;
            left: 2px;
        }
        

        #cookieModal button {
            padding: 5px 10px;
            border-radius: 0;
            cursor: pointer;
            font-weight: 600;
            line-height: 22px;
            font-size: 14px; 
        }        

        .cookie-buttons .btn-primary {
            background: #de6d08;
            color: #fff;
            border: 1px solid #de6d08;
        }

        .cookie-buttons .btn-outline {
            background: #fff;
            border: 1px solid #de6d08;
            color: #000;
        }

        .cookie-buttons .btn-secondary {
            background: #de6d08;
            color: #fff;
            border: 2px solid #de6d08;
        }

        #cookie-settings-btn {
    position: fixed;
    z-index: 1000;
    bottom:55px;
    left: 2%;
    background: #956000;
    color: #fff;
    padding: 5px 12px;
    border-radius: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 12px;
    opacity:1;
    transition: all 0.3s ease;
    font-weight: 600;
}

#cookie-settings-btn:hover {
    background: #6e4700;
    transform: translateY(-3px);
}

#cookie-settings-btn i {
    font-size: 16px;
}
