/* Hiển thị sản phẩm render từ products.json (do trang admin quản lý) */
#ct-products .ct-card .col-inner { height: 100%; }
#ct-products .ct-box {
  background: #fff;
  border: 1px solid #ececec;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  transition: box-shadow .25s ease, transform .25s ease;
}
#ct-products .ct-card:hover .ct-box {
  box-shadow: 0 8px 24px rgba(0,0,0,.10);
  transform: translateY(-3px);
}
#ct-products .ct-thumb {
  position: relative;
  width: 100%;
  padding-top: 100%;            /* khung vuông */
  background: #f7f8f7;
}
#ct-products .ct-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;          /* hiện trọn trái cây, không cắt */
  padding: 8px;
}
#ct-products .ct-body { text-align: center; padding: 12px 10px 16px; }
#ct-products .ct-cat {
  font-size: 12px; text-transform: uppercase; letter-spacing: .04em;
  color: #209e2e; opacity: .85; margin: 0 0 4px;
}
#ct-products .ct-name { font-weight: 600; color: #1e1e1e; margin: 0; font-size: 15px; line-height: 1.35; }
#ct-products .ct-name a, #ct-products a.ct-name-link { color: inherit; text-decoration: none; }
#ct-products .ct-name a:hover { color: #209e2e; }
#ct-products .ct-desc { color: #6b7280; font-size: 13px; margin: 6px 0 0; }
