/* ============================================================
   Cookie Banner – GDPR (fhd-cookie-banner)
   ============================================================ */
#fhd-cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #1a1a2e;
    color: #e0e0e0;
    border-top: 2px solid #6c63ff;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.35);
    font-size: 0.875rem;
    line-height: 1.6;
}

.fhd-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.fhd-cookie-text {
    flex: 1 1 300px;
}

.fhd-cookie-text strong {
    display: block;
    font-size: 0.95rem;
    color: #ffffff;
    margin-bottom: 0.25rem;
}

.fhd-cookie-text a.cookie-link {
    color: #a99bff;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.fhd-cookie-text a.cookie-link:hover {
    color: #ffffff;
}

.fhd-cookie-actions {
    display: flex;
    gap: 0.625rem;
    flex-wrap: wrap;
    align-items: center;
}

.fhd-cookie-actions .btn-cookie {
    display: inline-block;
    padding: 0.45rem 1.1rem;
    border-radius: 0.375rem;
    font-size: 0.825rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: opacity 0.2s ease, background 0.2s ease;
    white-space: nowrap;
}

.fhd-cookie-actions .btn-cookie:focus-visible {
    outline: 3px solid #a99bff;
    outline-offset: 2px;
}

#fhd-cookie-accept {
    background: #6c63ff;
    color: #ffffff;
}

#fhd-cookie-accept:hover {
    background: #5a52d5;
}

#fhd-cookie-reject {
    background: transparent;
    color: #e0e0e0;
    border: 1px solid #6c63ff;
}

#fhd-cookie-reject:hover {
    background: rgba(108, 99, 255, 0.15);
}

@media (max-width: 575.98px) {
    .fhd-cookie-inner {
        flex-direction: column;
        align-items: flex-start;
    }
    .fhd-cookie-actions {
        width: 100%;
        justify-content: flex-start;
    }
}
