/* @keyframes cookieSlideUp {
    from { transform: translate(-50%, 100%); opacity: 0; }
    to { transform: translate(-50%, 0); opacity: 1; }
}


#custom-cookie-banner.cookie-banner-container {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999999;
    width: 90%;
    max-width: 1100px;
    animation: cookieSlideUp 0.5s ease-out forwards;
}


#custom-cookie-banner .cookie-banner {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    padding: 20px 24px;
    display: flex;
    align-items: center; 
    justify-content: space-between;
    gap: 24px;
    box-sizing: border-box;
}


#custom-cookie-banner .cookie-content {
    display: flex;
    align-items: center; 
    gap: 16px;
    flex: 1; 
}

#custom-cookie-banner .cookie-icon img {
    width: 45px;
    height: 45px;
    object-fit: contain;
    display: block;
    flex-shrink: 0; 
}


#custom-cookie-banner .cookie-text h3 {
    margin: 0 0 4px 0;
    font-size: 18px;
    color: #1a1a1a;
    font-weight: 700;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.2;
}

#custom-cookie-banner .cookie-text p {
    margin: 0;
    font-size: 14px;
    color: #555;
    line-height: 1.5;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

#custom-cookie-banner .cookie-text a {
    color: #3b66d1;
    text-decoration: none;
    font-weight: 600;
}

#custom-cookie-banner .cookie-text a:hover {
    text-decoration: underline;
}


#custom-cookie-banner .cookie-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0; 
}


#custom-cookie-banner .btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    border: 1px solid transparent;
    font-family: inherit;
    text-align: center;
    display: inline-block;
}


#custom-cookie-banner .btn-outline {
    background-color: transparent;
    border-color: #d1d5db; 
    color: #4b5563;
}

#custom-cookie-banner .btn-outline:hover {
    background-color: #f3f4f6;
    border-color: #9ca3af;
    color: #111827;
}


#custom-cookie-banner .btn-primary {
    background-color: #3b66d1;
    color: #ffffff;
    box-shadow: 0 2px 5px rgba(59, 102, 209, 0.3);
}

#custom-cookie-banner .btn-primary:hover {
    background-color: #e9efff;
    color: #3b66d1; 
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(59, 102, 209, 0.4);
}



@media (max-width: 900px) {
    #custom-cookie-banner .cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    #custom-cookie-banner .cookie-content {
        width: 100%;
    }

    #custom-cookie-banner .cookie-actions {
        width: 100%;
        display: flex;
        justify-content: flex-start;
    }
    
    #custom-cookie-banner .btn {
        min-width: 120px; 
    }
}

@media (max-width: 600px) {
    #custom-cookie-banner.cookie-banner-container {
        width: 95%; 
        bottom: 15px;
    }

    #custom-cookie-banner .cookie-banner {
        padding: 16px;
        gap: 20px;
    }

    #custom-cookie-banner .cookie-content {
        align-items: flex-start;
    }

    #custom-cookie-banner .cookie-icon img {
        width: 157px; 
        height: 94px;
        margin-top: 2px;
    }

    #custom-cookie-banner .cookie-text h3 {
        font-size: 16px;
    }

    #custom-cookie-banner .cookie-text p {
        font-size: 13px;
    }

    #custom-cookie-banner .cookie-actions {
        width: 100%;
        flex-direction: row; 
    }

    #custom-cookie-banner .btn {
        flex: 1; 
        padding: 12px 10px;
        font-size: 13px;
        min-width: auto;
    }
}

@media (max-width: 360px) {
    #custom-cookie-banner .cookie-actions {
        flex-direction: column;
    }
    
    #custom-cookie-banner .btn {
        width: 100%;
    }
} */