/* =========================
   U7BUY STYLE FOOTER
   PREFIX: u7x-
========================= */

.u7x-footer {
  background: black;
  font-family: system-ui, -apple-system, sans-serif;
  color: #374151;
}

.u7x-container {
  max-width: 1200px;
  margin: auto;
  padding: 40px 16px 24px;
}

/* PAYMENT */
.u7x-payments {
  display: flex;
  gap: 1px;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 40px;
  margin-left: -10px;
}

.u7x-payments img {
  height: 35px;
  object-fit: contain;
}

/* GRID */
.u7x-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 48px;
}

/* BRAND */
.u7x-brand {
  max-width: 280px;
}

.u7x-logo {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 10px;
}

.u7x-tagline {
  font-size: 14px;
  color: white;
  margin-bottom: 6px;
}

.u7x-copy {
  font-size: 12px;
  color: #9ca3af;
  line-height: 1.6;
}

/* SOCIAL */
.u7x-social {
  margin-top: 14px;
  color: white;
  gap: 12px;
}

.u7x-social a {
  font-size: 12px;
  color: white;
  text-decoration: none;
}

/* COLUMN */
.u7x-col h4 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 14px;
  color: white;
}

/* DEFAULT */
.u7x-col a {
  color: white;
  text-decoration: none;
  transition: color .15s ease;
}

/* HOVER */
.u7x-col a:hover {
  color: #e53935;
}

/* ACTIVE (DIKLIK) */
.u7x-col a:active {
  color: #e53935; /* MERAH */
}

/* ACTIVE STATE (JIKA HALAMAN AKTIF) */
.u7x-col a.is-active,
.u7x-col a[aria-current="page"] {
  color: #e53935;
  font-weight: 500;
}

/* BOTTOM NOTE */
.u7x-bottom-note {
  margin-top: 40px;
  font-size: 12px;
  color: white;
  text-align: center;
}


/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  /* PAYMENT CENTER */
  .u7x-payments {
    justify-content: left;
    margin-bottom: 28px;
    margin-left: -10px;
  }

  /* GRID UTAMA */
  .u7x-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  /* BRAND FULL WIDTH */
  .u7x-brand {
    grid-column: 1 / -1;
    max-width: 100%;
  }

  .u7x-social {
    justify-content: center;
  }

  /* COLUMN */
  .u7x-col {
    text-align: left;
  }

  .u7x-col h4 {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .u7x-col a {
    font-size: 13px;
    margin-bottom: 8px;
  }

  /* BOTTOM NOTE */
  .u7x-bottom-note {
    font-size: 11px;
    padding: 0 12px;
  }
}
