/* COOKIE CONSENT */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 400px;
    max-width: 90%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
    padding: 24px;
    z-index: 9999;
    font-family: 'Inter', sans-serif;
    transform: translateY(0);
    opacity: 1;
    transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-banner.hidden {
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
}

.cookie-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.cookie-icon {
    width: 40px;
    height: 40px;
    background: #f1f5f9;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #0f172a;
    font-size: 1.2rem;
}

.cookie-text h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #0f172a;
    line-height: 1.2;
}

.cookie-text p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: #0d9488;
    text-decoration: underline;
    font-weight: 500;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
}

.btn-cookie-primary,
.btn-cookie-secondary {
    flex: 1;
    padding: 12px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.btn-cookie-primary {
    background: #0f172a;
    color: white;
}

.btn-cookie-primary:hover {
    background: #334155;
    transform: translateY(-1px);
}

.btn-cookie-secondary {
    background: #f1f5f9;
    color: #475569;
}

.btn-cookie-secondary:hover {
    background: #e2e8f0;
    color: #0f172a;
}

@media (max-width: 600px) {
    .cookie-banner {
        bottom: 20px;
        right: 20px;
        left: 20px;
        width: auto;
    }
}