.btn__goTop {
  width: 80px;
  height: 80px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  right: 100px;
  top: -40px;
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  cursor: pointer;
  z-index: 98;
}

/* ✅ 1280px 이하 */
@media screen and (max-width: 1280px) {


  .btn__goTop {
    right: 50px;
  }
}

/* ✅ 1024px 이하 */
@media screen and (max-width: 1024px) {



  .btn__goTop {
    right: 30px;
    width: 70px;
    height: 70px;
  }
}

@media screen and (max-width: 768px) {


  .btn__goTop {
    width: 60px;
    height: 60px;
    right: 20px;
    top: -30px;
  }


}

/* ✅ 390px 이하 */
@media screen and (max-width: 390px) {

  .btn__goTop {
    top: -25px;
    width: 50px;
    height: 50px;
  }


}






/* ===============================
   FOOTER FINAL
=============================== */

.site-footer {
  background: #000;
  color: #fff;
  font-size: 14px;
  position: relative;
}

/* ===== TOP ===== */
.footer-top-inner {
  width: min(1400px, 92%);
  margin: 0 auto;
  padding: 50px 0 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-logo {
  width: 139px;
}

/* 대카테고리 */
.footer-main-menu {
  display: flex;
  gap: 60px;
  margin-top: 6%;
}

.footer-main-menu a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
}

/* ===== FULL WIDTH LINE ===== */
.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, .35);
}

/* ===== BOTTOM ===== */
.footer-bottom-inner {
  width: min(1400px, 92%);
  margin: 0 auto;
  padding: 40px 0;
  display: flex;
  justify-content: space-between;
  gap: 80px;
}

/* INFO */
.footer-info {
  max-width: 420px;
  line-height: 1.7;
  opacity: .85;
}

.footer-info p {
  margin-bottom: 8px;
}

/* SUB MENUS */
.footer-sub-menus {
  display: grid;
  grid-template-columns: repeat(5, auto);
  gap: 70px;
  margin-top: -2%;
}

.footer-sub-menus ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-sub-menus li {
  margin-bottom: 10px;
}

.footer-sub-menus a {
  color: rgba(255, 255, 255, .75);
  text-decoration: none;
}

.footer-sub-menus a:hover {
  color: #fff;
}

/* ===== COPYRIGHT ===== */
.footer-copy {
  width: min(1400px, 92%);
  margin: 20px auto 0;
  padding-bottom: 30px;
  font-size: 12px;
  opacity: .6;
}

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

@media (max-width: 1024px) {
  .footer-top-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-main-menu {
    flex-wrap: wrap;
    gap: 24px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 40px;
  }

  .footer-sub-menus {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-sub-menus {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-logo {
    width: 140px;
  }
}