.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--navy, #09213a);
    color: var(--white, #FFFFFF);
    padding: 1rem 1.5rem;
    font-family: 'Inter', 'Inter Fallback', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cookie-consent p {
    margin: 0;
    max-width: 620px;
    color: #cbd5e1;
}

.cookie-consent a {
    color: var(--orange, #0EA5E9);
    text-decoration: underline;
}

.cookie-consent a:hover {
    color: #38bdf8;
}

.cookie-consent-buttons {
    display: flex;
    gap: 0.625rem;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 0.5rem 1.25rem;
    border: none;
    border-radius: 6px;
    font-family: inherit;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.cookie-consent-btn.accept {
    background: var(--orange, #0EA5E9);
    color: var(--white, #FFFFFF);
}

.cookie-consent-btn.accept:hover {
    background: #0284c7;
}

.cookie-consent-btn.decline {
    background: transparent;
    color: #cbd5e1;
    border: 1px solid #334155;
}

.cookie-consent-btn.decline:hover {
    background: #1e293b;
    border-color: #475569;
}

@media (max-width: 600px) {
    .cookie-consent {
        flex-direction: column;
        text-align: center;
        padding: 1.25rem 1rem;
        gap: 1rem;
    }
    .cookie-consent-buttons {
        width: 100%;
        justify-content: center;
    }
}
