.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: var(--heading);
    color: #fff;
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.34, 1.28, 0.64, 1);
    box-shadow: 0 -8px 32px rgba(0,0,0,0.2);
}

.cookie-consent.show {
    transform: translateY(0);
}

.cookie-consent-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 36px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.cookie-consent-text {
    flex: 1;
    font-size: 13.5px;
    line-height: 1.6;
    color: rgba(255,255,255,0.85);
}

.cookie-consent-text a {
    color: var(--primary, #0B5ED7);
    text-decoration: none;
    font-weight: 500;
}

.cookie-consent-text a:hover {
    text-decoration: underline;
}

.cookie-consent-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-consent-btn {
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    border: none;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.cookie-consent-btn--accept {
    background: var(--primary, #0B5ED7);
    color: #fff;
}

.cookie-consent-btn--accept:hover {
    background: var(--primary-dark, #084BB0);
}

.cookie-consent-btn--settings {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1.5px solid rgba(255,255,255,0.2);
}

.cookie-consent-btn--settings:hover {
    border-color: rgba(255,255,255,0.5);
    color: #fff;
}

@media (max-width: 768px) {
    .cookie-consent-inner {
        flex-direction: column;
        padding: 16px 20px;
        gap: 14px;
        text-align: center;
    }

    .cookie-consent-actions {
        width: 100%;
        justify-content: center;
    }

    .cookie-consent-btn {
        flex: 1;
        text-align: center;
        padding: 10px 16px;
        font-size: 12px;
    }
}
