.products-section {
  background-color: #003366;
  padding: 60px 0 120px;
  overflow: hidden;
  border: 20px solid white;
  box-sizing: border-box;
}

.products-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 50px 0;
  transform: scale(1.30);
  transform-origin: top center;
}

.products-title {
  font-size: 2rem;
  font-weight: bold;
  color: white;
  text-align: center;
  margin-bottom: 40px;
}

.products-landscape-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

.product-images-wrapper-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 0px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  flex: 1;
  box-sizing: border-box;
  margin-top: -56px; /* ✅ Naikkan 2cm ke atas */
}


.product-images-card {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.product-frame {
  width: calc(33.333% - 14px);
  text-align: center;
}

.product-frame-box {
  background: linear-gradient(to bottom, #ffffff 70%, #ddd 100%); /* ✅ Efek abu-abu bawah */
  border: 1px solid #ccc;
  border-radius: 0px;
  aspect-ratio: 3 / 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.15);
  transition: transform 0.2s ease;
}

.product-frame-box:hover {
  transform: scale(1.03);
}

.product-frame-box img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-frame p {
  font-size: 0.95rem;
  margin-top: 10px;
  font-weight: 600;
  color: #003366;
}

.product-description-card {
  flex: 1.2;
  background: #ffffff;
  padding: 10px 30px 20px;
  margin-top: -98px; /* ✅ Naik total 3.5cm ke atas */
  border-radius: 0px;
  color: #003366;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  max-width: none;
  box-sizing: border-box;
}


.product-description-card h2 {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-description-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ====================== RESPONSIVE ====================== */
@media screen and (max-width: 1024px) {
  .products-wrapper {
    transform: scale(0.85);
    padding: 40px 20px 0;
  }

  .product-description-card {
    margin-top: -40px;
  }
}

@media screen and (max-width: 768px) {
  .products-wrapper {
    transform: scale(0.72);
    padding: 30px 15px 0;
  }

  .products-landscape-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .product-description-card {
    width: 100%;
    margin-top: 0;
    text-align: center;
  }
}

@media screen and (max-width: 480px) {
  .products-wrapper {
    transform: scale(1);
    padding: 20px 10px 0;
  }

  .product-images-card {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .product-frame {
    width: 100%;
  }

  .product-description-card {
    width: 100%;
    padding: 20px;
  }

  .product-description-card h2,
  .product-description-card p {
    white-space: normal;
    overflow: visible;
    text-overflow: unset;
    text-align: center;
  }
}
