.coming-soon-horizontal {
    display: flex; /* side-by-side layout */
    width: 200vw; /* total width = 2 screens */
    height: 100vh;
    overflow-x: auto; /* allow horizontal scroll */
    overflow-y: hidden;
    scroll-snap-type: x mandatory; /* snap between pages */
    scroll-behavior: smooth; /* smooth scroll */
    -webkit-overflow-scrolling: touch; /* mobile support */
}

.coming-soon-content {
    flex: 0 0 50vw; /* each section takes full screen width */
    height: 100vh;
    background-size: contain; /* show full image */
    background-repeat: no-repeat;
    background-position: center;
    scroll-snap-align: start;
    background-color: #fff;
}

/* Optional text styling */
.coming-soon-content h1 {
    position: absolute;
    top: 20px;
    width: 100%;
    text-align: center;
    color: #333;
    font-size: 32px;
    font-weight: bold;
    z-index: 5;
}

/* Your actual images */
.section1 {
    background-image: url("/webtheme/images/collections/uniqpuroperation1.png");
}

.section2 {
    background-image: url("/webtheme/images/collections/uniqpuroperation2.png");
}

/* Product Page – Thumbnail Styling */
.thumbnail-wrapper {
    width: 85px;
    height: 110px;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
    cursor: pointer;
}

.thumbnail-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Optional: highlight on hover */
.thumbnail-wrapper:hover {
    border-color: #c8a079;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
}

.img-fit {
    width: 100%;
    object-fit: cover;
    background: #f7f7f7;
    padding: 5px;
}

.related-product .aiz-card-box {
    height: auto !important;
}

.related-product .slick-slide {
    height: auto !important;
}

.related-product .slick-slide img {
    height: 220px !important; /* final perfect height */
}

.list-pagination .pagination {
    justify-content: center;
}
