.wcp-wrapper {
    max-width: 700px;
    margin: 40px auto;
    text-align: center;
    font-family: inherit;
}

.wcp-title {
    margin: 0 0 20px;
    font-size: 24px;
    font-weight: 700;
}

.wcp-stage {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.14);
}

.wcp-wall {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.45s ease;
}

.wcp-wall.wcp-active {
    opacity: 1;
}

/* Subtle painted-wall texture, no images needed */
.wcp-wall.wcp-textured::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.035) 0px, rgba(255, 255, 255, 0.035) 2px, transparent 2px, transparent 6px),
        linear-gradient(180deg, rgba(0, 0, 0, 0.05), rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.06) 100%);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.wcp-product-holder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.35));
}

.wcp-product-img {
    width: 100%;
    height: auto;
    display: block;
}

.wcp-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.88);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    z-index: 10;
    transition: background 0.2s ease, transform 0.2s ease;
}

.wcp-nav:hover {
    background: #fff;
    transform: translateY(-50%) scale(1.06);
}

.wcp-prev {
    left: 16px;
}

.wcp-next {
    right: 16px;
}

.wcp-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 18px;
}

.wcp-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid rgba(0, 0, 0, 0.15);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.wcp-dot-active,
.wcp-dot:hover {
    border-color: #000;
    background: #000;
}

.wcp-current-label {
    margin-top: 10px;
    font-size: 14px;
    color: #666;
}

@media (max-width: 480px) {
    .wcp-nav {
        width: 36px;
        height: 36px;
    }
}
