 
   .hotspot {
            position: absolute;
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: #cacaca;
            border: 3px solid #cacaca;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 10;
            transition: all 0.3s ease;
        }

        .hotpoint-container {
            position: relative;
            width: 100%;
            max-width: 1280px;
            margin: 0 auto;
            overflow: hidden;
            padding: 1rem;
        }
        


        .hotspot:hover {
            transform: scale(1.1);
            background: #cacaca;
        }

        .hotspot::after {
            content: "";
            width: 12px;
            height: 12px;
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            background: white;
            display: block;
        }

        .hotspot.active::before {
          
          content: "";
          position: absolute;
          left: 50%;
          top: 50%;
          width: inherit;
          height: inherit;
          transform: translate(-50%, -50%);
          border-radius: inherit;
          border: 1px solid #fff;
        }

        /* Price tooltip - now positioned dynamically */
        .price-box {
            position: absolute;
            background: white;
            font-size: 16px;
            font-weight: bold;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
            display: none!important;
            opacity: 0;            
            z-index: 20;
            color: #000;
            border: 1px solid #eee;
            width: 10rem;
            max-width: 42vw;
            pointer-events: none;
        }
       [class*="active"] + .price-box {

            display: block!important;
        }

        .price-box a {
            text-decoration: none;
            color: #000;
            margin-left: 8px;
            font-size: 14px;
            font-weight: 600;
            width: 100%;
            max-width: 42vw;
            display: block;
            padding: 10px 16px;
            pointer-events: auto;
        }

        .price{
            
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .price::after {
              content: ">";
              margin-left: auto;
        }


        /* Show price when active - FIXED: only show the specific price box */
        .price-box.active {
            animation: fadeIn 0.3s ease forwards;
        }

        .price-box .title {
            font-size: 14px;
            font-weight: 700;
            text-align: center;
            word-break: break-word;
            text-align: left;
        }

        .container-link{

            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 30%;
            z-index: 5;
        }

          /* .hotspot-1 { top: 38%; right: 82%; }
            .hotspot-2 { top: 35%; right: 44%; }
            .hotspot-3 { top: 76%; right: 84%; }
            .hotspot-4 { top: 59%; right: 37%; }
            .hotspot-5 { top: 64%; right: 16%; }

       */

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }

    @media screen and (min-width: 1024px) {
            .hotpoint-container {
                padding: 0;
            }

             
         .hotspot {
            width: 38px;
            height: 38px;
        }


        .hotspot::after {
        
            width: 18px;
            height: 18px;
        }

         .container-link{
            width: 422px;
            height: 100%;
        }

        /* .hotspot-1 { top: 20%; right: 55%; }
        .hotspot-2 { top: 6%;  right: 31%; }
        .hotspot-3 { top: 65%; right: 56%; }
        .hotspot-4 { top: 40%; right: 31%; }
        .hotspot-5 { top: 54%; right: 9%; }
 */

            
        }
