:root {
  --cyber-bg: #050816;
  --cyber-panel: #0b1020;
  --neon-cyan: #22d3ee;
  --neon-magenta: #ec4899;
  --soft-white: #f8fafc;
  --muted-text: #94a3b8;
  --glass-bg: rgba(255, 255, 255, 0.08);
  --glass-border: rgba(255, 255, 255, 0.16);
  --cyber-ease: cubic-bezier(0.19, 1, 0.22, 1);
}

.cyber-product-section {
  position: relative;
  padding: 90px 0 110px;
  background:
    radial-gradient(circle at 15% 20%, rgba(34, 211, 238, 0.18), transparent 28%),
    radial-gradient(circle at 85% 35%, rgba(236, 72, 153, 0.18), transparent 30%),
    linear-gradient(135deg, #050816 0%, #070b18 50%, #0b1020 100%);
  overflow: hidden;
}

.cyber-product-section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, transparent, #000 18%, #000 82%, transparent);
}

.cyber-section-header {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 48px;
  padding: 0 24px;
  text-align: center;
}

.cyber-badge {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 18px;
  border-radius: 999px;
  border: 1px solid rgba(34, 211, 238, 0.35);
  background: rgba(34, 211, 238, 0.08);
  color: var(--neon-cyan);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.cyber-section-header h2 {
  color: var(--soft-white);
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 0 26px rgba(34, 211, 238, 0.22);
}

.cyber-section-header p {
  color: var(--muted-text);
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 0;
}

.cyberProductSwiper {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 30px 0 76px;
}

.cyberProductSwiper .swiper-slide {
  width: 340px;
  transition:
    transform 0.85s var(--cyber-ease),
    opacity 0.85s var(--cyber-ease),
    filter 0.85s var(--cyber-ease);
  opacity: 0.48;
  filter: blur(0.5px) saturate(0.8);
}

.cyberProductSwiper .swiper-slide-active {
  opacity: 1;
  filter: blur(0) saturate(1.08);
}

.cyber-product-card {
  min-height: 520px;
  border-radius: 30px;
  overflow: hidden;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  transition:
    transform 0.85s var(--cyber-ease),
    border-color 0.85s var(--cyber-ease),
    box-shadow 0.85s var(--cyber-ease);
}

.swiper-slide-active .cyber-product-card {
  transform: translateY(-14px);
  border-color: rgba(34, 211, 238, 0.72);
  box-shadow:
    0 0 0 1px rgba(34, 211, 238, 0.18),
    0 0 34px rgba(34, 211, 238, 0.35),
    0 0 70px rgba(236, 72, 153, 0.18),
    0 28px 90px rgba(0, 0, 0, 0.55);
}

.cyber-product-image {
  height: 260px;
  padding: 18px;
}

.cyber-product-image img {
  width: 100%;
  height: 100%;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  transition: transform 0.85s var(--cyber-ease);
}

.swiper-slide-active .cyber-product-image img {
  transform: scale(1.04);
}

.cyber-product-content {
  padding: 0 24px 26px;
}

.cyber-category {
  display: inline-flex;
  max-width: 100%;
  margin-bottom: 12px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--neon-magenta);
  background: rgba(236, 72, 153, 0.12);
  border: 1px solid rgba(236, 72, 153, 0.25);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cyber-product-content h3 {
  min-height: 2.5em;
  color: var(--soft-white);
  font-size: 24px;
  line-height: 1.25;
  margin-bottom: 14px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.cyber-rating {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fbbf24;
  margin-bottom: 14px;
}

.cyber-rating strong {
  color: var(--soft-white);
}

.cyber-price {
  color: var(--neon-cyan);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 22px;
  text-shadow: 0 0 18px rgba(34, 211, 238, 0.25);
}

.cyber-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  border-radius: 16px;
  color: #ffffff;
  text-decoration: none;
  font-weight: 900;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  box-shadow: 0 14px 34px rgba(236, 72, 153, 0.22);
  transition: transform 0.35s var(--cyber-ease), box-shadow 0.35s var(--cyber-ease);
}

.cyber-btn:hover {
  transform: translateY(-3px);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(34, 211, 238, 0.28);
}

.cyber-next,
.cyber-prev {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  color: var(--neon-cyan);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(34, 211, 238, 0.25);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  box-shadow: 0 0 28px rgba(34, 211, 238, 0.18);
}

.cyber-next::after,
.cyber-prev::after {
  font-size: 20px;
  font-weight: 900;
}

.cyber-pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.35);
  opacity: 1;
}

.cyber-pagination .swiper-pagination-bullet-active {
  width: 28px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
}

/* ---- Responsive Mobile 768px ---- */
@media (max-width: 768px) {
  .cyber-product-section {
    padding: 40px 0 60px;
  }

  .cyber-section-header {
    margin-bottom: 20px;
    padding: 0 16px;
  }

  .cyber-badge {
    font-size: 11px;
    padding: 6px 14px;
    margin-bottom: 12px;
  }

  .cyber-section-header h2 {
    font-size: 26px;
    margin-bottom: 8px;
  }

  .cyber-section-header p {
    font-size: 14px;
    line-height: 1.6;
  }

  .cyberProductSwiper {
    padding: 20px 0 60px;
  }

  .cyberProductSwiper .swiper-slide {
    width: 260px;
  }

  .cyber-product-card {
    min-height: 420px;
    border-radius: 20px;
  }

  .cyber-product-image {
    height: 190px;
    padding: 14px;
  }

  .cyber-product-image img {
    border-radius: 18px;
  }

  .cyber-product-content {
    padding: 0 18px 20px;
  }

  .cyber-product-content h3 {
    font-size: 18px;
    min-height: 2.4em;
    margin-bottom: 10px;
  }

  .cyber-price {
    font-size: 19px;
    margin-bottom: 16px;
  }

  .cyber-btn {
    min-height: 44px;
    font-size: 0.9rem;
    border-radius: 14px;
  }

  .cyber-next,
  .cyber-prev {
    display: none;
  }

  .cyber-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
}

/* ---- Responsive Mobile 576px ---- */
@media (max-width: 576px) {
  .cyber-product-section {
    padding: 30px 0 50px;
  }

  .cyber-section-header {
    margin-bottom: 16px;
  }

  .cyber-section-header h2 {
    font-size: 22px;
  }

  .cyber-section-header p {
    font-size: 13px;
  }

  .cyberProductSwiper .swiper-slide {
    width: 230px;
  }

  .cyber-product-card {
    min-height: 380px;
    border-radius: 18px;
  }

  .cyber-product-image {
    height: 168px;
    padding: 12px;
  }

  .cyber-product-image img {
    border-radius: 14px;
  }

  .cyber-product-content {
    padding: 0 14px 16px;
  }

  .cyber-product-content h3 {
    font-size: 16px;
    margin-bottom: 8px;
  }

  .cyber-category {
    font-size: 11px;
    padding: 5px 10px;
    margin-bottom: 8px;
  }

  .cyber-rating {
    margin-bottom: 8px;
    font-size: 0.85rem;
  }

  .cyber-price {
    font-size: 17px;
    margin-bottom: 12px;
  }

  .cyber-btn {
    min-height: 40px;
    font-size: 0.82rem;
    border-radius: 12px;
  }
}

/* ---- Responsive Very Small (400px dan bawah) ---- */
@media (max-width: 400px) {
  .cyber-product-section {
    padding: 24px 0 44px;
  }

  .cyber-section-header {
    margin-bottom: 14px;
    padding: 0 12px;
  }

  .cyber-badge {
    font-size: 10px;
    padding: 5px 10px;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
  }

  .cyber-section-header h2 {
    font-size: 19px;
    line-height: 1.2;
  }

  .cyber-section-header p {
    font-size: 12px;
    line-height: 1.55;
  }

  .cyberProductSwiper {
    padding: 16px 0 52px;
  }

  .cyberProductSwiper .swiper-slide {
    width: 200px;
  }

  .cyber-product-card {
    min-height: 340px;
    border-radius: 16px;
  }

  .swiper-slide-active .cyber-product-card {
    transform: translateY(-8px);
  }

  .cyber-product-image {
    height: 148px;
    padding: 10px;
  }

  .cyber-product-image img {
    border-radius: 12px;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.3);
  }

  .cyber-product-content {
    padding: 0 12px 14px;
  }

  .cyber-product-content h3 {
    font-size: 14px;
    min-height: 2.4em;
    margin-bottom: 6px;
  }

  .cyber-category {
    font-size: 10px;
    padding: 4px 8px;
    margin-bottom: 6px;
  }

  .cyber-rating {
    margin-bottom: 6px;
    font-size: 0.78rem;
    gap: 5px;
  }

  .cyber-price {
    font-size: 15px;
    margin-bottom: 10px;
  }

  .cyber-btn {
    min-height: 36px;
    font-size: 0.76rem;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(236, 72, 153, 0.18);
  }

  .cyber-pagination .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
  }

  .cyber-pagination .swiper-pagination-bullet-active {
    width: 22px;
  }
}
