.bps-shoppable-image-wrapper {
    position: relative;
    display: inline-block;
    max-width: 100%;
}

.bps-shoppable-image-wrapper img {
    display: block;
    width: 100%;
    height: auto;
}

.bps-shoppable-marker-wrapper {
    position: absolute;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.bps-shoppable-marker {
    border-radius: 50%;
    border-style: solid;
    cursor: pointer;
    transition: all 0.3s ease;
}

.bps-shoppable-marker:hover {
    transform: scale(1.1);
}

.bps-marker-pulse .bps-shoppable-marker {
    animation: bps-pulse 2s infinite;
}

.bps-marker-wave .bps-shoppable-marker::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid currentColor;
    transform: translate(-50%, -50%);
    animation: bps-wave 2s infinite;
    opacity: 0.6;
}

.bps-marker-bounce .bps-shoppable-marker {
    animation: bps-bounce 2s infinite;
}

@keyframes bps-pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes bps-wave {
    0% {
        width: 100%;
        height: 100%;
        opacity: 0.6;
    }
    100% {
        width: 200%;
        height: 200%;
        opacity: 0;
    }
}

@keyframes bps-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.bps-shoppable-tooltip {
    position: absolute;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 100;
}

.bps-shoppable-marker-wrapper:hover .bps-shoppable-tooltip {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.bps-tooltip-top {
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-bottom: 10px;
}

.bps-tooltip-bottom {
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 10px;
}

.bps-tooltip-left {
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-right: 10px;
}

.bps-tooltip-right {
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 10px;
}

.bps-shoppable-product-content {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.bps-shoppable-product-image {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    overflow: hidden;
    border-radius: 4px;
}

.bps-shoppable-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bps-shoppable-product-info {
    flex: 1;
    min-width: 0;
}

.bps-shoppable-product-title {
    font-weight: 500;
    line-height: 1.4;
}

.bps-shoppable-product-price {
    font-weight: 600;
    margin-top: 4px;
}

@media (max-width: 768px) {
    .bps-shoppable-tooltip {
        position: fixed !important;
        left: 50% !important;
        top: auto !important;
        bottom: 20px !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        margin: 0 !important;
        max-width: calc(100% - 40px);
    }
}