.shop-swiper-outer {
    position: relative;
    padding-bottom: 36px; 
}

.shop-swiper {
    overflow: hidden;
    padding: 8px 4px;
}

.shop-swiper .swiper-slide {
    height: auto;
}

.shop-slide-inner img {
    width: 100%;
    height: 190px;
    object-fit: cover;
    display: block;
}

.shop-slide-inner {
    background: transparent;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.shop-slide-inner img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: contain;
    display: block;
}

.shop-slide-title {
    font-size: 13px;
    font-weight: 600;
    margin: 10px 10px 0;
    line-height: 1.3;
}

.shop-slide-price {
    font-size: 12px;
    margin: 0 10px 0;
    opacity: 0.75;
}

/* Pagination dots */
.shop-swiper-pagination {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 14px;
}

.shop-swiper-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    opacity: 1;
    transition: background 0.2s ease, transform 0.2s ease;
}

.shop-swiper-pagination .swiper-pagination-bullet-active {
    background: #ffffff;
    transform: scale(1.2);
}

@media (max-width: 768px) {
    .shop-slide-title {
        margin: 5px 0;
    }
}


@media (max-width: 400px) {
    .shop-slide-title {
    margin: 5px 0;
    }
    .shop-swiper-outer {
        padding-bottom: 0; 
    }
    .shop-slide-inner img {
    height: 180px;
  }
}

@media (max-width: 360px) {
    .shop-slide-inner img {
        height: 40vw;
    }
}

