#cookieConsentBanner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(18, 18, 18, 0.97);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(200,155,123,0.22);
    box-shadow: 0 -4px 30px rgba(0,0,0,0.35);
    font-family: 'Montserrat', sans-serif;
    padding: 18px 24px;
    animation: cookieSlideUp 0.45s cubic-bezier(0.16,1,0.3,1);
}

#cookieConsentBanner .cookie-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

@keyframes cookieSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

#cookieConsentBanner .cookie-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    background: rgba(200,155,123,0.12);
    border: 1px solid rgba(200,155,123,0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

#cookieConsentBanner .cookie-body {
    flex: 1;
    min-width: 0;
}

#cookieConsentBanner .cookie-title {
    color: #f4f1ed;
    font-size: 0.78rem;
    font-weight: 700;
    margin-bottom: 2px;
    letter-spacing: 0.01em;
}

#cookieConsentBanner .cookie-desc {
    color: rgba(244,241,237,0.6);
    font-size: 0.7rem;
    line-height: 1.5;
}

#cookieConsentBanner .cookie-desc a {
    color: #C89B7B;
    text-decoration: underline;
    text-underline-offset: 2px;
}

#cookieConsentBanner .cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

#cookieBtnDecline {
    background: transparent;
    color: #f4f1ed;
    border: 1.5px solid rgba(244,241,237,0.45);
    padding: 7px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

#cookieBtnDecline:hover {
    border-color: rgba(244,241,237,0.8);
    color: #fff;
}

#cookieBtnAccept {
    background: #C89B7B;
    color: #fff;
    border: none;
    padding: 7px 16px;
    border-radius: 999px;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: background 0.2s, transform 0.15s;
    white-space: nowrap;
}

#cookieBtnAccept:hover {
    background: #b8855f;
    transform: translateY(-1px);
}

#cookieBtnAccept svg {
    width: 11px;
    height: 11px;
}

@media (max-width: 600px) {
    #cookieConsentBanner .cookie-inner {
        flex-wrap: wrap;
        gap: 14px;
    }

    #cookieConsentBanner .cookie-icon {
        display: none;
    }

    #cookieConsentBanner .cookie-actions {
        width: 100%;
    }

    #cookieBtnDecline,
    #cookieBtnAccept {
        flex: 1;
        justify-content: center;
    }
}
