.wsi-container {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: fit-content;
}

.wsi-container img {
    max-width: 100%;
    display: block;
    height: auto;
}

/* PINS */
.wsi-pin {
    position: absolute;
    transform: translate(-50%, -50%);
    cursor: pointer;
    z-index: 10;
    transition: all 0.6s;
}
.wsi-pin.active {
    transform: translate(-50%, -50%)rotate(45deg);
}

.wsi-pin.active .wsi-dot {
    background: #FFD700;
    transform: scale(1.1);
}

.wsi-dot {
    width: 28px;
    height: 28px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.25);
    transition: all 0.2s ease;
}

.wsi-dot::before {
    content: "+";
    font-size: 18px;
    font-weight: bold;
}

/* FIXED CARD CONTAINER (bottom-left) */
.wsi-card-container {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    min-width: 280px;
    max-width:80vw;
    width:30%;
    background: #fff;
    border-radius: 0px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    z-index: 20;
    pointer-events: auto;
}

.wsi-product-card {
    display: flex;
    gap: 0;
    position: relative;
}

.wsi-product-card-image img {
    width: 150px;
    border-radius: 0px;
}
.wsi-product-card-image a { position: relative; }
.wsi-product-card-info {
    flex: 1;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.wsi-product-card-info h4 {
    font-size: 1.35rem;
    margin: 0 0 .5rem;
}

.wsi-product-card-info .price {
    display: block;
    align-self: flex-end;
}

.wsi-product-card-info .price ins {
    text-decoration: none;
}

.wsi-product-card-info .button {
    font-size: 12px;
    padding: 4px 10px;
    background: #111;
    color: #fff;
    border-radius: 20px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    border: none;
    cursor: pointer;
}

.wsi-close-card {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 22px;
    height: 22px;
    background: #fff;
    border-radius: 50%;
    text-align: center;
    line-height: 20px;
    font-size: 18px;
    cursor: pointer;
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
    color: #666;
}
.wsi-close-card:hover {
    color: #000;
}
/* SALE BADGE */
.wsi-sale-badge {
    position: absolute;
    --px: 40px;
    top: 0.5rem;
    right: 0.5rem;
    background: #BB2227;
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    width: var(--px);
    height: var(--px);
    line-height: var(--px);
    border-radius: var(--px);
    text-align: center;
    z-index: 25;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}


/****************/
.wsi-pin:after {
    content: "";
    width: 150%;
    height: 150%;
    position: absolute;
    border: 1px solid #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    pointer-events:none;
    transition: all 0.6s;
}
.wsi-pin:hover:after , .wsi-pin.active:after{}

.wsi-pin.active:after{ border-color:#FFD700;
    width: 130%;
    height: 130%; }

.wsi-pin span.wsi-dot:after {
    content: "";
    width: 0;
    height: 0;
    position: absolute;
    border: 0px solid #fff;
    border-radius: 50%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: -1;
      opacity:1;
    transition: all 0s;
    }
.wsi-pin:hover span.wsi-dot:after {width:170%; height:170%;  opacity:0; border-width: 20px; transition: all 0.8s;}