.product-coming-soon {
  padding: 80px 60px;
  background: linear-gradient(to bottom, #ffffff, #f0fafa);
}

.product-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  flex-direction: row; /* Image left, text right */
}

.product-text {
  flex: 1 1 50%;
}

.product-text h2 {
  font-size: 38px;
  color: #0099cc;
  margin-bottom: 20px;
  position: relative;
}

.product-text h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 3px;
  background: #00bcd4;
  margin-top: 8px;
  border-radius: 2px;
}

.product-text p {
  font-size: 18px;
  line-height: 1.9;
  margin-bottom: 18px;
  color: #333;
  text-align: justify;
  text-justify: inter-word;
}

.product-text .coming-soon {
  font-size: 22px;
  font-weight: bold;
  color: #00aabb;
  margin-top: 25px;
  padding: 12px 18px;
  background: #e6f9ff;
  border-left: 5px solid #00bcd4;
  border-radius: 6px;
  display: inline-block;
}
.product-text strong {
  color: #0099cc;
}
.product-image {
  position: relative;
  flex: 1 1 40%;
  text-align: center;
}

.product-image .product-img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 16px;
 
}

/* Floating drops */
.drop {
  position: absolute;
  width: 45px;
  animation: float 6s ease-in-out infinite;
  opacity: 0.9;
}

.drop1 { top: -20px; left: 10%; animation-delay: 0s; }
.drop2 { bottom: -30px; right: 20%; animation-delay: 2s; }
.drop3 { top: 40%; right: -40px; animation-delay: 4s; }
.drop4 { top: 15%; left: -35px; animation-delay: 3s; }

@keyframes float {
  0% { transform: translateY(0px); opacity: 0.9; }
  50% { transform: translateY(-25px); opacity: 1; }
  100% { transform: translateY(0px); opacity: 0.9; }
}

/* Responsive */
@media (max-width: 768px) {
  .product-container {
    flex-direction: column; /* Stack on mobile */
    text-align: center;
  }
  .product-text, .product-image {
    flex: 1 1 100%;
  }
  .product-image .product-img {
    max-height: none;
    width: 90%;
    margin: 0 auto;
  }

  .product-text p {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;   /* easier to read on mobile */
  }
  .drop {
    width: 35px;
    opacity: 0.7;
  }
}
@media (min-width: 1200px) {
    .product-image .product-img {
        width: 120%;
        max-height: 500px;
        border-radius: 16px !important;       /* add rounded corners */
        background: transparent;   /* transparent background */
        box-shadow: none;          /* optional: remove shadow if needed */
    }

    .drop {
        width: 55px;
    }
}

