.product-row {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 60px;
}
.text-left-p {
    text-align: left;
}
.product-image {
  flex: 1;
  text-align: center;
}

.badge {
  margin-top: 10px;
  font-weight: bold;
  color: #444;
}

.specs {
  text-align: left;
  margin-top: 20px;
}

.specs h4 {
  margin-bottom: 10px;
}
.specs li {
    margin-bottom: 6px;
    color: rgb(55 65 81 / var(--tw-text-opacity, 1));
}
ul.ullidata {
    list-style: inside;
}
.product-content {
  flex: 1;
}



/* 🔥 RESPONSIVE */
@media (max-width: 768px) {
  .product-row {
    flex-direction: column;
    text-align: center;
  }
}

/* second Product */
.image-row {
  display: flex;
  gap: 30px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.image-box {
  flex: 1;
  max-width: 500px;
}

.image-box img {
    width: 100%;
    height: 400px;
    display: block;
    border-radius: 4px;
    object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .image-row {
    flex-direction: column;
  }
}

/* Top Layout */
.top-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  margin-bottom: 50px;
}

/* Fan Image */
.fan-image {
  flex: 1;
  text-align: center;
}

.fan-image img {
  max-width: 100%;
  width: 350px;
}

/* Specs */
.specs {
  flex: 1;
}



/* Bottom Images */
.bottom-images {
  display: flex;
  gap: 30px;
}

.img-box {
  flex: 1;
}

.img-box img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

/* Responsive */
@media (max-width: 768px) {
  .top-content {
    text-align: center;
  }

  .fan-image img {
    width: 250px;
  }

  .bottom-images {
    flex-direction: column;
  }

  .main-title {
    font-size: 24px;
  }
  .image-box{
  	max-width: 100%;
  }
}