/* MayGirl global footer - extracted from home-fx css 20260821-141726 */
:root {
  --ec-bg-dark: #1E1A14;
  --ec-font-display: 'Lora', Georgia, 'Times New Roman', serif;
  --ec-primary: #C6B991;
  --ec-font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --ec-transition: 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}



.ec-footer {
  background: var(--ec-bg-dark);
  color: rgba(255, 255, 255, 0.75);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1rem, 4vw, 2rem) 0;
  position: relative;
  z-index: 1;
}

.ec-footer__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.ec-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 640px) {
  .ec-footer__grid {
    grid-template-columns: repeat(2, 1fr);
  }

@media (min-width: 960px) {
  .ec-footer__grid {
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
  }


.ec-footer__col-title {
  font-family: var(--ec-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 1.1rem;
  line-height: 1.3;
}


/* Brand column */
.ec-footer__brand-name {
  font-family: var(--ec-font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ec-primary);
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.ec-footer__brand-text {
  font-family: var(--ec-font-body);
  font-size: 0.92rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.7);
  margin: 0 0 1.25rem;
}

.ec-footer__social {
  display: flex;
  gap: 0.55rem;
}

.ec-footer__social a {
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: background var(--ec-transition), color var(--ec-transition), transform var(--ec-transition);
}

.ec-footer__social a:hover {
  background: var(--ec-primary);
  color: #fff;
  transform: translateY(-2px);
}

.ec-footer__social svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}


/* Link list (Shop, Help columns) */
.ec-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.ec-footer__list a {
  font-family: var(--ec-font-body);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  transition: color var(--ec-transition);
}

.ec-footer__list a:hover {
  color: var(--ec-primary);
}


/* Contact rows */
.ec-footer__contact-row {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-family: var(--ec-font-body);
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.ec-footer__contact-row + .ec-footer__contact-row {
  margin-top: 0.7rem;
}

.ec-footer__contact-row svg {
  width: 16px;
  height: 16px;
  stroke: var(--ec-primary);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
  margin-top: 4px;
}

.ec-footer__contact-row a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ec-transition);
}

.ec-footer__contact-row a:hover {
  color: var(--ec-primary);
}


/* Bottom bar */
.ec-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 3rem;
  padding: 1.5rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  font-family: var(--ec-font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

@media (min-width: 640px) {
  .ec-footer__bottom {
    flex-direction: row;
  }

.ec-footer__bottom-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.ec-footer__bottom-links a {
  color: inherit;
  text-decoration: none;
  transition: color var(--ec-transition);
}

.ec-footer__bottom-links a:hover {
  color: var(--ec-primary);
}

/* Site-wide additions */
.absolute-footer { display: none !important; }
.ec-footer [class*="ec-fx-"] { opacity: 1 !important; transform: none !important; }
.ec-footer__payments { display: flex; gap: 8px; margin-right: 18px; }
.ec-footer__payments span { font-family: var(--ec-font-body); font-size: 0.72rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.55); border: 1px solid rgba(255,255,255,0.18); border-radius: 4px; padding: 2px 8px; }
