/* ========== COOKIE BANNER ========== */

#cookieBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(20, 20, 20, 0.98) 0%, rgba(10, 10, 10, 0.99) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    z-index: 998;
    backdrop-filter: blur(20px);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.4);
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    flex-wrap: wrap;
}

#cookieBanner.show {
    transform: translateY(0);
}

.cookie-content {
    flex: 1;
    min-width: 250px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.cookie-icon {
    font-size: 28px;
    line-height: 1;
    flex-shrink: 0;
}

.cookie-text {
    flex: 1;
}

.cookie-text p {
    margin: 0;
    font-size: 13px;
    color: #b0b0b0;
    line-height: 1.5;
}

.cookie-text a {
    color: #ffffff;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.cookie-text a:hover {
    color: #e0e0e0;
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

#acceptCookies {
    background: #ffffff;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.1);
    white-space: nowrap;
}

#acceptCookies:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.15);
}

#acceptCookies:active {
    transform: translateY(0);
}

#closeCookies {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #b0b0b0;
    padding: 10px 16px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

#closeCookies:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.05);
}

/* Mobile responsive */
@media (max-width: 768px) {
    #cookieBanner {
        padding: 16px;
        gap: 12px;
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .cookie-text p {
        font-size: 12px;
    }
    
    .cookie-actions {
        width: 100%;
        justify-content: flex-end;
    }
    
    #acceptCookies,
    #closeCookies {
        font-size: 12px;
        padding: 9px 16px;
    }
}

@media (max-width: 480px) {
    #cookieBanner {
        padding: 12px;
    }
    
    .cookie-icon {
        font-size: 24px;
    }
    
    .cookie-text p {
        font-size: 11px;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    #acceptCookies,
    #closeCookies {
        width: 100%;
    }
}
