.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: #0A0914;
    border-top: 1px solid rgba(255,255,255,0.12);
    padding: 18px 24px;
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner.is-vis { transform: translateY(0); }
.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-banner-text {
    color: #A8A6A4;
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    flex: 1 1 320px;
}
.cookie-banner-text a { color: #FB7185; text-decoration: underline; }
.cookie-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}
.cookie-btn {
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 9px 18px;
    border-radius: 6px;
    cursor: pointer;
    border: 1px solid rgba(255,255,255,0.16);
    background: transparent;
    color: #FFFFF0;
    transition: background 0.2s, border-color 0.2s;
}
.cookie-btn-reject:hover { background: rgba(255,255,255,0.06); }
.cookie-btn-accept {
    background: #E8376A;
    border-color: #E8376A;
}
.cookie-btn-accept:hover { background: #9D174D; border-color: #9D174D; }

@media (max-width: 640px) {
    .cookie-banner-inner { flex-direction: column; align-items: stretch; }
    .cookie-banner-actions { justify-content: flex-end; }
}
