/* =====================================================
   PDP Guides（送料無料／保証）— カート下のリンクバナー
   ===================================================== */

.pdp-guides{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  margin-top: 16px; /* カートボタンとの間隔 */
}

@media (max-width: 640px){
  .pdp-guides{ grid-template-columns: 1fr; } /* スマホは縦積み */
}

.pdp-guide{
  display: grid;
  grid-template-columns: 32px 1fr;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  text-decoration: none;
  color: var(--c-fg, #111);
  background: #f8fafc;
  border: 1px solid var(--c-border, #e5e7eb);
  border-radius: 12px;
  transition: background .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.pdp-guide:hover{
  background: #fff;
  border-color: #d9dde2;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
}

.pdp-guide__icon svg{
  width: 28px;
  height: 28px;
  display: block;
}

.pdp-guide__text{ line-height: 1.2; }
.pdp-guide__text strong{
  display: block;
  font-weight: 600;
  font-size: 15px;
}
.pdp-guide__text small{
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: #6b7280; /* muted */
}
