  .scene-container {
    position: relative;
    /* width: 800px;
      height: 500px;
      background-image: url('./school.png');
      background-size: cover; */
    /* border-radius: 8px; */
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
  }

  .interactive-point {
    position: absolute;
    width: 20px;
    height: 20px;
    background-color: #E60012;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 0 0 4px rgba(230, 0, 18, 0.3);
    animation: pulse 2s infinite;
    transition: all 0.3s ease;
    z-index: 5;
  }

  .interactive-point:hover {
    transform: scale(1.2);
    box-shadow: 0 0 0 6px rgba(230, 0, 18, 0.5);
  }

  .tooltip {
    position: fixed;
    max-width: 220px;
    /* padding: 16px; */
    /* background: rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px); */
    border-radius: 12px;
    /* border: 1px solid rgba(255, 255, 255, 0.18); */
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    transform: translateY(10px) scale(0.95);
    pointer-events: none;
  }

  .tooltip.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .product-image {
    display: block;
    margin: auto;
    width: 100%;
    /* height: 120px; */
    object-fit: contain;
    border-radius: 8px;
    /* margin-bottom: 12px; */
  }

  .product-name {
    font-weight: 600;
    /* margin: 0 0 8px 0; */
    color: #2d3748;
    font-size: 16px;
    text-align: center;
  }

  .product-desc {
    font-size: 13px;
    color: #4a5568;
    margin: 0;
    line-height: 1.5;
    text-align: center;
  }

  @keyframes pulse {
    0% {
      box-shadow: 0 0 0 0 rgba(230, 0, 18, 0.7);
    }

    70% {
      box-shadow: 0 0 0 10px rgba(230, 0, 18, 0);
    }

    100% {
      box-shadow: 0 0 0 0 rgba(230, 0, 18, 0);
    }
  }