* {
    box-sizing: border-box;
}
body {
    margin: 0;
    padding: 0;
}
.shop-slideshow {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.shop-slideshow-main {
    position: relative;
    width: 100%;
    transition: height 0.5s ease;
}
.shop-slide {
    display: block;
    width: 100%;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.5s ease;
    border-radius:8px;
}
.shop-slide.active {
    opacity: 1;
    position: relative;
}
.shop-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.5);
    color: #fff;
    border: none;
    width: 40px;
    height: 40px;
    cursor: pointer;
	border-radius: 100%;
}
.shop-nav.prev { left: 10px; }
.shop-nav.next { right: 10px; }

.shop-thumbs {
    display: flex;
    overflow-x: auto;
    gap: 8px;
    padding: 10px;
}
.shop-thumb {
    width: 50px;
    height: 50px;
    object-fit: cover;
    cursor: pointer;
    opacity: 0.6;
    border-radius:8px;
}
.shop-thumb.active {
    opacity: 1;
    border: 2px solid #000;
}
