.seller-curation{
    margin:60px 0;
}

.seller-curation-header{
    display:flex;
    gap:32px;
    align-items:center;
    margin-bottom:40px;
}

.seller-curation-profile{
    flex:0 0 220px;
}

.seller-curation-profile img{
    width:220px;
    height:280px;
    object-fit:contain;
    object-position:center bottom;
    display:block;
    border-radius:16px;
    background:#f7f7f7;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
}

.seller-curation-copy{
    flex:1;
    max-width:800px;
}

.seller-curation-copy h2{
    margin:0 0 12px;
    font-size:42px;
    line-height:1.05;
    font-weight:700;
    letter-spacing:-1px;
}

.seller-curation-copy p{
    margin:0;
    font-size:18px;
    line-height:1.75;
    color:#666;
}

.seller-carousel{
    overflow:hidden;
    padding:8px 2px 20px;
}

.seller-carousel .swiper-wrapper{
    align-items:stretch;
}

.seller-carousel .swiper-slide{
    height:auto;
}

.seller-card{
    height:100%;
    display:flex;
    flex-direction:column;
    background:#fff;
    border:1px solid #ececec;
    border-radius:16px;
    overflow:hidden;
    transition:.25s ease;
    box-shadow:0 4px 18px rgba(0,0,0,.05);
}

.seller-card:hover{
    transform:translateY(-5px);
    box-shadow:0 16px 35px rgba(0,0,0,.10);
}

.seller-card img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:cover;
    display:block;
    transition:transform .35s ease;
}

.seller-card:hover img{
    transform:scale(1.04);
}

.seller-card-body{
    padding:18px;
    display:flex;
    flex-direction:column;
    flex:1;
}

.seller-card-body h3{
    margin:0 0 8px;
    font-size:17px;
    font-weight:600;
    color:#111;
}

.seller-card-body p{
    margin:0;
    font-size:14px;
    line-height:1.6;
    color:#777;
    overflow:hidden;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
}

.seller-carousel .swiper-button-next,
.seller-carousel .swiper-button-prev{
    width:44px;
    height:44px;
    border-radius:50%;
    background:#fff;
    color:#111;
    box-shadow:0 8px 24px rgba(0,0,0,.12);
}

.seller-carousel .swiper-button-next:after,
.seller-carousel .swiper-button-prev:after{
    font-size:15px;
    font-weight:700;
}

.seller-carousel .swiper-button-disabled{
    opacity:.25;
}

@media(max-width:768px){

    .seller-curation-header{
        flex-direction:column;
        text-align:center;
    }

    .seller-curation-profile{
        flex:none;
    }

}