.ct-slider__area,
.ct-slider__item {
    height: 990px;
    min-height: 990px;
    overflow: hidden;
}

/* Ensure full height usage */
.ct-slider__item .container {
    height: 100%;
}

.ct-banner-fixed {
    height: 100%;
    display: flex;
    align-items: center;
    position: relative;
}

/* CENTER IMAGE VERTICALLY */
.ct-banner-img-wrap {
    position: absolute;
    right: 0;
    top: 0;
    /* important */
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    /* ✅ vertical center */
    justify-content: center;
    z-index: 2;
}

/* 🔥 BIG PRODUCT IMAGE */
/* PRODUCT IMAGE FIXED SIZE */
.ct-banner-img {
    height: 530px;
    /* exact height you want */
    width: auto;
    object-fit: contain;
    transform: scale(1.05);
    /* slight premium boost */
}

/* Optional animation */
/* STABLE IMAGE (NO JUMP) */
.ct-banner-img {
    height: 530px;
    width: auto;
    object-fit: contain;
    transform: none;
    /* remove scaling */
    animation: none;
    /* remove initial animation */
}

@keyframes ctHeroZoom {
    from {
        opacity: 0;
        transform: scale(1.05) translateY(40px);
    }

    to {
        opacity: 1;
        transform: scale(1.15) translateY(0);
    }
}

/* ================================
   MOBILE RESPONSIVE
================================ */
@media (max-width: 991px) {

    .ct-slider__area,
    .ct-slider__item {
        height: auto;
        min-height: auto;
    }

    .ct-banner-fixed {
        flex-direction: column;
        text-align: center;
    }

    .ct-banner-img-wrap {
        position: relative;
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }

    .ct-banner-img {
        height: auto;
        max-height: 350px;
        transform: scale(1);
    }
}