.fx-footer {
  width: 100%;
  background: #fff;
  box-sizing: border-box;
}

/* ===== Main ===== */
.fx-footer-main {
  padding: 80px 24px 60px;
}

.fx-footer-grid {
  max-width: 1400px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 48px;
}

/* ===== Columns ===== */
.fx-footer-col {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.fx-footer-col h6 {
  font-size: 18px !important;
  margin-bottom: 10px !important;
  font-weight: 500 !important;
}

.fx-footer-col p,
.fx-footer-col a,
.fx-footer-col li {
  font-size: 14px;
  line-height: 1.7;
}

.fx-footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ===== Brand ===== */
.fx-footer-logo {
  width: 140px;
  margin-bottom: 16px;
}

.fx-footer-link {
  margin-top: 8px;
  display: inline-block;
  border-bottom: 1px solid #000;
  width: fit-content;
}

/* ===== Social ===== */
.fx-footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.fx-footer-socials li a {
  width: 36px;
  height: 36px;
  border: 1px solid #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ===== Newsletter ===== */
.fx-footer-newsletter {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.fx-footer-newsletter input {
  flex: 1;
  padding: 12px;
}

.fx-footer-newsletter button {
  padding: 12px 20px;
  background: #000;
  color: #fff;
  border: none;
  cursor: pointer;
}

/* ===== Selects ===== */
.fx-footer-selects {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

/* ===== Bottom ===== */
.fx-footer-bottom {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  border-top: 1px solid #eee;
  padding: 20px 24px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;

  font-size: 14px;
}

.fx-footer-payments img {
  height: 26px;
  margin-left: 10px;
}

/* ================================
   Footer – Mobile Responsive
================================ */

/* Tablet & below */
@media (max-width: 900px) {
  .fx-footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

/* Mobile */
@media (max-width: 600px) {
  /* Main padding */
  .fx-footer-main {
    padding: 56px 16px 40px;
  }

  /* Grid becomes single column */
  .fx-footer-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  /* Store info width fix */
  .fx-store-inner {
    max-width: 100%;
  }

  /* Footer columns */
  .fx-footer-col {
    gap: 10px;
  }

  .fx-footer-col h6 {
    font-size: 15px !important;
    margin-bottom: 6px !important;
  }

  .fx-footer-col p,
  .fx-footer-col a,
  .fx-footer-col li {
    font-size: 14px;
  }

  /* Newsletter */
  .fx-footer-newsletter {
    flex-direction: column;
    gap: 12px;
  }

  .fx-footer-newsletter button {
    width: 100%;
  }

  /* Selects */
  .fx-footer-selects {
    flex-direction: column;
    gap: 10px;
  }

  /* Social icons */
  .fx-footer-socials {
    gap: 10px;
  }

  /* Bottom bar */
  .fx-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;

    padding: 16px;
    text-align: left;
  }

  .fx-footer-payments img {
    height: 22px;
    margin-left: 0;
    margin-right: 8px;
  }
}