.Product1A {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  justify-content: center;
  justify-items: center;
  gap: 24px;
  padding: 24px;
  position: relative;
  background-color: #222222;
  overflow: hidden;
}

.LiquidBackground {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.LiquidBackground canvas {
  display: block;
  width: 100%;
  height: 100%;
}

.Product1A > .ProductCard {
  position: relative;
  z-index: 1;
}

.ProductCard {
  --product-card-primary-rgb: 32 203 176;
  --product-card-border: rgba(32, 203, 176, 0.45);
  --product-card-image: url("https://images.unsplash.com/photo-1515266591878-f93e32bc5937?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2574&q=80");
  height: 60vh;
  width: 100%;
  max-width: 320px;
  border: 1px solid var(--product-card-border);
  border-radius: 18px;
  padding: 20px 18px;
  margin: 0;
  background: linear-gradient(180deg, rgba(10, 24, 22, 0.88) 0%, rgba(12, 36, 32, 0.78) 100%);
  transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s, background 0.3s;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  text-decoration: none;
}

.ProductCard:hover {
  border-color: rgba(68, 226, 201, 0.95);
  box-shadow: 0 18px 36px rgba(32, 203, 176, 0.28);
  transform: translateY(-4px);
}

.ProductCard::before {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: inherit;
  background: radial-gradient(circle at top, rgba(110, 245, 226, 0.4), transparent 65%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
  pointer-events: none;
}

.ProductCard:hover::before {
  opacity: 1;
}

.ProductCardContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  position: relative;
  z-index: 4;
  width: 100%;
  height: 100%;
}

.ProductCard h2 {
  color: #e6fffb;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 1.1rem;
}

.ProductCard .Text {
  color: rgba(230, 255, 251, 0.78);
  line-height: 1.5;
  font-size: 0.95rem;
}

.ProductCardContent {
  margin-top: 0;
}

@keyframes product-pan-overlay {
  from {
    background-position: 0% 0%;
  }
  to {
    background-position: 0% -100%;
  }
}

@keyframes product-pan-image {
  0% {
    background-position: 36% 42%;
    background-size: 200%;
  }
  20% {
    background-position: 30% 35%;
    background-size: 200%;
  }
  20.0001% {
    background-position: 60% 85%;
    background-size: 500%;
  }
  40% {
    background-position: 49% 81%;
    background-size: 500%;
  }
  40.0001% {
    background-position: 80% 42%;
    background-size: 300%;
  }
  60% {
    background-position: 84% 33%;
    background-size: 300%;
  }
  60.0001% {
    background-position: 0% 0%;
    background-size: 300%;
  }
  80% {
    background-position: 15% 4%;
    background-size: 300%;
  }
  80.0001% {
    background-position: 80% 10%;
    background-size: 300%;
  }
  100% {
    background-position: 72% 14%;
    background-size: 300%;
  }
}

@keyframes product-pan-image-cover {
  0% {
    background-position: 40% 35%;
    background-size: 440%;
  }
  30% {
    background-position: 55% 45%;
    background-size: 480%;
  }
  60% {
    background-position: 60% 60%;
    background-size: 460%;
  }
  100% {
    background-position: 40% 35%;
    background-size: 440%;
  }
}

.ProductCardScreen {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background-color: rgb(var(--product-card-primary-rgb) / 0.1);
  z-index: 0;
  pointer-events: none;
}

.ProductCardScreenImage {
  background-image: var(--product-card-image);
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  background-size: 440%;
  background-repeat: no-repeat;
  background-position: center;
  filter: sepia(80%) hue-rotate(140deg) saturate(140%);
  opacity: 0.4;
  animation: product-pan-image-cover 22s ease-in-out infinite;
  z-index: 1;
}

.ProductCardScreenOverlay {
  background: linear-gradient(
    rgb(var(--product-card-primary-rgb) / 0.15),
    rgb(var(--product-card-primary-rgb) / 0.15) 3px,
    transparent 3px,
    transparent 9px
  );
  background-size: 100% 9px;
  height: 100%;
  width: 100%;
  animation: product-pan-overlay 22s infinite linear;
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.8;
}

.ProductCardScreenBlur {
  height: 100%;
  width: 100%;
  position: absolute;
  inset: 0;
  z-index: 3;
  backdrop-filter: blur(32px);
  opacity: 0.45;
}

.ProductButton {
  border: 1px solid rgba(68, 226, 201, 0.6);
  padding: 12px 22px;
  border-radius: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e6fffb;
  background: linear-gradient(135deg, rgba(32, 203, 176, 0.85), rgba(16, 122, 109, 0.85));
  box-shadow: 0 10px 20px rgba(16, 122, 109, 0.4);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  margin-top: auto;
}

.ProductButton:hover {
  transform: translateY(-1px);
  background: linear-gradient(135deg, rgba(68, 226, 201, 0.95), rgba(20, 160, 142, 0.95));
  border-color: rgba(110, 245, 226, 0.8);
  box-shadow: 0 14px 26px rgba(68, 226, 201, 0.45);
}

.ProductButton:active {
  transform: translateY(0);
  opacity: 0.9;
}

@media (max-width: 768px) {
  .Product1A {
    grid-template-columns: 1fr;
    padding: 16px;
  }
}


.splineModelWrap {
  width: 100%;
  height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 2;
}

.splineModel {
  width: 100% !important;
  height: 100% !important;
  margin: 0 auto;
  display: block;
  transition: transform 0.35s ease, filter 0.35s ease;
  transform-origin: center;
  touch-action: none;
}

.ProductCard:hover .splineModelWrap .splineModel {
  transform: translateY(-6px) scale(1.02);
  filter: drop-shadow(0 14px 22px rgba(15, 23, 42, 0.18));
}
