.image-container {
    position: relative;
    max-width: 100%;
    z-index: 1;
}

.product-image {
    width: 100%;
    height: auto;
    display: none;
}

.pc-image {
    display: block;
}

.mb-image {
    display: none;
}

@media (max-width: 768px) {
    .pc-image {
        display: none;
    }
    .mb-image {
        display: block;
    }

    .close-btn {
        display: block;
    }

    .pc-hotspot {
        display: none;
    }

    .mb-hotspot {
        display: block;
    }
}

@media (min-width: 769px) {
    .close-btn {
        display: none;
    }

    .pc-hotspot {
        display: block;
    }

    .mb-hotspot {
        display: none;
    }
}

 .hotspot {
  position: absolute;
  width: 20px;
  height: 20px;
  background-color: rgb(255, 255, 255);
  border-radius: 50%;
  cursor: pointer;
  border-style: double;
  border-width: thick;
  filter: drop-shadow(5px 5px 5px rgba(0, 0, 0, 0.8));
  border-color: #000;
  z-index: 998;
  transition: box-shadow 400ms cubic-bezier(0.2, 0, 0.7, 1), transform 200ms cubic-bezier(0.2, 0, 0.7, 1);
}
.hotspot:hover,
.hotspot:focus {
    transition: box-shadow 400ms cubic-bezier(0.2, 0, 0.7, 1), transform 200ms cubic-bezier(0.2, 0, 0.7, 1);
}
.hotspot:hover {
    transform: rotate(45deg);
    box-shadow: 0 0 1px 15px rgba(255, 217, 0, 0.4), 0 0 1px 30px rgba(138, 59, 88, 0.1), 0 0 1px 45px rgba(138, 59, 88, 0.1);
}


  
.popup {
    position: absolute;
/*     background-color: #fff;
    border: 1px solid #000;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); */
    display: none;
    opacity: 0;
    transition: opacity 0.5s;
    z-index: 1000;
}
.popup:hover .popup {
    transform: translateY(-10px);
    box-shadow: 0 5px 10px rgb(255, 243, 145), 0 0 30px 16px rgba(111, 88, 0, 0.8);
}
.popup-content {
    display: flex;
    align-items: center;
}

.popup-content {
    --border-radius: 10px;
    --border-width: 2px;
    appearance: none;
    position: relative;
    padding: 1em 2em;
    border: 0;
    background-color: #212121;
    font-family: "Roboto", Arial, "Segoe UI", sans-serif;
    font-size: 14px;
    color: #fff;
    z-index: 2;
   }
   
   .popup-content::after {
    --m-i: linear-gradient(#000, #000);
    --m-o: content-box, padding-box;
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: var(--border-width);
    border-radius: var(--border-radius);
    background-image: conic-gradient(
           #488cfb,
           #29dbbc,
           #ddf505,
           #ff9f0e,
           #e440bb,
           #655adc,
           #488cfb
       );
    -webkit-mask-image: var(--m-i), var(--m-i);
    mask-image: var(--m-i), var(--m-i);
    -webkit-mask-origin: var(--m-o);
    mask-origin: var(--m-o);
    -webkit-mask-clip: var(--m-o);
    mask-composite: exclude;
    -webkit-mask-composite: destination-out;
    filter: hue-rotate(0);
    animation: rotate-hue linear 500ms infinite;
    animation-play-state: paused;
   }
   
   .popup-content:hover::after {
    animation-play-state: running;
   }
   
   @keyframes rotate-hue {
    to {
     filter: hue-rotate(1turn);
    }
   }
   
   .popup-content,
   .popup-content::after {
    box-sizing: border-box;
   }
   
   .popup-content:active {
    --border-width: 5px;
   }
.popup-img {
    width: 80px;
    height: 80px;
    margin-right: 10px;
}

.popup-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cart-btn {
	background-color: #01519c;
	color: black;
	border: none;
	cursor: pointer;
	align-self: flex-end;
	border-radius: 5px;
	padding: 15px;
    position: absolute;
  bottom: 10px;
  right: 10px;
  box-shadow: #03294d ;
}

.close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    display: none;
}
@media (max-width: 768px) {
    .popup {
        position: fixed; 
        bottom: 30%; 
        left: 50%; 
        transform: translateX(-50%); 
        width: 80%; 
        max-width: 300px; 
        display: none; 
    }

    .close-btn {
        display: block; 
    }

    .pc-image {
        display: none;
    }

    .mb-image {
        display: block;
    }

    .pc-hotspot {
        display: none;
    }

    .mb-hotspot {
        display: block;
    }
}