#ct-sticky-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
    background: var(--sticky-header-bg, #ffffff);
    box-shadow: var(--sticky-header-shadow, 0px 2px 5px rgba(0, 0, 0, 0.08));
    transition: opacity 0.4s ease-in-out, visibility 0.4s ease-in-out, transform 0.4s ease-in-out;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-20px);
}
