/* Preloader Styles */
#preloader-active {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease, visibility 0s linear 0.6s;
}

.preloader-inner {
    text-align: center;
}

.loader {
    width: 100px;
    height: 20px;
    margin: 20px auto;
    position: relative;
}

.bar {
    position: absolute;
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}

.bar::before,
.bar::after {
    content: "";
    position: absolute;
    display: block;
    width: 10px;
    height: 10px;
    background: #088178;
    opacity: 0;
    border-radius: 10px;
    animation: slideleft 3s ease-in-out infinite;
}

.bar1::before {
    animation-delay: 0.00s;
}

.bar1::after {
    animation-delay: 0.3s;
}

.bar2::before {
    animation-delay: 0.60s;
}

.bar2::after {
    animation-delay: 0.90s;
}

.bar3::before {
    animation-delay: 1.20s;
}

.bar3::after {
    animation-delay: 1.50s;
}

@keyframes slideleft {
    0% {
        opacity: 0;
        transform: translateX(-50px);
    }
    20% {
        opacity: 1;
    }
    80% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(50px);
    }
}

/* Hide body content until loaded */
body:not(.loaded) #main-content {
    opacity: 0;
    visibility: hidden;
}

body.loaded #main-content {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease, visibility 0s linear;
}

body.loaded #preloader-active {
    opacity: 0;
    visibility: hidden;
}

@media only screen and (max-width: 769px) {
    .quick-view-btn {
        display: none !important;
    }
}
@media only screen and (max-width: 425px) {
    .selec-btns {
        justify-content: center;
    }
    .detail-extralink {
        justify-content: center;
    }
}
