/* Watches Footer Variant */
.wtc-footer { background: #0a0a0a; color: rgba(255,255,255,.6); border-top: 1px solid rgba(201,169,110,.25); }

.wtc-footer-main { padding: 64px 0 40px; }
.wtc-footer-cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; }

.wtc-footer-logo-text {
  font-size: 20px; font-weight: 300; letter-spacing: 6px; text-transform: uppercase; color: #fff;
}
.wtc-footer-desc { font-size: 13px; line-height: 1.9; margin: 18px 0 22px; color: rgba(255,255,255,.45); }
.wtc-footer-social { display: flex; gap: 10px; }
.wtc-social {
  width: 34px; height: 34px; border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.5); text-decoration: none; font-size: 15px;
  transition: border-color .2s, color .2s;
}
.wtc-social:hover { border-color: var(--molla-accent); color: var(--molla-accent); }

.wtc-footer-title {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 3px;
  color: #fff; margin-bottom: 20px;
}
.wtc-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.wtc-footer-links a { font-size: 13px; color: rgba(255,255,255,.45); text-decoration: none; transition: color .15s; }
.wtc-footer-links a:hover { color: var(--molla-accent); }

.wtc-footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; }
.wtc-footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; }
.wtc-footer-copy { font-size: 12px; color: rgba(255,255,255,.3); letter-spacing: .5px; }
.wtc-footer-payment { display: flex; gap: 14px; font-size: 20px; color: rgba(255,255,255,.25); }

@media (max-width: 992px) {
  .wtc-footer-cols { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 576px) {
  .wtc-footer-cols { grid-template-columns: 1fr; gap: 28px; }
  .wtc-footer-bottom-inner { flex-direction: column; gap: 10px; text-align: center; }
}
