/* =========================================================
   HOTSPOT MODULE
========================================================= */

.hotspot-module {
    position: relative;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
}

.hotspot-image {
    display: block;
    width: 100%;
    height: auto;
}

/* =========================================================
   HOTSPOT POINT
========================================================= */

.hotspot-point {
    position: absolute;

    width: 18px;
    height: 18px;

    margin-left: -11px;
    margin-top: -11px;

    border: 3px solid transparent;
    border-radius: 50%;

    background: #fff;
    background-clip: padding-box;

    box-shadow: 0 0 0 2px #fff;

    cursor: pointer;

    z-index: 20;

    transition: transform .2s ease;
}

.hotspot-point:hover {
    transform: scale(1.15);
}

.hotspot-point:before {
    content: '';

    position: absolute;

    left: 50%;
    top: 50%;

    width: 22px;
    height: 22px;

    margin-left: -11px;
    margin-top: -11px;

    border-radius: 50%;

    border: 2px solid rgba(254,197,0,.6);

    animation: hotspotPulse 2s infinite;
}

@keyframes hotspotPulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    100% {
        transform: scale(2.2);
        opacity: 0;
    }
}


/* =========================================================
   HOTSPOT POPUP
========================================================= */

.hotspot-popup {
    position: absolute;

    width: 200px;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: all .2s ease;

    z-index: 999;
}

.hotspot-popup.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* =========================================================
   PRODUCT CARD
========================================================= */

.hotspot-product-card {
    background: #fff;

    border-radius: 8px;

    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0,0,0,.15);
}

.hotspot-product-image {
    display: block;
}

.hotspot-product-image img {
    display: block;
    width: 100%;
}

.hotspot-product-content {
    padding: 15px;
}

.hotspot-product-name {
    display: block;

    font-size: 14px;
    font-weight: 600;

    color: #222;

    text-decoration: none;

    margin-bottom: 10px;
}

.hotspot-product-name:hover {
    text-decoration: none;
}

.hotspot-product-price {
    font-size: 15px;
    font-weight: 700;

    color: #222;
}

.hotspot-product-special {
    color: #d40000;
}

.hotspot-product-old-price {
    margin-right: 8px;

    color: #888;

    text-decoration: line-through;
}

.hotspot-product-button {
    display: inline-block;

    margin-top: 12px;
    padding: 8px 14px;

    background: #fec500;
    color: #222;

    font-weight: 600;

    border-radius: 4px;

    text-decoration: none;
}

.hotspot-product-button:hover {
    text-decoration: none;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 767px) {

    .hotspot-point {
width: 10px;
    height: 10px;
    margin-left: -9px;
    margin-top: -9px;
    border: 2px solid transparent;
    }

    .hotspot-popup {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;

        width: calc(100vw - 40px);
        max-width: 200px;

        transform: translate(-50%, -45%) !important;

        z-index: 99999;
    }

    .hotspot-popup.active {
        opacity: 1;
        visibility: visible;

        transform: translate(-50%, -50%) !important;
    }
}