/* =============================================
   MCAKEY — FOOTER
   ============================================= */

/* Contact */
.mca-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
  font-family: inherit;
}

.mca-footer-phone {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s ease;
}

.mca-footer-phone:hover { color: var(--e-global-color-accent); }

.mca-footer-contact-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mca-footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s ease;
  line-height: 1.5;
  font-family: inherit;
}

.mca-footer-contact-item:hover { color: #fff; }

/* Social */
.mca-footer-socials {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: inherit;
}

.mca-footer-social-btn {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.mca-footer-social-btn:hover {
  background: var(--e-global-color-accent);
  border-color: var(--e-global-color-accent);
}

.mca-footer-social-btn:hover svg {
  fill: var(--e-global-color-secondary) !important;
  stroke: var(--e-global-color-secondary) !important;
}

/* Column title */
.mca-footer-col-title {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.10em;
  text-transform: uppercase;
  margin-bottom: 20px;
  font-family: inherit;
}

/* Links */
.mca-footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-family: inherit;
}

.mca-footer-links a {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  transition: color 0.2s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}

.mca-footer-links a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--e-global-color-accent);
  flex-shrink: 0;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.mca-footer-links a:hover { color: #fff; }
.mca-footer-links a:hover::before { opacity: 1; }

/* Badges */
.mca-footer-badges {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-family: inherit;
}

.mca-footer-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 12px 14px;
  transition: border-color 0.2s ease;
  text-decoration: none;
}

.mca-footer-badge:hover {
  border-color: rgba(255,255,255,0.2);
}

.mca-footer-badge-text {
  display: flex;
  flex-direction: column;
  font-family: inherit;
}

.mca-footer-badge-text strong {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.mca-footer-badge-text span {
  font-size: 10px;
  color: rgba(255,255,255,0.5);
}

.mca-footer-links a:hover,
.mca-footer-phone:hover,
.mca-footer-contact-item:hover {
  color: var(--e-global-color-accent) !important;
}

/* Bottom bar */
.mca-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
}

.mca-footer-copyright {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: inherit;
}

.mca-footer-copyright-main {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
}

.mca-footer-copyright-sub {
  font-size: 11px;
  color: rgba(255,255,255,0.75);
  line-height: 1.5;
}

.mca-footer-payments {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  font-family: inherit;
}

.mca-footer-payments-label {
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
}

.mca-footer-payment-icons {
  display: flex;
  align-items: center;
  gap: 6px;
  pointer-events: none;
  user-select: none;
}

.mca-footer-payment-icon {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 6px;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  white-space: nowrap;
  font-family: inherit;
}

.mca-paypal { color: #009cde !important; }
.mca-visa { color: #1a1f71 !important; background: #fff !important; }
.mca-mc { color: #fff !important; background: #EB001B !important; }
.mca-crypto { color: #F7931A !important; }

@media (max-width: 1024px) {
  .mca-footer-payments { justify-content: flex-start; }
}

@media (max-width: 767px) {
  .mca-footer-copyright-main { font-size: 12px; }
  .mca-footer-payments { gap: 8px; }
  .mca-footer-payment-icons { gap: 4px; }
}
