/* Footer Styles */
.es-site-footer {
  background-color: var(--color-black);
  color: var(--color-light-gray);
  margin-top: var(--space-xxl);
}

/* Newsletter Band */
.es-newsletter-band {
  background-color: var(--color-accent);
  color: var(--color-white);
  padding: var(--space-xl) 0;
  text-align: center;
}

.es-newsletter-band h3 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.es-newsletter-form {
  max-width: 500px;
  margin: var(--space-md) auto 0;
  display: flex;
  gap: var(--space-sm);
}

.es-newsletter-form input[type="email"] {
  border: none;
  border-radius: var(--border-radius);
  padding: 12px 20px;
}

.es-newsletter-form button {
  background-color: var(--color-black);
  color: var(--color-white);
  border: none;
  padding: 12px 24px;
  border-radius: var(--border-radius);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}

.es-newsletter-form button:hover {
  background-color: var(--color-charcoal);
}

/* Footer Grid */
.es-footer-grid {
  padding: var(--space-xl) 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-xl);
}

.es-footer-widget-area h4 {
  color: var(--color-white);
  font-size: 1.1rem;
  margin-bottom: var(--space-md);
  position: relative;
  padding-bottom: var(--space-sm);
}

.es-footer-widget-area h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 30px;
  height: 2px;
  background-color: var(--color-accent);
}

.es-footer-widget-area ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.es-footer-widget-area ul li {
  margin-bottom: var(--space-sm);
}

.es-footer-widget-area a {
  color: var(--color-mid-gray);
}

.es-footer-widget-area a:hover {
  color: var(--color-accent);
  padding-left: 5px;
}

/* Footer Info */
.es-footer-info p {
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.es-social-icons {
  display: flex;
  gap: var(--space-md);
  margin-top: var(--space-md);
}

.es-social-icons a {
  color: var(--color-white);
  background-color: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: var(--transition);
}

.es-social-icons a:hover {
  background-color: var(--color-accent);
  transform: translateY(-3px);
}

/* Bottom Bar */
.es-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: var(--space-md) 0;
  font-size: 0.875rem;
}

.es-footer-bottom .es-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.es-payment-icons {
  display: flex;
  gap: var(--space-sm);
}

.es-payment-icon {
  background: var(--color-white);
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
}

.es-payment-icon img {
  height: 20px;
}
