.scroll-svg {
  position: sticky;
  top: 5%;
  width: auto;
  height: 6vw;
  z-index: 0;
  left: 100%;
  transform: translate(50%, 0%);
}

.model-canvas {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 3;
}

.text-stroke-white {
  color: transparent;
  -webkit-text-stroke: 2px #fff;
}

.text-dark {
  color: var(--dark-gray);
}

.mix-blend {
  mix-blend-mode: difference;
}

.product-pin {
  position: absolute;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  z-index: 12;
  transition: all 0.3s ease;
}
.product-pin::before {
  content: "";
  position: absolute;
  width: 34px;
  height: 34px;
  background-color: #fff;
  border-radius: 50%;
  z-index: -1;
  opacity: 0.5;
  animation: pulse 2s infinite;
}
.product-pin-image {
  max-width: 250px;
  height: auto;
  margin-bottom: 1rem;
}
.product-pin-title {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--dark-gray);
  margin-bottom: 0;
  line-height: 1rem;
}
.product-pin-subtitle {
  font-size: 1rem;
  font-weight: 400;
  color: var(--dark-gray);
  margin-bottom: 1rem;
}
.product-pin-content {
  position: absolute;
  background-color: #fff;
  padding: 25px;
  border-radius: 50px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  width: 300px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.product-pin-button {
  width: 100%;
}

@keyframes pulse {
  0% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.7);
  }
  70% {
    transform: scale(1);
    box-shadow: 0 0 0 10px rgba(255, 255, 255, 0);
  }
  100% {
    transform: scale(0.95);
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}
.product-pin- .product-pin:hover .product-pin-content {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  .product-pin {
    width: 24px;
    height: 24px;
  }
  .product-pin i {
    font-size: 12px;
  }
  .product-pin-content {
    width: 150px;
    padding: 10px;
  }
}
.menu-title {
  color: var(--dark-gray);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
}
.menu-title::before {
  content: "";
  position: absolute;
  bottom: 10px;
  width: 50px;
  height: 1px;
  background-color: var(--dark-gray);
}

[data-header-hover=dark] .menu-title {
  color: #fff;
}
[data-header-hover=dark] .menu-title::before {
  background-color: #fff;
}

.menu-list li a {
  color: var(--dark-gray);
}