/**
 * Cookie consent banner
 * Fixed bottom bar, white background, GDPR two-button layout.
 */
.lh-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.12);
    font-family: Inter, sans-serif;
    font-size: 14px;
    line-height: 1.5;
    color: #565656;
    z-index: 9998; /* below geo-banner (9999) */
    padding: 20px 0;
}

.lh-cookie-banner[hidden] {
    display: none !important;
}

.lh-cookie-banner__inner {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    gap: 24px;
}

.lh-cookie-banner__text {
    margin: 0;
    flex: 1;
}

.lh-cookie-banner__privacy {
    color: #4992BB;
    text-decoration: underline;
    white-space: nowrap;
}

.lh-cookie-banner__privacy:hover {
    color: #333;
}

.lh-cookie-banner__buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.lh-cookie-banner__btn {
    font-family: Roboto, sans-serif;
    font-weight: 500;
    font-size: 14px;
    padding: 10px 22px;
    border-radius: 10px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.lh-cookie-banner__btn--accept {
    background: #4992BB;
    color: #fff;
    border: 2px solid #4992BB;
}

.lh-cookie-banner__btn--accept:hover {
    background: #3a7a9e;
    border-color: #3a7a9e;
}

.lh-cookie-banner__btn--reject {
    background: transparent;
    color: #4992BB;
    border: 2px solid #4992BB;
}

.lh-cookie-banner__btn--reject:hover {
    background: #DCEBF3;
    color: #333;
}

@media (max-width: 768px) {
    .lh-cookie-banner {
        padding: 16px 0;
    }

    .lh-cookie-banner__inner {
        flex-direction: column;
        gap: 14px;
        text-align: center;
    }

    .lh-cookie-banner__buttons {
        width: 100%;
        flex-direction: column;
    }

    .lh-cookie-banner__btn {
        width: 100%;
        padding: 12px 22px;
    }
}
