/* =========================================
   8. TRUST BADGES (Fast Delivery, etc)
   ========================================= */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 25px 0;
  margin: 8px 0 35px;
}
.trust div {
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}
.trust b {
  display: block;
  color: var(--text);
  margin-bottom: 7px;
}

.site-footer {
  position: relative;
  overflow: hidden;
  margin-top: 55px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #12100e 0%, #0b0a09 100%);
}
.footer-glow {
  position: absolute;
  top: -130px;
  left: 50%;
  width: 520px;
  height: 230px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: rgba(217, 156, 46, 0.12);
  filter: blur(65px);
  pointer-events: none;
}
.site-footer .footer-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding-top: 55px;
  padding-bottom: 42px;
}
.footer-brand .brand { display: inline-flex; padding: 0; }
.footer-brand .brand img { width: 42px; height: 42px; }
.footer-brand p, .footer-column p { max-width: 310px; color: var(--muted); line-height: 1.7; }
.footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.site-footer nav.footer-column {
  height: auto;
  max-width: none;
  margin: 0;
  padding: 0;
  justify-content: flex-start;
  border: 0;
}
.footer-column h2 { margin: 0 0 7px; color: #f0d39a; font-size: 16px; }
.footer-column a { color: var(--muted); text-decoration: none; transition: color .25s ease, transform .25s ease; }
.footer-column a:hover { color: var(--gold); transform: translateX(3px); }
.footer-column .footer-cta { color: var(--gold); font-weight: 700; }
.site-footer .footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #29231c;
  padding-top: 20px;
  padding-bottom: 24px;
  color: #8f877d;
  font-size: 13px;
}
.site-footer .footer-bottom p { margin: 0; }
.site-footer--with-chat .footer-bottom { padding-right: 290px; }

@media (max-width: 1024px) {
  .site-footer .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .site-footer--with-chat .footer-bottom { padding-right: 90px; }
}
@media (max-width: 640px) {
  .site-footer { margin-top: 38px; }
  .site-footer .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 24px;
    row-gap: 30px;
    padding-top: 36px;
    padding-bottom: 30px;
  }
  .footer-brand,
  .footer-grid > .footer-column:last-child {
    grid-column: 1 / -1;
  }
  .footer-brand p,
  .footer-grid > .footer-column:last-child p {
    max-width: none;
  }
  .site-footer .footer-bottom {
    flex-direction: column;
    gap: 8px;
    line-height: 1.5;
  }
  .site-footer--with-chat .footer-bottom {
    padding-right: 18px;
    padding-bottom: 88px;
  }
  .footer-column { gap: 8px; }
  .footer-column a { min-height: 36px; display: inline-flex; align-items: center; }
}

@media (max-width: 360px) {
  .site-footer .footer-grid { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-grid > .footer-column:last-child { grid-column: auto; }
}
