.hero-gradient {
  background:
    linear-gradient(90deg, rgba(15, 23, 42, 0.68) 0%, rgba(15, 23, 42, 0.52) 38%, rgba(15, 23, 42, 0.28) 72%, rgba(15, 23, 42, 0.22) 100%),
    linear-gradient(180deg, rgba(9, 20, 48, 0.34) 0%, rgba(9, 20, 48, 0.18) 100%);
}

.glass-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: end;
  gap: 0.75rem 1rem;
  width: 100%;
  border-bottom: 1px solid rgba(148, 163, 184, 0.24);
  padding-bottom: 0.9rem;
}

.product-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  padding: 0 0 0.55rem;
  color: #64748b;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
  box-shadow: none !important;
  transform: none !important;
}

.product-tab::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.95rem;
  height: 2px;
  background: transparent;
  transition: background-color 0.25s ease;
}

.product-tab:hover {
  color: #7dc431;
}

.product-tab:hover::after,
.product-tab.is-active::after {
  background: #7dc431;
}

.product-tab.is-active {
  color: #7dc431;
}

.product-panel[hidden] {
  display: none !important;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 0;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #ffffff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.06);
  text-decoration: none;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
}

.product-card__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #ffffff;
}

.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.product-card:hover .product-card__media img {
  transform: scale(1.04);
}

.product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  background: #f1f5f9;
  padding: 1.05rem 1.2rem 1.25rem;
}

.product-card__title,
.product-card__meta {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card__title {
  -webkit-line-clamp: 2;
  min-height: 2.35rem;
  font-size: 18px !important;
}

.product-card__meta {
  -webkit-line-clamp: 2;
  min-height: 2.8rem;
  margin-top: 0.25rem;
}

.about-video-trigger {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 20;
  pointer-events: none;
}

.about-video-trigger__button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  border-radius: 9999px;
  border: 0;
  background: rgba(125, 196, 49, 0.92);
  color: #ffffff;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.22);
  pointer-events: auto;
}

.about-video-trigger__button::before,
.about-video-trigger__button::after {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: inherit;
  border: 1px solid rgba(255, 255, 255, 0.55);
  animation: ripplePulse 2.6s ease-out infinite;
}

.about-video-trigger__button::after {
  animation-delay: 1.1s;
}

.about-video-trigger__button:hover {
  background: rgba(95, 160, 33, 0.92);
}

.about-video-trigger__icon {
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid currentColor;
}

@keyframes ripplePulse {
  0% {
    transform: scale(0.9);
    opacity: 0.7;
  }

  70% {
    transform: scale(1.42);
    opacity: 0;
  }

  100% {
    transform: scale(1.42);
    opacity: 0;
  }
}

@media (max-width: 1024px) {
  .product-tabs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .product-tabs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-visual {
    overflow: hidden;
    padding-bottom: 1.5rem;
  }

  .about-visual__glow {
    inset: 0 !important;
  }

  .about-visual__badge {
    left: 1rem !important;
    bottom: 0 !important;
  }
}

@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
