.myyse-carousel-wrapper{
    position: relative;
    width: 100%;
    max-width: 100%;
    padding: 0 50px;
    box-sizing: border-box;
    overflow: hidden;
}
.myyse-carousel-scroller{
    display: flex;
    gap: 16px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 10px 0;
    max-width: 100%;
}
.myyse-carousel-scroller::-webkit-scrollbar{
    display: none;
}
.myyse-carousel-card{
    flex: 0 0 220px;
    scroll-snap-align: start;
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.15) !important;
    overflow: hidden;
    transition: box-shadow 0.2s;
}
.myyse-carousel-card:hover{
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
}
.myyse-carousel-card-image{
    width: 100%;
    height: 200px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #fafafa;
    position: relative;
}
.myyse-carousel-card-body{
    padding: 10px;
    text-align: center;
}
.myyse-carousel-card-title{
    font-weight: 600;
    font-size: 14px;
    line-height: 1.3;
    color: var(--e-global-color-primary, #333);
    margin-bottom: 5px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.myyse-carousel-card-price{
    font-size: 18px;
    font-weight: bold;
    color: #333;
    margin: 4px 0;
}
.myyse-carousel-card-condition{
    font-size: 12px;
    color: #555;
}
.myyse-carousel-card-size{
    font-size: 12px;
    color: #555;
}
.myyse-carousel-card-location{
    font-size: 12px;
    color: #777;
}
.myyse-carousel-card .sold-label{
    position: absolute;
    top: 10px;
    right: 5px;
    width: 80px;
    height: 55px;
    background-image: url(/wp-content/themes/myyse/assets/images/Myyty.svg);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
    pointer-events: none;
    transform: rotate(28deg);
}
.myyse-carousel-card .friend-label{
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;
    height: 80px;
    background-image: url(/wp-content/themes/myyse/assets/images/Kumppani8.svg);
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 10;
    pointer-events: none;
}
.myyse-carousel-card .sale-pro{
    position: absolute;
    top: 5px;
    right: 5px;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: var(--e-global-color-30c4ccb, #e53935);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9;
    font-size: 13px;
    font-weight: bold;
}
.myyse-carousel-arrow{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    color: #000 !important;
    background-color: #f6def0 !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
    transition: opacity 0.2s;
    padding: 8px 11px 8px 11px !important;
}
.myyse-carousel-arrow:hover{
    opacity: 1;
}
.myyse-carousel-arrow-left{
    left: 0;
}
.myyse-carousel-arrow-right{
    right: 0;
}
@media(max-width: 600px){
    .myyse-carousel-wrapper{
        padding: 0;
    }
    .myyse-carousel-card{
        flex: 0 0 170px;
    }
    .myyse-carousel-arrow{
        display: none;
    }
}
        