#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    background: #ffffff;
    border-top: 4px solid #FF7F11;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.15);
    font-family: inherit;
    z-index: 9999;
    overflow: hidden;
    height: 40px;
    border-radius: 12px 12px 0 0;
    cursor: pointer;
    transition: height 0.4s ease, transform 0.3s ease, bottom 0.5s ease, opacity 0.5s ease;
    opacity: 1;
}

#cookie-banner.hidden {
    opacity: 0;
    pointer-events: none;
    height: 0;
}

.cookie-banner-collapsed {
    height: 40px;
    line-height: 40px;
    padding: 0 15px;
    font-size: 13px;
    color: #333;
    text-align: center;
}

#expand-banner {
    color: #FF7F11;
    text-decoration: underline;
    cursor: pointer;
}

.cookie-banner-content {
    max-width: 480px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    color: #333;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.4s ease;
    transform: translateY(20px);
    text-align: center;
}

#cookie-banner.expanded .cookie-banner-content {
    opacity: 1;
    transform: translateY(0);
}

#cookie-banner.expanded .cookie-banner-collapsed {
    display: none;
}

.cookie-banner-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-options {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    font-size: 13px;
    justify-content: center;
}
.cookie-options label {
    display: flex;
    align-items: center;
    gap: 5px;
}
.cookie-options input[type="checkbox"] {
    accent-color: #FF7F11;
    width: 16px;
    height: 16px;
}

.cookie-actions {
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 10px;
}
.cookie-btn {
    padding: 8px 14px;
    border-radius: 8px;
    border: none;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s ease;
}
.cookie-btn.accept {
    background: #FF7F11;
    color: #fff;
}
.cookie-btn.accept:hover {
    background: #e66f0f;
}
.cookie-btn.reject {
    background: #1A3D6D;
    color: #fff;
}
.cookie-btn.reject:hover {
    background: #16345d;
}

#manage-cookies-banner {
    position: fixed;
    bottom: 15px;
    right: 15px;
    background: #1A3D6D;
    color: #fff;
    border: none;
    padding: 8px 12px;
    border-radius: 30px;
    font-size: 12px;
    cursor: pointer;
    z-index: 9999;
    transition: transform 0.3s ease, background 0.2s ease;
}
#manage-cookies-banner:hover {
    background: #16345d;
    transform: translateY(-3px);
}