﻿.cookie-banner {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: 1100px;
    background: #06131F;
    color: white;
    border-radius: 15px;
    padding: 20px 25px;
    box-shadow: 0 10px 35px rgba(0,0,0,.35);
    z-index: 9999;
}


.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}


.cookie-text {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}


    .cookie-text i {
        font-size: 35px;
        color: #FF7A00;
    }


    .cookie-text h5 {
        margin: 0 0 8px;
    }


    .cookie-text p {
        margin: 0;
        color: #d0d8df;
        font-size: 14px;
    }


    .cookie-text a {
        color: #2EA3F2;
        text-decoration: none;
    }



.cookie-actions {
    display: flex;
    gap: 10px;
}



.cookie-btn {
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
}


    .cookie-btn.accept {
        background: #FF7A00;
        color: white;
    }


    .cookie-btn.necessary {
        background: #2EA3F2;
        color: white;
    }


    .cookie-btn.customize {
        background: transparent;
        color: white;
        border: 1px solid rgba(255,255,255,.4);
    }


    .cookie-btn:hover {
        opacity: .85;
    }



@media(max-width:800px) {

    .cookie-content {
        flex-direction: column;
    }


    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
}

.cookie-settings {
    display: none;
    margin-top: 20px;
    padding: 20px;
    background: #11293D;
    border-radius: 12px;
}


    .cookie-settings h4 {
        margin-bottom: 15px;
    }


.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}


    .cookie-option input {
        width: 18px;
        height: 18px;
    }