/* Product Overview Section */
.product-overview {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 70px 8%;
  flex-wrap: wrap;
  position: relative;
}

/* Left content */
.product-overview .content {
  flex: 1 1 45%;
}

.product-overview .subtitle {
  font-size: 15px;
  font-weight: 500;
  color: #ff5a5a;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.product-overview .subtitle::after {
  content: "";
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 50%;
  height: 3px;
  background: #ff5a5a;
  border-radius: 2px;
}

.product-overview .title {
  font-size: 42px;
  font-weight: 800;
  color: #0d2451;
  margin-bottom: 25px;
  line-height: 1.3;
}

.product-overview .description {
  font-size: 16px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 20px;
}

.product-overview .features {
  list-style: none;
  padding: 0;
}

.product-overview .features li {
  font-size: 15px;
  margin-bottom: 10px;
  color: #333;
  display: flex;
  align-items: center;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}

.product-overview .features li:nth-child(1) { animation-delay: 0.2s; }
.product-overview .features li:nth-child(2) { animation-delay: 0.4s; }
.product-overview .features li:nth-child(3) { animation-delay: 0.6s; }
.product-overview .features li:nth-child(4) { animation-delay: 0.8s; }
.product-overview .features li:nth-child(5) { animation-delay: 1s; }

/* Right content (image) */
.product-overview .image-box {
  position: relative;
  flex: 1 1 45%;
  display: flex;
  justify-content: center;
}

.product-overview img {
  width: 100%;
  max-width: 500px;
  border-radius: 14px;
  z-index: 2;
  transform: scale(0.95);
  opacity: 0;
  animation: zoomIn 1.2s ease forwards;
}

.product-overview .red-block {
  position: absolute;
  bottom: -30px;
  right: -40px;
  width: 180px;
  height: 130px;
  background: #ff5a5a;
  z-index: 1;
  border-radius: 6px;
  animation: popIn 1.2s ease;
}

/* Animations */
@keyframes fadeInUp {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.8); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@keyframes popIn {
  from { transform: scale(0.6); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

/* Scroll reveal helper */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}
.fade-up.show {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 900px) {
  .product-overview {
    flex-direction: column;
    text-align: center;
    gap: 40px;
    padding: 50px 5%;
  }

  .product-overview .subtitle::after {
    left: 50%;
    transform: translateX(-50%);
  }

  .product-overview img {
    max-width: 100%;
  }

  .product-overview .red-block {
    width: 100px;
    height: 80px;
    bottom: -15px;
    right: -15px;
  }
}


@media(max-width: 768px){
.product-overview .description {
    font-size: 12px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  .product-overview .features li {
  font-size: 12px;
  margin-bottom: 10px;
  color: #333;
  display: flex;
  align-items: center;
  animation: fadeInUp 0.6s ease forwards;
  opacity: 0;
}
}


