/* Variables */
:root {
  --groomit-black: #2E2E2E;
  --groomit-gray: #7C868A;
  --groomit-border: #BEC3C5;
  --groomit-input-bg: #FBFBFB;
  --groomit-dark-blue: #3064A3;
  --groomit-error-color: #EB5757;
  --groomit-red: #FF314A;
  --groomit-light-gray: #E4E4E4;
  --groomit-F2F2F2: #F2F2F2;
  --groomit-recurring: #0A7170;
  --groomit-green: #28B446;
}

/* ===== FOOTER BASE ===== */
.groomit-footer {
  font-family: "Inter", sans-serif;
  background: #f5f5f5;
  color: #2A2A2A;
  padding: 0;
}

/* ===== BRANDS ROW ===== */
.groomit-footer__brands {
  background: #F2F2F2;
  padding: 15px 67px;
}

.groomit-footer__brands-wrapper {
  display: flex;
  align-items: center;
}

/* Each logo takes equal width */
.groomit-footer__brands-wrapper a {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 0 20px;
}

/* Divider */
.groomit-footer__brands-wrapper a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 40px;
  background: #BEC3C5;
}

/* Logo styling */
.groomit-footer__brands-wrapper img {
  max-height: 45px;
  width: auto;
  transition: 0.3s ease;
}

/* ===== MAIN AREA ===== */
.groomit-footer__main {
  background-color: white;
  padding: 50px 0 20px;
}

.groomit-footer__top {
  display: flex;
  gap: 80px;
  flex-wrap: wrap;
}

.footer-logo {
  width: 160px;
  margin-bottom: 20px;
}

.footer-apps img {
  height: 40px;
  margin-right: 10px;
  margin-bottom: 15px;
}

.footer-help {
  font-size: 16px;
  margin-bottom: 15px;
  font-family: "Inter 400";
}

.footer-help a {
  color: #000;
  font-weight: 700;
}

.footer-social a {
  margin-right: 10px;
  text-decoration: none;
}

.footer-social a:hover {
  color: #000;
}

/* ===== LINKS GRID ===== */
.groomit-footer__links {
  display: flex;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
}

.footer-column {
  min-width: 180px;
}

.footer-column h4 {
  color: var(--Black, #2E2E2E);
  font-size: 16px;
  font-family: "Inter 700";
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.footer-column a {
  display: block;
  font-size: 16px;
  font-family: "Inter 400";
  margin-bottom: 8px;
  color: var(--Gray, #7C868A);
  text-decoration: none;
  font-weight: 400;
  transition: 0.2s;
}

.footer-column a:hover {
  color: #000;
}

/* ===== BOTTOM BAR ===== */
.groomit-footer__bottom {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #BEC3C5;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 14px;
  font-family: "Inter 400";
  color: #2E2E2E;
  text-decoration: none;
}

.footer-bottom-links span {
  margin: 0 8px;
  color: #2E2E2E;
}

.footer-copy {
  font-size: 14px;
  font-family: "Inter 400";
  color: #2E2E2E;
}

.display-border {
  display: none;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1400px) {
  .groomit-footer__top {
    gap: 40px;
  }

  .groomit-footer__links {
    gap: 15px;
  }
}

@media (max-width: 1240px) {
  .groomit-footer__links {
    width: 100%;
  }

  .display-border {
    display: block;
  }

  .groomit-footer__brand {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 992px) {
  .groomit-footer__links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .footer-help {
    font-size: 14px;
  }

  .footer-column h4 {
    font-size: 14px;
  }

  .footer-column a {
    font-size: 14px;
  }

  .footer-bottom-links a {
    font-size: 12px;
  }

  .footer-copy {
    font-size: 12px;
  }

  .display-border {
    display: none;
  }

  .groomit-footer__brand {
    display: block;
    text-align: center;
  }

  .groomit-footer__main {
    padding: 30px 0 100px;
  }

  .groomit-footer__brands {
    padding: 15px 0;
  }

  .groomit-footer__brands-wrapper {
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 0;
    padding: 0;
    scroll-snap-type: x mandatory;
  }

  .groomit-footer__brands-wrapper a {
    flex: 0 0 auto;
    scroll-snap-align: center;
  }

  .groomit-footer__links {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px 20px;
    width: 100%;
  }

  .footer-column {
    min-width: unset;
    text-align: left;
  }

  /* Optional: hide scrollbar */
  .groomit-footer__brands-wrapper::-webkit-scrollbar {
    display: none;
  }
}

@media (max-width: 576px) {
  .groomit-footer__top {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .groomit-footer__brand {
    width: 100%;
  }

  .footer-apps {
    display: flex;
    justify-content: center;
    gap: 0;
  }

  .footer-social {
    display: flex;
    justify-content: center;
    gap: 0;
  }

  .groomit-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    margin-top: 10px;
  }

  .footer-bottom-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
    gap: 2px;
    padding: 0 120px 0 0;
    align-items: center;
  }
}

@media (max-width: 420px) {
  .groomit-footer__links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 350px) {
  .footer-bottom-links {
    gap: 0;
    padding: 0;
  }
}

/*# sourceMappingURL=footer-latest.css.map */