/* Richie Gold & Diamonds — supplied payment and verification marks, 2026-09-16.
 * Source artwork is owner-supplied and retained at its original proportions.
 * The light panel prevents colour logos from disappearing into the dark storefront footer.
 */
.trust-marks-panel {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto 28px;
  padding: 22px;
  border: 1px solid rgba(212, 175, 55, 0.46);
  border-radius: 18px;
  color: #16191f;
  background: #fffdf8;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.24);
}
.trust-marks-heading {
  margin: 0;
  color: #17120a;
  font-family: inherit;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
}
.trust-marks-description {
  max-width: 720px;
  margin: 8px auto 0;
  color: #48433a;
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}
.trust-marks-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}
.trust-mark {
  position: relative;
  display: grid;
  min-height: 94px;
  min-width: 48px;
  place-items: center;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(23, 18, 10, 0.15);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15, 17, 23, 0.08);
  transition: transform 160ms cubic-bezier(0.23, 1, 0.32, 1), border-color 160ms cubic-bezier(0.23, 1, 0.32, 1), box-shadow 160ms cubic-bezier(0.23, 1, 0.32, 1);
}
.trust-mark:hover {
  z-index: 1;
  border-color: rgba(172, 128, 17, 0.72);
  box-shadow: 0 9px 22px rgba(15, 17, 23, 0.15);
  transform: translateY(-2px);
}
.trust-mark img {
  display: block;
  width: 100%;
  max-width: 150px;
  height: 62px;
  object-fit: contain;
}
.trust-mark--tabby img { max-width: 132px; }
.trust-mark--planet img { max-width: 130px; height: 52px; }
.trust-mark--gia img { max-width: 142px; }
.trust-mark--igi img { max-width: 132px; }
.trust-mark--chamber img { max-width: 145px; }
.trust-mark--jewellery-group img { max-width: 72px; height: 70px; }
.trust-mark:focus-visible {
  z-index: 2;
  outline: 3px solid #8b5e05;
  outline-offset: 3px;
}
@media (max-width: 900px) {
  .trust-marks-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .trust-marks-panel {
    margin: 0 18px 22px;
    padding: 18px 14px;
  }
  .trust-marks-heading { font-size: 10px; }
  .trust-marks-description { font-size: 11.5px; }
  .trust-marks-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 14px;
  }
  .trust-mark { min-height: 90px; padding: 10px; }
  .trust-mark img { max-width: 132px; height: 58px; }
  .trust-mark--jewellery-group { grid-column: 1 / -1; }
  .trust-mark--jewellery-group img { max-width: 74px; height: 68px; }
}
@media (prefers-reduced-motion: reduce) {
  .trust-mark { transition: none; }
  .trust-mark:hover { transform: none; }
}
