.cookie-consent-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--accent-elite);
    color: #fff;
    z-index: 9999;
    padding: 16px 24px;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

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

.cookie-consent-banner.hide {
    transform: translateY(100%);
}

.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cookie-consent-text {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.cookie-consent-link {
    color: var(--accent-green-light);
    text-decoration: underline;
}

.cookie-consent-link:hover {
    color: var(--accent-green);
}

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

.cookie-consent-btn {
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    border: 2px solid transparent;
    transition: background 0.2s, border-color 0.2s, opacity 0.2s;
    white-space: nowrap;
    min-height: 44px;
    min-width: 44px;
}

.cookie-consent-btn-accept {
    background: var(--accent-green);
    color: #fff;
    border-color: var(--accent-green);
}

.cookie-consent-btn-accept:hover {
    background: var(--accent-green-dark);
    border-color: var(--accent-green-dark);
}

.cookie-consent-btn-outline {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.cookie-consent-btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Mobile: stack vertically */
@media (max-width: 600px) {
    .cookie-consent-content {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .cookie-consent-actions {
        width: 100%;
        flex-direction: column;
    }

    .cookie-consent-btn {
        width: 100%;
    }
}
