/* ========== SUSHIA FOOTER (Full width white + inner container) ========== */

footer#mainFooter{
  width: 100%;
  background: #fff;     /* 좌/우까지 완전 흰색 */
  padding: 0;           /* padding은 inner에서 처리 */
}

footer#mainFooter .sushia-footer-inner{
  max-width: 1600px;
  margin: 0 auto;
  padding: 30px 20px;   /* 운영처럼 위/아래 균형 */
  display: flex;
  justify-content: space-between;
  align-items: center;  /* 세로 중앙 */
  font-size: 14px;
  color: #000;
  font-weight: 600;
}

footer#mainFooter .footer-right{
  display: flex;
  align-items: center;
  gap: 24px;
}

footer#mainFooter .footer-links{
  display: flex;
  gap: 20px;
  align-items: center;
}

footer#mainFooter .footer-links a{
  color: #555;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  transition: all 0.3s;
}

footer#mainFooter .footer-links a:hover{
  color: #000;
  text-decoration: underline;
}

/* Social icons */
footer#mainFooter .social-icons{
  display: flex;
  gap: 15px;
  align-items: center;
}

footer#mainFooter .social-icon{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f0f0f0;
  transition: all 0.2s ease;
}

footer#mainFooter .social-icon svg{
  width: 18px;
  height: 18px;
  fill: #000;
}

footer#mainFooter .social-icon:hover{
  background-color: #FFCC00;
}

/* Mobile */
@media (max-width: 900px){
  footer#mainFooter .sushia-footer-inner{
    padding: 24px 20px;
    flex-direction: column;
    gap: 14px;
    text-align: center;
  }

  footer#mainFooter .footer-right{
    flex-direction: column;
    gap: 12px;
  }
}
