/* ═══════════════════════════════════════════════════════════
   24By7Snacks — Footer Styles
   ═══════════════════════════════════════════════════════════ */

#site-footer {
  background: #050505;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 70px clamp(20px, 5vw, 80px) 30px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.2fr 1.5fr;
  gap: clamp(24px, 2vw, 40px);
  max-width: var(--container-max);
  margin: 0 auto;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* ── Column 1: Brand ───────────────────────────────────── */
.footer-brand .footer-logo {
  display: inline-flex;
  flex-direction: column;
  margin-bottom: 16px;
  text-decoration: none;
}

.footer-logo .logo-badge {
  font-family: var(--font-display);
  font-size: 0.6rem;
  background: var(--yellow);
  color: #0A0A0A;
  padding: 2px 10px;
  border-radius: 50px;
  display: inline-block;
  margin-bottom: 2px;
}

.footer-logo .logo-main {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--white);
}

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.2s var(--ease-spring);
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.06);
}

.social-icon:hover {
  background: var(--yellow);
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(255,214,0,0.3);
}

/* ── Columns 2–4: Links ────────────────────────────────── */
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 20px;
  text-transform: uppercase;
}

.footer-newsletter {
  margin-top: 24px;
}
.footer-newsletter p {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--white);
  margin-bottom: 12px;
}
.footer-newsletter-form {
  display: flex;
  background: var(--white);
  border-radius: 50px;
  overflow: hidden;
  padding: 4px;
}
.footer-newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 8px 16px;
  font-family: var(--font-body);
  color: #0A0A0A;
  outline: none;
}
.footer-newsletter-form button {
  background: #0A0A0A;
  color: var(--white);
  border: none;
  padding: 8px 24px;
  font-family: var(--font-display);
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.footer-newsletter-form button:hover {
  background: var(--yellow);
  color: #0A0A0A;
}

.footer-disclaimer {
  margin-top: 24px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}

.footer-col .sub-section {
  margin-top: 32px;
}

.contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.5;
}
.contact-item .contact-icon {
  font-size: 1.2rem;
}

.address-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
}
.address-item .address-icon {
  font-size: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a,
.footer-col ul li span {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s ease;
  cursor: pointer;
  display: block;
}

.footer-col ul li a:hover {
  color: var(--white);
}

/* ── Bottom Bar ────────────────────────────────────────── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.footer-copyright {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  font-weight: 400;
}

.payment-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.payment-badge {
  background: rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 4px 10px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.68rem;
  color: rgba(255,255,255,0.45);
  border: 1px solid rgba(255,255,255,0.06);
  letter-spacing: 0.5px;
}

/* ── Responsive Footer ─────────────────────────────────── */
@media (max-width: 900px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 500px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}
