/* ========================================
   FOOTER ELETROFRIO
   ======================================== */

.ef-footer {
  background: #0f1e5a;
  color: rgba(255,255,255,.75);
  font-size: .875rem;
  line-height: 1.6;
  margin-top: 0;
}

/* Hide Storefront's default footer */
.site-footer { display: none !important; }

/* ── Newsletter bar ── */
.ef-footer__newsletter {
  background: #1B2F8A;
  border-bottom: 1px solid rgba(255,255,255,.1);
  padding: 28px 0;
}

.ef-footer__newsletter-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.ef-footer__newsletter strong {
  display: block;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.ef-footer__newsletter p {
  margin: 0;
  color: rgba(255,255,255,.65);
  font-size: .85rem;
}

.ef-newsletter-form {
  display: flex;
  gap: 0;
  flex-shrink: 0;
}

.ef-newsletter-form input[type="email"] {
  padding: 10px 16px;
  border: none;
  border-radius: 4px 0 0 4px;
  font-size: .9rem;
  width: 260px;
  background: rgba(255,255,255,.12);
  color: #fff;
  outline: none;
}

.ef-newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,.45);
}

.ef-newsletter-form input[type="email"]:focus {
  background: rgba(255,255,255,.2);
}

.ef-newsletter-form button {
  padding: 10px 20px;
  background: #00AECC;
  color: #fff;
  border: none;
  border-radius: 0 4px 4px 0;
  font-weight: 700;
  font-size: .85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s;
}

.ef-newsletter-form button:hover {
  background: #009ab8;
}

/* ── Footer main (5 columns) ── */
.ef-footer__main {
  padding: 48px 0 32px;
}

.ef-footer__main-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 1.4fr;
  gap: 32px 40px;
}

/* ── About column ── */
.ef-footer__logo {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: .03em;
  margin-bottom: 12px;
}

.ef-footer__col--about p {
  color: rgba(255,255,255,.6);
  font-size: .82rem;
  line-height: 1.65;
  margin: 0 0 16px;
}

.ef-footer__social {
  display: flex;
  gap: 10px;
}

.ef-footer__social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s;
  text-decoration: none;
}

.ef-footer__social a:hover {
  background: #00AECC;
  color: #fff;
}

/* ── Link columns ── */
.ef-footer__col h4 {
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin: 0 0 16px;
}

.ef-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ef-footer__col ul li {
  margin-bottom: 9px;
}

.ef-footer__col ul li a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .85rem;
  transition: color .2s;
}

.ef-footer__col ul li a:hover {
  color: #00AECC;
}

/* ── Contact column ── */
.ef-footer__contact li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: .85rem;
  margin-bottom: 10px;
}

.ef-footer__contact li svg {
  flex-shrink: 0;
  color: #00AECC;
}

.ef-footer__contact a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: color .2s;
}

.ef-footer__contact a:hover {
  color: #00AECC;
}

/* ── Bottom bar ── */
.ef-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  background: rgba(0,0,0,.2);
}

.ef-footer__bottom-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.ef-footer__bottom-inner > span {
  color: rgba(255,255,255,.4);
  font-size: .78rem;
}

.ef-footer__payment {
  display: flex;
  align-items: center;
  gap: 8px;
}

.ef-footer__payment > span:first-child {
  color: rgba(255,255,255,.4);
  font-size: .78rem;
}

.ef-payment-icon {
  padding: 3px 8px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 3px;
  color: rgba(255,255,255,.7);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .03em;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .ef-footer__main-inner {
    grid-template-columns: 1fr 1fr;
  }
  .ef-footer__col--about {
    grid-column: 1 / -1;
  }
  .ef-newsletter-form input[type="email"] {
    width: 200px;
  }
}

@media (max-width: 600px) {
  .ef-footer__main-inner {
    grid-template-columns: 1fr;
  }
  .ef-footer__newsletter-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .ef-newsletter-form {
    width: 100%;
  }
  .ef-newsletter-form input[type="email"] {
    flex: 1;
    width: auto;
  }
  .ef-footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
