/* Shared empty-image treatment. Accent follows the site's selected color palette. */
body .nf-single-noimage,
body .nf-catalog-noimage,
body .nf-saved-no-image,
body .nf-image-placeholder {
  box-sizing:border-box;
  display:flex!important;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:12px;
  width:100%;
  height:100%;
  min-height:120px;
  aspect-ratio:1;
  padding:20px;
  background:#f6f6f5;
  background:color-mix(in srgb,var(--nf-accent,#555) 5%,white);
  color:#595959;
  border:1px solid #e7e7e5;
  border-color:color-mix(in srgb,var(--nf-accent,#555) 12%,white);
  border-radius:inherit;
  font-size:clamp(12px,1.2vw,16px);
  font-weight:500;
  letter-spacing:.08em;
  text-align:center;
}
body .nf-single-noimage::before,
body .nf-catalog-noimage::before,
body .nf-saved-no-image::before,
body .nf-image-placeholder::before {
  content:'返礼品';
  color:var(--nf-accent,#555);
  font-size:12px;
  font-weight:600;
  letter-spacing:.18em;
  padding:0 0 12px;
  border-bottom:1px solid currentColor;
}
