.se-caas-sticky {
    position: sticky;
    top: 0;
    z-index: 10;
}

/* Mobile small screens */
@media (max-width: 429px) {
    .se-caas-sticky {
        min-height: 92px;
    }
}

/* Mobile/Tablet medium screens */
@media (min-width: 430px) and (max-width: 820px) {
    .se-caas-sticky {
        min-height: 88px;
    }
}

/* Desktop screens with height < 1181px */
@media (min-width: 821px) and (max-height: 1180px) {
    .se-caas-sticky {
        min-height: 88px;
    }
}

/* Desktop screens with height >= 1181px */
@media (min-width: 821px) and (min-height: 1181px) {
    .se-caas-sticky {
        min-height: 161px;
    }
}

/* Scrolled state - applies 64px min-height on scroll (overrides all media queries) */
.se-caas-sticky.se-caas-sticky-scrolled {
    min-height: 64px !important;
    transition: min-height 0.3s ease;
}