.shoppable-look__image-wrap {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.shoppable-look__image {
    width: 100%;
    display: block;
    border-radius: 8px;
}

.shoppable-hotspot {
    -webkit-appearance: none !important;
    appearance: none !important;
    -webkit-tap-highlight-color: transparent !important;
    box-sizing: border-box !important;
    position: absolute !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 50% !important;
    background-color: rgba(0, 0, 0, .85) !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    font-size: 16px !important;
    line-height: 1 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    transform: translate(-50%, -50%) !important;
    box-shadow: 0 0 0 6px rgba(0, 0, 0, .2) ;
    animation: shoppable-pulse 1.8s ease-in-out infinite !important;
    z-index: 5 !important;
    padding: 0 !important;
    margin: 0 !important;
    outline: none !important;
}

.shoppable-hotspot:hover,
.shoppable-hotspot:focus,
.shoppable-hotspot:active {
    background-color: rgba(0, 0, 0, .85) !important;
    border: 2px solid #fff !important;
    color: #fff !important;
    outline: none !important;
}

@keyframes shoppable-pulse {
    0%, 100% { box-shadow: 0 0 0 6px rgba(0, 0, 0, .2); }
    50%      { box-shadow: 0 0 0 10px rgba(0, 0, 0, .06); }
}

.shoppable-popup {
    position: absolute;
    z-index: 20;
    width: 240px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,.2);
    opacity: 0;
    transform: translateX(-50%) translateY(6px);
    transition: opacity .2s ease, transform .2s ease;
    pointer-events: none;
}

.shoppable-popup--visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(0);
}

.shoppable-popup__close {
    -webkit-appearance: none !important;
    appearance: none !important;
    -webkit-tap-highlight-color: transparent !important;
    position: absolute !important;
    top: 6px !important; right: 8px !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 18px !important;
    color: #888 !important;
    cursor: pointer !important;
    outline: none !important;
    display: block !important;
}

.shoppable-popup__close:hover,
.shoppable-popup__close:focus,
.shoppable-popup__close:active {
    background: none !important;
    border: none !important;
    color: #888 !important;
}

.shoppable-popup__body { display: flex; gap: 10px; padding: 12px; }

.shoppable-popup__image {
    width: 56px; height: 56px; object-fit: cover;
    border-radius: 6px; flex-shrink: 0;
}

.shoppable-popup__name { margin: 0 0 4px; font-size: 13px; font-weight: 600; color: #111; }
.shoppable-popup__price { margin: 0 0 8px; font-size: 13px; color: #333; }

.shoppable-popup__cta {
    -webkit-tap-highlight-color: transparent;
    display: block; text-align: center;
    background: #0e0d0d; color: #fff !important;
    text-decoration: none !important;
    padding: 8px 0; border-radius: 6px;
    font-size: 12px; font-weight: 600; text-transform: uppercase;
    outline: none;
}

.shoppable-popup__cta:hover,
.shoppable-popup__cta:focus,
.shoppable-popup__cta:active {
    background: #0e0d0d;
    color: #fff !important;
}