/* Amazon product card for the Hell's Kitchen static mirror — AAWP-style box
   matching the sibling Astro sites (image · brand · title · features · "Check
   price on Amazon"). The card is a <div> (an <a> wrapping block children gets
   split by the HTML parser); the whole card is clickable via the button's
   stretched-link overlay. Injected by transform.mjs. No star ratings — never
   fabricated. */
.hk-pbox {
  position: relative;                 /* anchor for the stretched-link overlay */
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 20px;
  align-items: start;
  padding: 18px;
  margin: 20px 0;
  border: 1px solid #e6ddd0;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(30, 18, 10, 0.05);
  color: #241c16;
  transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}
.hk-pbox:hover,
.hk-pbox:focus-within {
  border-color: #c41e3a;
  box-shadow: 0 8px 22px -12px rgba(196, 30, 58, 0.45);
  transform: translateY(-1px);
}
.hk-pbox__media { display: flex; align-items: center; justify-content: center; background: #fff; }
.hk-pbox__media img { display: block; width: 100%; height: auto; max-height: 160px; object-fit: contain; }
.hk-pbox__body { display: block; min-width: 0; }
.hk-pbox__brand {
  margin: 0; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; color: #8a7a6a;
}
.hk-pbox__title {
  margin: 0.15rem 0 0; font-weight: 700; font-size: 1.05rem; line-height: 1.3; color: #c41e3a;
}
.hk-pbox:hover .hk-pbox__title { text-decoration: underline; }
.hk-pbox__features { margin: 0.5rem 0 0; padding-left: 1.15rem; display: grid; gap: 0.2rem; list-style: disc; }
.hk-pbox__features li { font-size: 0.85rem; line-height: 1.4; color: #4a4038; }
.hk-pbox__footer {
  margin-top: 0.85rem; display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.hk-pbox__stamp { font-size: 0.73rem; color: #8a7a6a; }
/* the ONE link — styled as a button, its click area stretched over the whole card */
.hk-pbox__btn {
  position: relative; z-index: 2;
  display: inline-block; padding: 0.55rem 1.2rem; background: #ffd814; border: 1px solid #fcd200;
  border-radius: 999px; font-weight: 700; font-size: 0.9rem; color: #0f1111;
  text-decoration: none; white-space: nowrap;
}
.hk-pbox__btn::after { content: ""; position: absolute; inset: 0; z-index: 1; }  /* stretched link */
.hk-pbox:hover .hk-pbox__btn { background: #f7ca00; }
.hk-pbox__btn:focus-visible { outline: 2px solid #c41e3a; outline-offset: 2px; }

@media (max-width: 560px) {
  .hk-pbox { grid-template-columns: 1fr; gap: 14px; padding: 14px; }
  .hk-pbox__media { max-width: 170px; margin: 0 auto; }
  .hk-pbox__footer { flex-direction: column; align-items: stretch; gap: 0.7rem; }
  .hk-pbox__btn { text-align: center; padding: 0.8rem 1.2rem; }
}
