/* ================= HERO ================= */
.ssfc-prodhero-sec {
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 80px 20px;
}

/* 🔥 Background Glow */
.ssfc-prodhero-bg {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(0, 198, 255, 0.2), transparent 70%);
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 0;
}

/* Layout */
.ssfc-prodhero-wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ================= TEXT ================= */
.ssfc-prodhero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.2;
  margin-bottom: 20px;
}

/* 🔥 Gradient text */
.ssfc-prodhero-title span {
  background: linear-gradient(90deg, #00c6ff, #00ffcc, #00c6ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ssfcGradient 5s linear infinite;
}

@keyframes ssfcGradient {
  to {
    background-position: 200% center;
  }
}

/* Description */
.ssfc-prodhero-desc {
  color: var(--text-muted);
  max-width: 500px;
  margin-bottom: 30px;
}

/* ================= BUTTONS ================= */
.ssfc-prodhero-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
}

.ssfc-prodhero-btn {
  padding: 14px 28px;
  border-radius: 12px;
}

.ssfc-prodhero-outline {
  padding: 14px 28px;
  border: 1px solid var(--border-light);
  border-radius: 12px;
  color: var(--text-light);
  transition: 0.3s;
}

.ssfc-prodhero-outline:hover {
  background: var(--glass-bg);
}

/* ================= IMAGE ================= */
.ssfc-prodhero-image {
  display: flex;
  justify-content: center;
}

.ssfc-prodhero-image img {
  max-width: 350px;
  animation: ssfcFloat 4s ease-in-out infinite;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
}

/* Floating animation */
@keyframes ssfcFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-15px);
  }
}

/* ================= SCROLL INDICATOR ================= */
.ssfc-prodhero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
}

.ssfc-prodhero-scroll span {
  display: block;
  width: 2px;
  height: 40px;
  background: var(--primary);
  animation: scrollMove 1.5s infinite;
}

@keyframes scrollMove {
  0% {
    transform: scaleY(0);
    opacity: 0;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
  100% {
    transform: scaleY(0);
    opacity: 0;
  }
}

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .ssfc-prodhero-wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ssfc-prodhero-desc {
    margin: auto;
  }

  .ssfc-prodhero-actions {
    justify-content: center;
  }
}

@media (max-width: 500px) {
  .ssfc-prodhero-image img {
    max-width: 260px;
  }
}

/* ================= HERO ================= */
.ssfc-productspage-hero {
  padding: 120px 20px 80px;
  text-align: center;
  position: relative;
}

/* 🔥 Animated Gradient Text */
.ssfc-productspage-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  background: linear-gradient(90deg, #00c6ff, #00ffcc, #00c6ff);
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: ssfcGradientMove 5s linear infinite;
}

@keyframes ssfcGradientMove {
  to {
    background-position: 200% center;
  }
}

.ssfc-productspage-subtitle {
  color: var(--text-muted);
  margin-top: 15px;
}

/* ================= GRID ================= */
.ssfc-productspage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

/* CARD */
.ssfc-productspage-card {
  padding: 25px;
  border-radius: 18px;
  background: var(--glass-bg);
  border: 1px solid var(--border-light);
  text-align: center;
  transition: 0.4s;
  transform: translateY(5px);
  /* opacity: 0; */
}

/* Reveal active */
.ssfc-productspage-card.active {
  transform: translateY(0);
  opacity: 1;
}

/* Hover premium effect */
.ssfc-productspage-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(0, 198, 255, 0.25);
}

/* Image */
.ssfc-productspage-card img {
  max-height: 140px;
  margin: auto;
  margin-bottom: 15px;
  transition: 0.4s;
}

.ssfc-productspage-card:hover img {
  transform: scale(1.1);
}
.ssfc-productspage-card p {
  margin-bottom: 12px;
}
/* ================= RESPONSIVE ================= */
@media (max-width: 1000px) {
  .ssfc-productspage-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 500px) {
  .ssfc-productspage-grid {
    grid-template-columns: 1fr;
  }
}
