.wsc-pc100-wrap {
    --wsc-pc100-gap: 10px;
    position: relative;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
    background: #fff;
    padding: 18px 0 22px;
    box-sizing: border-box;
}

.wsc-pc100-track {
    display: flex;
    gap: var(--wsc-pc100-gap);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 12px;
    box-sizing: border-box;
}

.wsc-pc100-track::-webkit-scrollbar {
    display: none;
}

.wsc-pc100-card {
    flex: 0 0 calc((100vw - (var(--wsc-pc100-gap) * (var(--wsc-pc100-cols) - 1)) - 24px) / var(--wsc-pc100-cols));
    min-width: 0;
    scroll-snap-align: start;
    text-align: center;
    box-sizing: border-box;
}

.wsc-pc100-link {
    display: block;
    color: inherit;
    text-decoration: none !important;
}

.wsc-pc100-imagebox {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: #f3f3f3;
}

.wsc-pc100-img,
.wsc-pc100-imagebox img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .28s ease, opacity .24s ease;
}

.wsc-pc100-img-hover {
    position: absolute;
    inset: 0;
    opacity: 0;
    z-index: 2;
}

.wsc-pc100-card:hover .wsc-pc100-img,
.wsc-pc100-card:hover .wsc-pc100-imagebox img {
    transform: scale(1.03);
}

.wsc-pc100-card:hover .wsc-pc100-imagebox.has-hover-image .wsc-pc100-img-hover {
    opacity: 1;
}

.wsc-pc100-title {
    margin: 7px 8px 0;
    font-size: clamp(16px, 1.45vw, 25px);
    line-height: 1.05;
    font-weight: 800;
    font-style: italic;
    color: #111;
    letter-spacing: -0.02em;
}

.wsc-pc100-price {
    margin-top: 2px;
    font-size: clamp(15px, 1.35vw, 23px);
    line-height: 1.05;
    font-weight: 800;
    font-style: italic;
    color: #111;
}

.wsc-pc100-price del {
    opacity: .55;
    margin-right: 6px;
}

.wsc-pc100-price ins {
    text-decoration: none;
}

.wsc-pc100-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    padding: 9px 16px;
    border-radius: 999px;
    background: #111;
    color: #fff !important;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    text-decoration: none !important;
}

.wsc-pc100-arrow {
    position: absolute;
    z-index: 5;
    top: 45%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: #05aeb4;
    color: #fff;
    font-size: 42px;
    line-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    transition: opacity .2s ease, transform .2s ease;
}

.wsc-pc100-arrow:hover {
    opacity: .9;
    transform: translateY(-50%) scale(1.04);
}

.wsc-pc100-prev {
    left: 16px;
}

.wsc-pc100-next {
    right: 16px;
}

.wsc-pc100-empty {
    margin: 16px 0;
    padding: 12px;
    background: #fff7e6;
    border-left: 4px solid #d99500;
}

@media (max-width: 1024px) {
    .wsc-pc100-card {
        flex-basis: calc((100vw - var(--wsc-pc100-gap) - 24px) / 2);
    }

    .wsc-pc100-arrow {
        width: 42px;
        height: 42px;
        font-size: 36px;
    }
}

@media (max-width: 640px) {
    .wsc-pc100-wrap {
        padding-top: 12px;
    }

    .wsc-pc100-track {
        gap: 8px;
        padding: 0 10px;
    }

    .wsc-pc100-card {
        flex-basis: 78vw;
    }

    .wsc-pc100-title {
        font-size: 18px;
    }

    .wsc-pc100-price {
        font-size: 17px;
    }

    .wsc-pc100-arrow {
        width: 38px;
        height: 38px;
        font-size: 34px;
    }

    .wsc-pc100-prev {
        left: 8px;
    }

    .wsc-pc100-next {
        right: 8px;
    }
}
