.pv-hotspot-layout {
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: 30px;
    align-items: center;
}

.pv-product-panel {
    background: #e8dbd3;
    border-radius: 20px;
    padding: 40px;
    max-height: 500px;
}
.pv-product-card-inner{
    text-align: center;
}
.pv-product-card-inner img {
    max-width: 240px;
}
.pv-product-card-inner h3{
    font-size: 20px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-top: 10px;
    color: #444;
}
.pv-add-to-cart {
    padding: 10px 20px;
    border-radius: 25px;
    margin-top: 10px;
    cursor: pointer;
    background: #eee;
}
.pv-product-card {
    transition: 0.3s;
}

.pv-hotspot-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
}

.pv-hotspot-image img {
    width: 100%;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.pv-hotspot {
    position: absolute;
    width: 16px;
    height: 16px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transform: translate(-50%, -50%);
}

.pv-hotspot::after {
    content: "";
    position: absolute;
    width: 30px;
    height: 30px;
    border: 2px solid white;
    border-radius: 50%;
    top: -7px;
    left: -7px;
    animation: pvPulse 2s infinite;
}
.pv-hotspot.active {
    transform: translate(-50%, -50%) scale(1.2);
    background: #ff6b6b;
}
.pv-product-card.loading {
    opacity: 0.5;
    transition: 0.3s;
}
.pv-hotspot-image {
    position: relative;
}

.pv-hotspot.editing {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    background: #2563eb;
    border: 3px solid #fff;
    box-shadow: 0 0 0 8px rgba(37,99,235,.18);
    z-index: 9999;
    cursor: move;
}
@keyframes pvPulse {
    0% { transform: scale(0.8); opacity: 0.8; }
    70% { transform: scale(1.6); opacity: 0; }
    100% { opacity: 0; }
}