/* =========================================================
   ASHE GLOBAL FOOTER
   ========================================================= */

.ashe-footer {
  background: linear-gradient(180deg, #071a35 0%, #0b2242 100%);
  color: #ffffff;
  margin-top: 0;
}

.ashe-footer__container {
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 18px;
  padding-right: 18px;
  box-sizing: border-box;
}

.ashe-footer__main {
  padding: 42px 0 26px;
}

.ashe-footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.ashe-footer__logo .custom-logo {
  width: 128px;
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 14px;
}

.ashe-footer__title {
  margin: 0 0 10px;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 700;
}

.ashe-footer__heading {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
}

.ashe-footer__text {
  margin: 0;
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  line-height: 1.6;
}

.ashe-footer__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ashe-footer__list li {
  margin: 0 0 10px;
  color: rgba(255,255,255,0.82);
  font-size: 0.9rem;
  line-height: 1.5;
}

.ashe-footer a {
  color: rgba(255,255,255,0.88);
  text-decoration: none;
}

.ashe-footer a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.ashe-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 14px 0;
}

.ashe-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.ashe-footer__copyright,
.ashe-footer__meta {
  margin: 0;
  color: rgba(255,255,255,0.72);
  font-size: 0.82rem;
  line-height: 1.4;
}

/* Mobile */
@media (max-width: 900px) {
  .ashe-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }

  .ashe-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .ashe-footer__main {
    padding: 30px 0 18px;
  }

  .ashe-footer__grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .ashe-footer__container {
    padding-left: 14px;
    padding-right: 14px;
  }

  .ashe-footer__logo .custom-logo {
    width: 110px;
  }
}



/* =========================================================
   KILL STORE­FRONT DEFAULT FOOTER
   ========================================================= */

/* remove default footer layout + spacing */
.site-footer,
.site-info,
.colophon,
.footer-widgets {
  display: none !important;
}

/* remove any residual padding/margins */
.site-footer {
  padding: 0 !important;
  margin: 0 !important;
  border: 0 !important;
  background: none !important;
}

/* kill WooCommerce / Storefront footer widgets */
.footer-widgets,
.footer-widgets .widget {
  display: none !important;
}

/* remove theme-generated credits */
.site-info {
  display: none !important;
}

/* ensure your footer sits clean */
#colophon.ashe-footer {
  display: block !important;
  width: 100%;
  clear: both;
}


footer:not(.ashe-footer) {
  display: none !important;
}




