.cookie-banner{
    position: fixed;
    bottom: 12px;
    right: 12px;
    max-width: 350px;
    width: calc(100% - 40px);
    background: #fff;
    border-radius: 24px;
    padding: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,.15);
    color: #4CAF50;
    z-index: 9999;
    opacity: 0;
    transform: translateY(40px);
    pointer-events: none;
    transition: all 0.3s;
    font-family: system-ui, sans-serif;
}

.cookie-banner.show{
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.cookie-title{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.cookie-banner h5{
    margin: 0;
    font-size: 1.1rem;
    text-align: center;
}

.cookie-banner img{
    display: flex;
    width: auto;
    max-height: 50px;
}

.cookie-banner p{
    margin: 0 0 10px 0;
    font-size: 0.85rem;
    line-height: 1.4;
    color: #333;
    text-align: justify;
}

.cookie-banner a{
    color: #333;
    font-weight: bold;
}
.cookie-options{
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.cookie-options label{
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    cursor: pointer;
    color: #333;
}

.cookie-options input{
    width: 18px;
    height: 18px;
    accent-color: #333;
}

.cookie-buttons{
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.cookie-buttons button{
    flex: 1 1 45%;
    padding: 10px 8px;
    font-size: 0.95rem;
    font-weight: bold;
    border-radius: 12px;
    border: 1px solid #f1f1f1;
    cursor: pointer;
    background: #f9f9f9;
    color: #333;
    transition: all 0.3s;
}

.cookie-buttons button:hover{
    background: #f1f1f1;
}

.cookie-buttons .cookie-accept{
    background-color: #4CAF50;
    color: #fff;
    border: none;
}

.cookie-buttons .cookie-accept:hover{
    background: #4CA06F;
}

.cookie-manage{
    display: flex;
    position: fixed;
    bottom: 12px;
    right: 12px;
    background-color: #fafafa;
    color: #333;
    border: none;
    border-radius: 50%;
    padding: 6px;
    font-size: 1rem;
    cursor: pointer;
    z-index: 9998;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s;
}

.cookie-manage.show{
    opacity: 1;
    pointer-events: auto;
}

.cookie-manage svg{
    width: 40px;
    height: 40px;
    fill: #333;
}

@media screen and (max-width:768px){
    .cookie-banner{
        left: 20px;
        right: 20px;
        width: auto;
        max-width: none;
        padding: 14px;
    }

    .cookie-buttons{
        flex-direction: column;
    }

    .cookie-buttons button{
        flex: 1;
        width: 100%;
    }
}