.site-footer {
  max-width: 100% !important;
  background-color: #06274f;
  color: #fff;
  padding: 40px 0px 60px 0px;
  font-size: 1rem;
}

/* Inner container for max-width */
.footer-inner {
  max-width: 1240px !important;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  box-sizing: content-box;
  padding: 0 20px;
  width: auto !important;
}

.footer-column {
  flex: 1;
  border-right: 1px solid rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 22px;
  display: flex;
  flex-direction: column;
}

/* first column - no left padding */
.footer-column:first-child .footer-column-inner {
  padding-left: 0;
}

.footer-column-inner {
  padding-left: 30px;
}

.last-footer-desktop-column {
  border-right: 0 !important;
  padding-right: 0 !important;
}

.footer-subcolumns {
  display: flex;
  flex-direction: row;
  gap: 60px;
}

.footer-column-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 40px;
  color: var(--color-secondary);
  line-height: 1.3em;
}

.footer-item {
  margin-bottom: 26px;
  font-weight: 400;
  line-height: 1.6;
}

.footer-item:last-child {
  margin-bottom: 0;
  margin-top: auto;
}

.footer-column .highlight {
  color: var(--color-secondary);
  font-weight: 500;
}

.payment-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.payment-list li {
  display: flex;
  align-items: center; /* ✅ centers icon and text vertically */
  gap: 16px;
  margin-bottom: 24px;
}

.payment-list .icon {
  width: 32px; /* fixed width so text starts at same column */
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center; /* centers image inside the box */
}

.payment-list .icon img {
  max-width: 100%;
  height: auto;
  display: block;
}

.payment-list .text {
  flex: 1; /* take the rest of the row */
}

.guarantee,
.guarantee-mobile {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: white !important;
  margin-top: 100px;
}

.footer-social {
  margin-top: 50px;
}

.footer-social img,
.footer-social-mobile img {
  width: 40px;
  height: 40px;
}

.footer-mobile-foot {
  display: none;
}

/* Mobile view */
@media (max-width: 768px) {
  .site-footer {
    padding-bottom: 130px !important;
  }

  footer .footer-inner {
    flex-direction: column;
    gap: 40px;
    padding: 0 20px;
  }

  .footer-column {
    border-right: none;
    padding-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    padding-bottom: 20px;
  }

   .footer-subcolumns {
	justify-content:space-between;   
	   
   }

  .footer-column-inner {
    padding-left: 0; /* prevent double padding on mobile */
  }

  .footer-item:last-child {
    margin-bottom: 20px;
    margin-top: auto;
  }

  .footer-column:last-child {
    border-bottom: none;
  }

  .footer-social,
  .guarantee {
    display: none;
  }

  .footer-mobile-foot {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
  }

  .guarantee-mobile {
    margin-top: 0 !important;
    font-weight: ;
  }
}

/* Tablet view */
@media (max-width: 1040px) {
  .guarantee {
    margin-top: 190px;
  }
}


/*micro phone adjustmenet */
@media (max-width: 395px) {
  .footer-subcolumns {
    gap: 7vw;
  }
}