
/* =========================================================
   AngelNumber site-wide footer
   ========================================================= */

.angel-site-footer {
  --af-bg: #064b54;
  --af-bg-deep: #053f47;
  --af-text: #f4efe2;
  --af-muted: #bdd4d1;
  --af-accent: #79e1d0;
  --af-line: rgba(235, 244, 240, .14);

  position: relative;
  z-index: 3;
  width: 100%;
  margin: 0;
  padding: 0;
  background:
    linear-gradient(135deg, var(--af-bg-deep) 0%, var(--af-bg) 58%, #07545c 100%);
  color: var(--af-text);
  font-family: Arial, Helvetica, sans-serif;
}

.angel-footer-shell {
  width: min(1760px, calc(100% - 64px));
  margin: 0 auto;
  padding: 40px 0 20px;
}

.angel-footer-main {
  display: grid;
  grid-template-columns: minmax(330px, 1.28fr) minmax(190px, .72fr) minmax(235px, .88fr) minmax(230px, .76fr);
  gap: clamp(34px, 5vw, 92px);
  align-items: start;
}

.angel-footer-logo {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: #fff !important;
  font-size: 19px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: .16em;
  text-decoration: none !important;
}

.angel-footer-mark {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(244, 239, 226, .75);
  border-radius: 50%;
  color: #f1d9a3;
  font-size: 17px;
  letter-spacing: 0;
}



.angel-footer-disclaimer {
  max-width: 510px;
  margin: 26px 0 0;
  color: var(--af-muted);
  font-size: 12px;
  line-height: 1.7;
}

.angel-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
}

.angel-footer-column h2 {
  margin: 0 0 7px !important;
  padding: 0 !important;
  color: var(--af-accent) !important;
  font-family: Arial, Helvetica, sans-serif !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  line-height: 1.3 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

.angel-footer-column a,
.angel-footer-bottom a {
  position: relative;
  display: inline-block;
  color: #eef6f3 !important;
  font-size: 13px;
  line-height: 1.45;
  text-decoration: none !important;
  transition: color .18s ease, opacity .18s ease;
}

.angel-footer-column a::after,
.angel-footer-bottom a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  height: 1px;
  background: var(--af-accent);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform .18s ease;
}

.angel-footer-column a:hover,
.angel-footer-bottom a:hover {
  color: var(--af-accent) !important;
}

.angel-footer-column a:hover::after,
.angel-footer-bottom a:hover::after {
  transform: scaleX(1);
}

.angel-footer-contact p {
  max-width: 240px;
  margin: 6px 0 0;
  color: var(--af-muted);
  font-size: 12px;
  line-height: 1.65;
}

.angel-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin-top: 40px;
  padding-top: 18px;
  border-top: 1px solid var(--af-line);
}

.angel-footer-bottom-left {
  display: flex;
  gap: 10px;
  align-items: baseline;
  color: var(--af-muted);
  font-size: 11px;
}

.angel-footer-bottom-left strong {
  color: #fff;
  font-size: 12px;
}

.angel-footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 9px 25px;
}

.angel-footer-bottom-links a {
  position: relative;
  padding-bottom: 7px;
  font-size: 11px;
}

.angel-footer-bottom-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: rgba(238, 246, 243, .22);
}

/* Prevent theme margins from visually separating the custom footer */
body.has-angel-site-footer {
  margin-bottom: 0;
}

@media (max-width: 1050px) {
  .angel-footer-main {
    grid-template-columns: 1.35fr 1fr 1fr;
  }

  .angel-footer-contact {
    grid-column: 2 / 4;
  }
}

@media (max-width: 760px) {
  .angel-footer-shell {
    width: min(100% - 34px, 620px);
    padding-top: 31px;
  }

  .angel-footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }

  .angel-footer-brand {
    grid-column: 1 / -1;
  }

  .angel-footer-contact {
    grid-column: 1 / -1;
  }

  .angel-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 30px;
  }

  .angel-footer-bottom-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .angel-footer-main {
    grid-template-columns: 1fr;
    gap: 27px;
  }

  .angel-footer-brand,
  .angel-footer-contact {
    grid-column: auto;
  }

  .angel-footer-logo {
    font-size: 17px;
  }

  .angel-footer-lead {
    font-size: 14px;
  }

  .angel-footer-bottom-links {
    flex-direction: column;
    gap: 8px;
  }

  .angel-footer-bottom-links a {
    width: fit-content;
  }
}


/* =========================================================
   v1.0.1 — compact footer polish
   ========================================================= */

.angel-footer-shell {
  width: min(1760px, calc(100% - 64px));
  padding-top: 30px;
  padding-bottom: 15px;
}

.angel-footer-main {
  grid-template-columns:
    minmax(340px, 1.15fr)
    minmax(180px, .66fr)
    minmax(235px, .80fr)
    minmax(235px, .70fr);
  gap: clamp(30px, 4.2vw, 72px);
}

.angel-footer-mark {
  width: 36px;
  height: 36px;
  font-size: 15px;
}

.angel-footer-logo {
  gap: 11px;
  font-size: 18px;
}


.angel-footer-seller {
  margin-top: 18px;
  gap: 2px;
  font-size: 11px;
  line-height: 1.5;
}

.angel-footer-disclaimer {
  max-width: 520px;
  margin-top: 16px;
  font-size: 11px;
  line-height: 1.62;
}

.angel-footer-column {
  gap: 11px;
}

.angel-footer-column h2 {
  margin-bottom: 5px !important;
  font-size: 12px !important;
}

.angel-footer-column a,
.angel-footer-bottom a {
  font-size: 12px;
}

.angel-footer-contact p {
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.55;
}

.angel-footer-bottom {
  margin-top: 28px;
  padding-top: 14px;
}

.angel-footer-bottom-links {
  gap: 8px 22px;
}

.angel-footer-bottom-links a {
  padding-bottom: 5px;
  font-size: 10px;
}

.angel-footer-bottom-left {
  font-size: 10px;
}

.angel-footer-bottom-left strong {
  font-size: 11px;
}

@media (max-width: 1050px) {
  .angel-footer-shell {
    padding-top: 28px;
  }

  .angel-footer-main {
    gap: 28px;
  }

  .angel-footer-bottom {
    margin-top: 25px;
  }
}

@media (max-width: 760px) {
  .angel-footer-shell {
    width: min(100% - 32px, 620px);
    padding-top: 26px;
    padding-bottom: 14px;
  }

  .angel-footer-main {
    gap: 25px 22px;
  }

  .angel-footer-bottom {
    margin-top: 24px;
  }
}


/* =========================================================
   v1.0.2 — no duplicated bottom menu
   ========================================================= */
.angel-footer-bottom {
  justify-content: flex-start;
}

.angel-footer-bottom-left {
  gap: 9px;
}


/* =========================================================
   v1.0.7 — cleaner brand column + quieter email
   ========================================================= */
.angel-footer-email {
  color: #eef6f3;
  font-size: 12px !important;
  line-height: 1.45;
  font-weight: 400 !important;
  letter-spacing: 0;
}

@media (max-width: 760px) {
  .angel-footer-email {
    font-size: 12px !important;
  }
}


/* =========================================================
   v1.0.8 — unified brand/menu typography
   ========================================================= */

.angel-footer-logo {
  gap: 12px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: .14em;
}

.angel-footer-mark {
  width: 40px;
  height: 40px;
  font-size: 17px;
}

/* Footer menu stays deliberately quieter than the header */
.angel-footer-column h2 {
  font-size: 12px !important;
  font-weight: 800 !important;
}

.angel-footer-column a {
  font-size: 12px;
  font-weight: 400;
}

.angel-footer-email {
  font-size: 12px !important;
  font-weight: 400 !important;
}

@media (max-width: 760px) {
  .angel-footer-logo {
    font-size: 16px;
    letter-spacing: .14em;
  }

  .angel-footer-mark {
    width: 36px;
    height: 36px;
    font-size: 15px;
  }
}
