/* ============================================================
   Packagly — footer.css  (split from style.css)
   Depends on: common.css (variables, reset, icon helpers)
   Responsive @media rules live in responsive.css
   ============================================================ */

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #04120b;
  color: var(--white-70);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 1fr 1.25fr 1.15fr 1.35fr 1.1fr;
  gap: 32px;
  padding: 33px 0 33px;
}
.footer-brand {
  padding-right: 12px;
}
.footer-logo img {
  height: 38px;
  width: auto;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 14px;
  line-height: 1.7;
  color: var(--white-50);
  margin: 0;
  max-width: 240px;
}
.footer-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--green);
  margin: 0 0 18px;
}

/* link lists */
.footer-links li + li {
  margin-top: 11px;
}
.footer-links a {
  font-size: 14px;
  color: var(--white-70);
  transition: color 0.18s ease;
}
.footer-links a:hover {
  color: var(--green);
}

/* contact */
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  line-height: 1.55;
  color: var(--white-70);
}
.footer-contact li + li {
  margin-top: 14px;
}
.footer-contact a {
  color: var(--white-70);
  transition: color 0.18s ease;
}
.footer-contact a:hover {
  color: var(--green);
}
.footer-cico {
  width: 17px;
  height: 17px;
  flex: 0 0 17px;
  margin-top: 2px;
}
svg.footer-cico {
  color: var(--green);
}

/* socials */
.footer-socials {
  display: flex;
  gap: 12px;
  margin-bottom: 26px;
}
.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--white-06);
  border: 1px solid var(--white-15);
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}
.footer-socials a img {
  width: 17px;
  height: 17px;
  filter: brightness(0) invert(1);
}
.footer-socials a:hover {
  background: var(--green);
  border-color: var(--green);
  transform: translateY(-2px);
}

/* free shipping badge */
.footer-shipping {
  display: flex;
  align-items: center;
  gap: 12px;
}
.footer-shipping img {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
}
.footer-shipping span {
  font-size: 13px;
  line-height: 1.4;
  color: var(--white-70);
}
.footer-shipping strong {
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.3px;
}

/* country flags */
.footer-flags {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.footer-flags img {
  width: 40px;
  height: auto;
  border-radius: 3px;
}

/* bottom bar */
.footer-bottom {
  border-top: 1px solid var(--white-10);
  padding: 18px 0;
}
.footer-bottom p {
  margin: 0;
  font-size: 13px;
  color: var(--white-50);
}
/* payment image at the right end of the line (img is display:block, so
   text-align can't move it — push it right with margin) */
.payment-icons {
  width: auto;
  max-height: 30px;
  margin-left: auto;
}
@media (max-width: 767.98px) {
  .payment-icons {
    margin-right: auto; /* centered when the row stacks on mobile */
  }
}

/* ---- footer responsive ---- */
