.products-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  display: grid;
  grid-template-rows: auto 1fr;
}

.title-product {
    color: var(--primary-color);
    margin: 12px 0;
    min-height: 2.2em;
    line-height: 0.8;
}

/* wrapper คุมพื้นที่ overlay */
.image-wrapper {
  position: relative;
  width: 100%;
}

.product-crop-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center; /*เลือกจุดครอบ center, top, bottom*/
    cursor: pointer;
}

/* กล่องรายละเอียด (ซ่อนเริ่มต้น) */
.product-detail {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  max-height: 60%;
  overflow-y: auto;
  background: rgba(255, 255, 255, 0.92);
  padding: 16px;

  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.35s ease, opacity 0.25s ease;
}

/* ตอนเปิด */
.products-card.active .product-detail {
  transform: translateY(0);
  opacity: 1;
}

/* ตัวหนังสือ */
/*.product-detail li {
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-dark);
}*/

/* animation ธรรมชาติ */
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.product-detail::-webkit-scrollbar {
  width: 4px;
}
.product-detail::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.2);
  border-radius: 4px;
}