 
   .hotspot {
            position: absolute;
            width: 38px;
            height: 38px;
            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;
        }

        .hotspot:hover {
            transform: scale(1.1);
            background: #cacaca;
        }

        .hotspot::after {
            content: "";
            width: 18px;
            height: 18px;
            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);
            white-space: nowrap;
            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: 18px;
            font-weight: 600;
            width: 100%;
            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;
        }

        .swiper-button-prev, .swiper-button-next {
            position: absolute;
            display: -ms-flexbox;
            display: flex;
            -ms-flex-pack: center;
            justify-content: center;
            -ms-flex-align: center;
            align-items: center;
            width: 2.1875rem;
            height: 3.125rem;
            top: 50%;
            z-index: 2;
            transform: translateY(-50%);
            background-color: rgba(255, 255, 255, 0.8) !important;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
            transition: opacity 0.2s ease-out;
            cursor: pointer;
            background-image: none!important;
            color: #000;
            font-size: 1.875rem;
            }
            .swiper-button-next{
                
            border-radius: 10px 0 0 10px;
            }

            .swiper-button-prev{
            border-radius: 0 10px 10px 0;
            }

        @keyframes fadeIn {
            from { opacity: 0; }
            to { opacity: 1; }
        }
