/* =========================
   Renewal Page Base Layout
========================= */

body.page-renewal {
  margin: 0;
  background: linear-gradient(135deg, #f4f6fb 0%, #e9ecf5 100%);
}

/* 중앙 정렬 담당 */
body.page-renewal .renewal-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 32px 16px;
  box-sizing: border-box;
}

/* 헤더 / 푸터 제거 */
body.page-renewal header,
body.page-renewal footer,
body.page-renewal .wp-block-separator {
  display: none !important;
}

/* =========================
   Card Wrapper
========================= */

body.page-renewal .renewal-wrap {
  background: #ffffff;
  border-radius: 28px;
  padding: 60px 48px;
  max-width: 520px;
  width: 100%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.08);
}

/* =========================
   Typography
========================= */

body.page-renewal h1 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

body.page-renewal p {
  color: #666;
  font-size: 15px;
  line-height: 1.6;
  margin: 6px 0;
}

/* =========================
   Buttons
========================= */

body.page-renewal .renewal-buttons {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

body.page-renewal .btn {
  display: block;
  margin: 0;
  padding: 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.25s ease;
  cursor: pointer;
}

body.page-renewal .btn:last-child {
  background: linear-gradient(135deg, #8fa4ff, #9a7bd8);
  color: #ffffff;
}

/* 네이버 */
body.page-renewal .btn-naver {
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: #ffffff;
}

/* 메인 */
body.page-renewal .btn-search-order {
  background: #f0f0f0;
  color: #333;
}

/* 체험 */
body.page-renewal .btn-experience {
  background: linear-gradient(135deg, #8fa4ff, #9a7bd8);
}

body.page-renewal .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* =========================
   Contact Section
========================= */

body.page-renewal .renewal-contact {
  margin-top: 40px;
  font-size: 14px;
  color: #888;
}

body.page-renewal .renewal-contact h3 {
  font-size: 16px;
  margin-bottom: 8px;
  color: #333;
}

body.page-renewal .renewal-contact a {
  color: #667eea;
  text-decoration: none;
  transition: color 0.2s ease;
}

body.page-renewal .renewal-contact a:hover {
  color: #764ba2;
  text-decoration: underline;
}

/* =========================
   Logo
========================= */

body.page-renewal .renewal-logo-wrap {
  margin-top: 32px;
}

body.page-renewal .renewal-logo {
  width: 200px;
  max-width: 60%;
  opacity: 0.9;
}

/* =========================
   Mobile
========================= */

@media (max-width: 480px) {
  body.page-renewal .renewal-page {
    padding: 16px 10px;
  }

  body.page-renewal .renewal-wrap {
    padding: 28px 20px;
    border-radius: 22px;
    max-width: 95%;
  }

  body.page-renewal h1 {
    font-size: 20px;
    margin-bottom: 10px;
  }

  body.page-renewal p {
    font-size: 12px;
    line-height: 1.45;
  }

  body.page-renewal .renewal-buttons {
    margin-top: 20px;
    gap: 12px;
  }

  body.page-renewal .btn {
    padding: 11px;
    font-size: 13px;
    border-radius: 10px;
    margin: 0;
  }

  body.page-renewal .renewal-contact {
    margin-top: 22px;
    font-size: 11px;
  }

  body.page-renewal .renewal-contact h3 {
    font-size: 13px;
  }

  body.page-renewal .renewal-logo {
    width: 130px;
    max-width: 45%;
    margin-top: 10px;
  }
}
