/* COOKIE BANNER */

#nc-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #111c;
    backdrop-filter: blur(8px);
    border-top: 1px solid #ffffff22;
    padding: 1rem 2rem;
    animation: slideUp 0.3s ease-out;
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
}

.nc-cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.nc-cookie-content p {
    margin: 0;
    color: #ffffffcc !important;
    font-size: 0.95rem;
    flex: 1;
    min-width: 200px;
}

.nc-cookie-content a {
    color: #ff6a00 !important;
    text-decoration: none;
    transition: color 0.2s;
}

.nc-cookie-content a:hover {
    color: #ff8533 !important;
    text-decoration: underline;
}

.nc-cookie-buttons {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}

#nc-cookie-accept,
#nc-cookie-reject {
    border: none;
    padding: 0.5rem 1.4rem;
    border-radius: 20px;
    cursor: pointer;
    font-family: englebert, sans-serif;
    font-size: 0.95rem;
    transition: all 0.25s;
}

#nc-cookie-accept {
    background: #ff6a00;
    color: #fff !important;
}

#nc-cookie-accept:hover {
    background: #ff8533;
    box-shadow: 0 0 12px #ff6a0077;
}

#nc-cookie-reject {
    background: transparent;
    color: #ffffffaa !important;
    border: 1px solid #ffffff44;
}

#nc-cookie-reject:hover {
    background: #ffffff11;
    color: #fff !important;
}

/* END OF COOKIE BANNER */
