#cookie-banner {
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%) translateY(120px);
    z-index: 9999;
    width: calc(100% - 3rem);
    max-width: 680px;
    background: #fff;
    border: 1.5px solid rgba(245,149,104,.25);
    border-radius: 18px;
    box-shadow: 0 16px 48px rgba(245,149,104,.18), 0 4px 16px rgba(0,0,0,.08);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.25rem;
    flex-wrap: wrap;
    opacity: 0;
    transition: transform .45s cubic-bezier(.22,1,.36,1), opacity .35s ease;
    font-family: 'DM Sans', sans-serif;
}

#cookie-banner.visible {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

#cookie-banner.hiding {
    transform: translateX(-50%) translateY(120px);
    opacity: 0;
}

.cookie-banner-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #F59568, #7850B4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.cookie-banner-text {
    flex: 1;
    min-width: 200px;
}

.cookie-banner-text strong {
    display: block;
    font-size: .9rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: .2rem;
}

.cookie-banner-text p {
    font-size: .78rem;
    color: #8A6A55;
    line-height: 1.5;
    margin: 0;
}

.cookie-banner-text a {
    color: #F59568;
    font-weight: 600;
    text-decoration: none;
}

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

.cookie-banner-btns {
    display: flex;
    gap: .6rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: .55rem 1.1rem;
    border-radius: 50px;
    font-size: .82rem;
    font-weight: 700;
    cursor: pointer;
    border: none;
    font-family: 'DM Sans', sans-serif;
    transition: all .2s;
    white-space: nowrap;
}

.cookie-btn-refuse {
    background: transparent;
    color: #8A6A55;
    border: 1.5px solid rgba(245,149,104,.3);
}

.cookie-btn-refuse:hover {
    border-color: #F59568;
    color: #F59568;
}

.cookie-btn-accept {
    background: linear-gradient(135deg, #F59568, #7850B4);
    color: #fff;
    box-shadow: 0 4px 14px rgba(245,149,104,.35);
}

.cookie-btn-accept:hover {
    filter: brightness(1.08);
    transform: translateY(-1px);
}

@media (max-width: 500px) {
    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        bottom: 1rem;
        left: 1rem;
        right: 1rem;
        width: auto;
        transform: translateY(120px);
    }
    #cookie-banner.visible {
        transform: translateY(0);
    }
    #cookie-banner.hiding {
        transform: translateY(120px);
    }
    .cookie-banner-btns {
        width: 100%;
    }
    .cookie-btn {
        flex: 1;
        text-align: center;
    }
}
