#cookieBanner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    border-top: 1px solid rgba(0,168,117,0.2);
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}

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

.cookie-banner-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
}

.cookie-banner-text {
    margin: 0;
    color: #111;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
    min-width: 280px;
}

.cookie-banner-text a {
    color: #00A875;
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

#cookieReject {
    background: transparent;
    color: #666;
    border: 1px solid #ccc;
    padding: 10px 20px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.2s;
}

#cookieAccept {
    background: #00A875;
    color: #fff;
    border: none;
    padding: 10px 28px;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s;
}
