.product {
  display: grid;
  grid-template-columns: minmax(360px, .88fr) 1.12fr;
  gap: clamp(54px, 7vw, 110px);
  align-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #f3fff9 0, #f5fbff 48%, #fff 100%);
}

.product-visual {
  position: relative;
  display: grid;
  min-height: 590px;
  place-items: center;
  border-radius: 38px;
  background: radial-gradient(circle at 45% 33%, rgba(255,255,255,.95), rgba(210,255,238,.72) 28%, rgba(191,231,255,.74) 66%, rgba(141,207,255,.35));
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.76), 0 35px 80px rgba(35,116,154,.13);
}

.health-orb {
  position: relative;
  width: min(64%, 330px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 67% 24%, #fff 0 3%, rgba(255,255,255,.85) 4%, transparent 16%), linear-gradient(155deg, #c5ffe6, #75decf 46%, #62c5f7 75%, #287fe0);
  box-shadow: inset 20px 22px 45px rgba(255,255,255,.56), inset -18px -25px 42px rgba(20,103,198,.2), 0 35px 55px rgba(34,139,191,.28);
  animation: healthFloat 5.5s ease-in-out infinite;
}

.health-orb::after {
  content: "";
  position: absolute;
  top: 53%;
  right: -8%;
  left: -8%;
  height: 27%;
  transform: rotate(-12deg);
  border: 3px solid rgba(255,255,255,.63);
  border-top-color: rgba(255,255,255,.16);
  border-radius: 50%;
  box-shadow: 0 5px 15px rgba(45,125,209,.11);
}

.health-orb > i { position: absolute; border-radius: 50%; background: rgba(255,255,255,.36); }
.health-orb > i:first-child { top: 10%; right: 14%; width: 32%; height: 32%; }
.health-orb > i:nth-child(2) { top: 44%; right: 3%; width: 7px; height: 7px; box-shadow: 25px 38px 0 rgba(255,236,147,.9), -28px -62px 0 rgba(255,255,255,.86); }

.health-face {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 58px;
  transform: translateY(-7%);
}

.health-face b { width: 12px; height: 16px; border-radius: 50%; background: #087c7f; box-shadow: inset 0 1px 3px rgba(0,0,0,.14); }
.health-face em { position: absolute; top: 57%; width: 42px; height: 20px; border-bottom: 5px solid #087c7f; border-radius: 50%; }

.product-status {
  position: absolute;
  right: 8%;
  bottom: 7%;
  left: 8%;
  padding: 21px 24px;
  border: 1px solid rgba(255,255,255,.86);
  border-radius: 20px;
  background: rgba(255,255,255,.72);
  box-shadow: 0 12px 34px rgba(23,105,153,.12);
  backdrop-filter: blur(18px);
}

.product-status small, .product-status strong, .product-status span, .product-features b, .product-features small { display: block; }
.product-status small { color: #158d83; font-size: 11px; font-weight: 700; letter-spacing: .12em; }
.product-status strong { margin: 3px 0; font-size: 20px; }
.product-status span { color: var(--muted); font-size: 12px; }
.product-copy h2 { margin: 16px 0 8px; font-size: clamp(42px, 5vw, 66px); line-height: 1.08; letter-spacing: -.045em; }
.product-copy h3 { max-width: 680px; margin: 0 0 20px; font-size: clamp(22px, 2.3vw, 32px); line-height: 1.4; }
.product-copy > p { max-width: 720px; color: var(--muted); }
.product-features { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 30px 0; }
.product-features article { display: flex; gap: 14px; padding: 18px; border: 1px solid rgba(96,174,208,.14); border-radius: 17px; background: rgba(255,255,255,.82); }
.product-features article > span { display: grid; flex: 0 0 38px; height: 38px; place-items: center; border-radius: 13px; color: #087f81; background: #dff9ef; font-size: 11px; font-weight: 800; }
.product-features small { margin-top: 3px; color: var(--muted); line-height: 1.55; }
.product-actions { display: flex; align-items: center; gap: 24px; margin-top: 26px; }
.text-link { color: #1463ae; font-weight: 700; }
.product-note { margin-top: 24px !important; color: #7d8ba0 !important; font-size: 12px; }

@keyframes healthFloat { 0%, 100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-10px) rotate(1deg); } }

@media (max-width: 900px) {
  .product { grid-template-columns: 1fr; }
  .product-visual { width: 100%; max-width: 650px; min-height: 520px; margin: auto; }
}

@media (max-width: 580px) {
  .product-visual { min-height: 410px; border-radius: 28px; }
  .product-features { grid-template-columns: 1fr; }
  .product-actions { align-items: flex-start; flex-direction: column; gap: 14px; }
  .health-face { gap: 43px; }
  .health-face b { width: 9px; height: 13px; }
  .health-face em { width: 33px; border-bottom-width: 4px; }
  .product-status strong { font-size: 17px; }
}
