/* ===== PESANAN DIGITAL PAGE ===== */

/* ── Body item: thumbnail + info + action sejajar ──────────────── */
.pd-item-body {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Thumbnail portrait (cover buku/video) */
.pd-thumb {
  width: 80px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid #f0f0f0;
  flex-shrink: 0;
  background: #f8f8f8;
}
.pd-thumb.grayscale {
  filter: grayscale(100%);
  opacity: 0.6;
}

/* Info produk — tumbuh mengisi sisa ruang */
.pd-item-info {
  flex: 1;
  min-width: 0;
}

/* Kolom kanan: harga + tombol */
.pd-item-action {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  min-width: 130px;
}

/* Tombol aksi full-width di dalam kolom kanan */
.pd-action-btn {
  width: 100%;
  text-align: center;
  padding: 10px 16px;
}

/* Mobile: action pindah ke bawah */
@media (max-width: 575.98px) {
  .pd-item-body {
    flex-wrap: wrap;
  }
  .pd-item-action {
    width: 100%;
    min-width: unset;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #f5f5f5;
    padding-top: 12px;
    margin-top: 4px;
  }
  .pd-action-btn {
    width: auto;
  }
}
