/* ================================================================
   cookie-consent.css — GDPR/IT Act Cookie Consent Banner
   ================================================================ */

#cookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #18181b;
    border-top: 1px solid #3f3f46;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
                opacity 0.3s ease;
}

.cc-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cc-text {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 260px;
}

.cc-icon {
    font-size: 1.4rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.cc-text strong {
    display: block;
    color: #e4e4e7;
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 3px;
}

.cc-text p {
    color: #a1a1aa;
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0;
}

.cc-link {
    color: #8b5cf6;
    text-decoration: none;
}
.cc-link:hover { text-decoration: underline; }

.cc-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.cc-btn {
    padding: 9px 20px;
    border-radius: 8px;
    font-size: 0.82rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: inherit;
}

.cc-btn-primary {
    background: linear-gradient(135deg, #7c3aed, #8b5cf6);
    color: #fff;
    box-shadow: 0 4px 16px rgba(139,92,246,0.4);
}
.cc-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(139,92,246,0.55);
}

.cc-btn-ghost {
    background: transparent;
    color: #a1a1aa;
    border: 1px solid #3f3f46;
}
.cc-btn-ghost:hover {
    background: #27272a;
    color: #e4e4e7;
}

@media (max-width: 600px) {
    .cc-inner { padding: 14px 16px; gap: 14px; }
    .cc-actions { width: 100%; justify-content: flex-end; }
}
