html{
    overflow-x: hidden !important;
}
.bg-navy {
    background-color: #252f51 !important;
}

.w-100 {
    width: 100%;
}

.color-navy {
    color: #252f51;
}

.form-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 36px;
    color: white;
}

.bg-animation {
    background: linear-gradient(90deg, #17212D, #ffffff, #17212D);
    background-size: 600% 600%;
    -webkit-animation: AnimationName 30s ease infinite;
    -moz-animation: AnimationName 30s ease infinite;
    animation: AnimationName 30s ease infinite;
}

@-webkit-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@-moz-keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@keyframes AnimationName {
    0% {
        background-position: 0% 50%
    }

    50% {
        background-position: 100% 50%
    }

    100% {
        background-position: 0% 50%
    }
}

@media screen and (max-width:1024px) {
    .bg-animation {
        background: transparent;
    }
}

.zoom-container {
    position: relative;
    overflow: hidden;
}

.zoom-containe img:hover {
    transform: scale(1.5);
    transition: transform 0.3s ease;
}

/* Fixed Zoom Wrapper */
#zoomWrapper.fixed {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin-left: 0 !important;
    z-index: 9999;
}

/* Blur effect on product details */
#productDetailsSection.blurred {
    filter: blur(5px);
    pointer-events: none;
    user-select: none;
}

.product-main-img {
    transition: opacity 0.2s ease;
}
