/* =============================================
   TASTE OF ASIA - FOOTER STYLES
   For Elementor Theme Builder footer location
   ============================================= */

/* =============================================
   FOOTER BASE
   ============================================= */

.toa-footer {
  background: var(--toa-crimson-dark);
  padding: 60px 0 0;
  color: var(--toa-white);
}

.elementor-location-footer {
  background: var(--toa-crimson-dark);
}

/* =============================================
   FOOTER MAIN GRID
   ============================================= */

.toa-footer-main {
  max-width: var(--toa-container-width);
  margin: 0 auto;
  padding: 0 var(--toa-gutter);
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* Footer Logo & About Column */
.toa-footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.toa-footer-logo {
  font-family: var(--toa-font-heading);
  color: var(--toa-gold);
  font-size: 22px;
  font-weight: 700;
}

.toa-footer-logo img {
  height: 40px;
  width: auto;
}

.toa-footer-about {
  font-family: var(--toa-font-body);
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
  max-width: 280px;
}

.toa-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.toa-social-link {
  background: rgba(255, 255, 255, 0.1);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--toa-gold);
  cursor: pointer;
  transition: background var(--toa-transition-fast);
}

.toa-social-link:hover {
  background: rgba(255, 255, 255, 0.15);
}

.toa-social-link svg {
  width: 18px;
  height: 18px;
}

/* Footer Navigation Columns */
.toa-footer-nav-col {
  display: flex;
  flex-direction: column;
}

.toa-footer-nav-title {
  font-family: var(--toa-font-body);
  font-size: 14px;
  font-weight: 700;
  color: var(--toa-white);
  margin-bottom: 16px;
  letter-spacing: 0.02em;
}

.toa-footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toa-footer-link {
  font-family: var(--toa-font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  cursor: pointer;
  transition: color var(--toa-transition-fast);
  display: flex;
  align-items: center;
  gap: 6px;
}

.toa-footer-link:hover {
  color: var(--toa-gold);
}

.toa-footer-link svg {
  width: 14px;
  height: 14px;
}

/* =============================================
   FOOTER BOTTOM BAR
   ============================================= */

.toa-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px 0;
}

.toa-footer-bottom-inner {
  max-width: var(--toa-container-width);
  margin: 0 auto;
  padding: 0 var(--toa-gutter);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.toa-footer-copyright {
  font-family: var(--toa-font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
}

.toa-footer-legal-links {
  display: flex;
  gap: 24px;
}

.toa-footer-legal-link {
  font-family: var(--toa-font-body);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color var(--toa-transition-fast);
}

.toa-footer-legal-link:hover {
  color: var(--toa-gold);
}

/* =============================================
   FOOTER PAYMENT METHODS
   ============================================= */

.toa-footer-payment {
  display: flex;
  gap: 8px;
  align-items: center;
}

.toa-payment-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toa-payment-icon svg,
.toa-payment-icon img {
  width: 32px;
  height: 20px;
}

/* =============================================
   FOOTER NEWSLETTER
   ============================================= */

.toa-footer-newsletter {
  margin-top: 8px;
}

.toa-newsletter-text {
  font-family: var(--toa-font-body);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 12px;
}

.toa-newsletter-form {
  display: flex;
  gap: 8px;
}

.toa-newsletter-input {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--toa-btn-radius);
  padding: 10px 14px;
  font-family: var(--toa-font-body);
  font-size: 14px;
  color: var(--toa-white);
  flex: 1;
  min-width: 0;
}

.toa-newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.toa-newsletter-input:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.15);
}

.toa-newsletter-btn {
  background: var(--toa-gold);
  color: var(--toa-crimson);
  border: none;
  border-radius: var(--toa-btn-radius);
  padding: 10px 20px;
  font-family: var(--toa-font-body);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: background var(--toa-transition-fast);
}

.toa-newsletter-btn:hover {
  background: var(--toa-gold-light);
}

/* =============================================
   RESPONSIVE FOOTER
   ============================================= */

@media (max-width: 767px) {
  .toa-footer {
    padding: 40px 0 0;
  }

  .toa-footer-main {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 16px 32px;
  }

  .toa-footer-brand {
    text-align: center;
  }

  .toa-footer-about {
    max-width: none;
  }

  .toa-footer-social {
    justify-content: center;
  }

  .toa-footer-nav-col {
    text-align: center;
  }

  .toa-footer-nav-links {
    align-items: center;
  }

  .toa-footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    padding: 0 16px;
  }

  .toa-footer-legal-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .toa-newsletter-form {
    flex-direction: column;
  }

  .toa-newsletter-btn {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .toa-footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    padding: 0 var(--toa-gutter-mobile) 32px;
  }

  .toa-footer-brand {
    grid-column: span 2;
    text-align: center;
  }

  .toa-footer-about {
    max-width: none;
  }

  .toa-footer-social {
    justify-content: center;
  }
}