.top_banner {
  margin-bottom: 10rem;
}
.top_banner .banner_wrap {
  color: #fff;
  font-size: 2rem;
  background-color: #414141;
  text-align: center;
  padding: 1.6rem 0;
  border-radius: 0 0 2rem 2rem;
}
@media screen and (max-width: 1100px) {
  .top_banner {
    margin-bottom: 4rem;
  }
  .top_banner .c_inner {
    padding: unset;
  }
  .top_banner .banner_wrap {
    border-radius: unset;
    font-size: 1.6rem;
  }
}
.content_wrap {
  display: flex;
  width: 100%;
  gap: 3.2rem;
  margin: 0 auto;
  position: relative;
}

.left_content {
  flex: 1;
  min-width: 0;
}

.right_summary {
  width: 300px;
  flex-shrink: 0;
}

.summary_sticky {
  position: sticky;
  top: 2.4rem;
  background-color: #fff;
  border-radius: 1.6rem;
  border: 1px solid #d2d2d2;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1100px) {
  .summary_sticky {
    position: relative;
    top: 0;
    border: unset;
  }
}

.summary_inner .summary_content {
  display: none;
}

.summary_toggle_btn {
  display: none;
}

.summary_section {
  margin-bottom: 1.2rem;
  padding-bottom: 1.2rem;
  border-bottom: 1px dotted #d2d2d2;
}

.summary_section:last-child {
  margin-bottom: 0;
  border: none;
}

.summary_section .section_title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  color: #222;
}

.summary_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.3rem;
  color: #595959;
  margin-bottom: 0.4rem;
}

.summary_item .label {
  max-width: 13rem;
  line-height: 1.3;
}

.summary_item .value {
  line-height: 1.3;
}

.summary_item .value.discount {
  color: #0066ff;
}

.summary_total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
}

.summary_total .value.highlight {
  color: #ff0077;
  font-weight: 700;
}

.summary_inner {
  padding: 2.8rem;
  overflow: visible;
}

.summary_sticky .summary_content {
  max-height: calc(100vh - 400px);
  overflow-y: auto;
  display: block;
}

.summary_final {
  background-color: #f5f5f5;
  border-radius: 1.2rem;
  padding: 2rem;
  margin-bottom: 1.6rem;
  position: relative;
  overflow: visible;
}

.benefit_badge {
  background-color: #ff0077;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 500;
  padding: 0.5rem 1.2rem;
  border-radius: 1.2rem;
}

.final_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 500;
  padding-bottom: 1.2rem;
  margin-bottom: 1.2rem;
  border-bottom: 1px dotted #d2d2d2;
  font-size: 1.4rem;
}

.final_item:last-child {
  padding: unset;
  margin: unset;
  border: none;
}
.final_item.column {
  flex-direction: column;
}
@media screen and (max-width: 1100px) {
  .final_item {
    padding-bottom: 0.8rem;
    margin-bottom: 0.8rem;
  }
}
.final_item .label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}

.final_item .tooltip_trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  width: 1.6rem;
  height: 1.6rem;
}

.final_item .tooltip_trigger img {
  width: 100%;
  height: 100%;
  display: block;
}
.final_item .tooltip_content {
  position: fixed;
  padding: 1.6rem;
  font-weight: 300;
  background-color: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.2rem;
  border-radius: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
  z-index: 10000;
  width: 23rem;
}
.final_item .tooltip_content::after {
  content: "";
  position: absolute;
  top: -0.4rem;
  left: var(--arrow-left, 1rem);
  width: 0;
  height: 0;
  border-left: 0.6rem solid transparent;
  border-right: 0.6rem solid transparent;
  border-top: 0.6rem solid #333;
  transform: rotate(180deg);
  margin-left: -0.6rem;
}
.final_item .tooltip_content.show {
  opacity: 1;
  visibility: visible;
}
.final_item .value.highlight {
  color: #ff0077;
  font-weight: 700;
}
.summary_buttons .btn_wrap {
  width: 100%;
  padding: 0.8rem 1.6rem;
  font-size: 1.8rem;
  min-height: 4.8rem;
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}
.btn_apply {
  background-color: var(--color-sub);
  display: none;
}
.btn_apply:hover {
  opacity: 0.9;
}
.summary_buttons.apply .btn_apply {
  display: block;
}

.btn_closed_wrap {
  display: none;
}
.summary_buttons.closed .btn_closed_wrap {
  display: block;
}
.btn_closed {
  width: 100%;
  padding: 1.6rem;
  background-color: #9f9f9f;
  color: #fff;
  border: none;
  border-radius: 1.2rem;
  font-weight: 600;
  cursor: not-allowed;
}

.summary_notice {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 1.2rem;
}
@media screen and (max-width: 768px) {
  .summary_notice {
    font-size: 1.6rem;
  }
}
.info_color {
  color: red;
}

.c_section {
  padding-top: 0;
}

.product_area {
  display: flex;
  gap: 3.2rem;
  align-items: flex-start;
}

.thumbnail_area {
  flex-shrink: 0;
  max-width: 23.4rem;
  width: 100%;
}
.thumbnail_area .main_thumbnail {
  width: 100%;
  aspect-ratio: 1/1;
  padding: 4rem;
  overflow: hidden;
  border: 1px solid #d2d2d2;
  border-radius: 1.6rem;
  margin-bottom: 2rem;
}

.thumbnail_area .main_thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 8px 4px rgba(0, 0, 0, 0.15));
}
.thumbnail_area .thumbnail_list {
  display: flex;
  gap: 1.2rem;
}

.product_info {
  flex: 1;
}
.product_info .header_area {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1.6rem;
}
.badge_wrap {
  padding: 0 1rem;
  background-color: #222222;
  color: #fff;
  font-size: 1.3rem;
  line-height: 2.8rem;
  height: fit-content;
  border-radius: 0.6rem;
  width: fit-content;
}
.badge_wrap.best_benefit {
  padding: 0 0.8rem;
  background-color: var(--color-accent-price);
  font-size: 1.2rem;
  line-height: 2.4rem;
}
.badge_wrap.best_benefit.summary_badge {
  display: none;
  margin-bottom: 1.2rem;
}
.badge_wrap.best_benefit.summary_badge.on {
  display: block;
}
@media screen and (max-width: 1100px) {
  .badge_wrap.best_benefit.summary_badge {
    margin-bottom: 0.8rem;
  }
}
.share_btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #595959;
  font-weight: 500;
  font-size: 1.4rem;
  border-radius: 9999px;
  border: 1px solid #d2d2d2;
  padding: 0.6rem 1.2rem;
}

.product_title {
  font-size: 2.8rem;
  font-weight: 600;
}

.product_price {
  display: flex;
  align-items: baseline;
  gap: 1.2rem;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 768px) {
  .product_price {
    margin-bottom: 1.6rem;
  }
}
.price_current {
  font-size: 4.8rem;
  font-weight: 600;
  color: var(--color-accent-price);
}
.price_current::after {
  content: "원";
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 500;
  color: #222;
  transform: translateY(-0.4px);
  margin-left: 0.2rem;
}
.price_original {
  font-size: 2.4rem;
  color: #9a9a9a;
  text-decoration: line-through;
}
@media screen and (max-width: 768px) {
  .price_current {
    font-size: 3.2rem;
  }
  .price_current::after {
    font-size: 1.8rem;
  }
  .price_original {
    font-size: 1.8rem;
  }
}
.product_desc {
  padding: 2rem;
  background-color: #eaf8ff;
  border-radius: 1.2rem;
}
@media screen and (max-width: 768px) {
  .product_desc {
    padding: 1.6rem;
  }
}
.product_desc .text {
  font-size: 1.4rem;
}
.point {
  color: var(--color-sub);
  font-weight: 600;
}

.color_btn {
  width: 7rem;
  aspect-ratio: 1/1;
  border: 1px solid transparent;
  border-radius: 0.8rem;
  padding: 1.2rem;
  background: #f1f1f1;
  cursor: pointer;
  transition: border-color 0.2s;
}

.color_btn.active {
  border-color: var(--color-sub);
  box-shadow: var(--shadow-sm);
}

.color_btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.4rem;
}

.section_title {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 2.4rem;
}

.plan_card {
  border: 2px solid var(--color-sub);
  border-radius: 1.6rem;
  padding: 3.2rem;
  text-align: center;
  background-color: #fff;
}

.plan_icon {
  width: 6rem;
  height: 6rem;
  margin: 0 auto 1.6rem;
}

.plan_icon img {
  width: 100%;
  height: 100%;
}

.plan_text {
  font-size: 2rem;
  font-weight: 600;
  color: var(--color-sub);
  margin-bottom: 0.8rem;
}

.plan_name {
  font-size: 1.8rem;
  color: #222;
}

.plan_info_toggle {
  margin-top: 2.4rem;
}

.toggle_btn {
  background: none;
  border: none;
  color: #666;
  cursor: pointer;
  text-decoration: underline;
}

.toggle_content {
  display: none;
  margin-top: 1.6rem;
  padding: 1.6rem;
  background-color: #f7f7f7;
  border-radius: 0.8rem;
}

.toggle_content.on {
  display: block;
}

.select_cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
@media screen and (max-width: 580px) {
  .select_cards {
    gap: 1.2rem;
    row-gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}
.select_card {
  border: 1px solid #d2d2d2;
  border-radius: 1.6rem;
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s;
  overflow: hidden;
  min-height: 27.3rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.select_card.active {
  border-color: var(--color-sub);
  box-shadow: var(--shadow-md);
}
.select_card .desc_wrap {
  padding: 2.4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  height: 100%;
}
.select_card .desc_wrap.between {
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .select_card .desc_wrap {
    padding: 1.6rem;
  }
}
@media screen and (max-width: 375px) {
  .select_card .desc_wrap {
    padding: 1.2rem;
  }
}
.select_card .card_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  max-width: 9rem;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.select_card .card_icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.select_card .card_name {
  font-weight: 500;
  line-height: 1.3;
  margin-top: 0.8rem;
}
.select_card.active .card_name {
  color: var(--color-sub);
}
.select_card .card_more_btn {
  width: fit-content;
  min-height: 40px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.8rem 1.2rem;
  box-sizing: border-box;
  color: #636363;
  font-size: 1.4rem;
}
.select_card .card_more_btn::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("/Views/web/images/common/icon_arrow_right_sm.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .select_card .card_more_btn {
    font-size: 1.3rem;
  }
}
.select_card .strong_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2.4rem;
  background-color: #7b7b7b;
  color: #fff;
}
.select_card .strong_wrap.center {
  justify-content: center;
}
.select_card.active .strong_wrap {
  background-color: var(--color-sub);
}
@media screen and (max-width: 768px) {
  .select_card .strong_wrap {
    flex-direction: column;
    padding: 1.2rem 1.6rem;
  }
}
@media screen and (max-width: 468px) {
  .select_card .strong_wrap {
    padding: 1.2rem 1.2rem;
  }
}
.select_card .card_value {
  font-size: 2rem;
  font-weight: 600;
}
.select_card .card_value::after {
  content: "원";
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  transform: translateY(-0.4px);
  margin-left: 0.2rem;
}
.add_option_area {
  display: flex;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .add_option_area {
    flex-direction: column;
  }
}
.add_option_area .select_cards {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr;
}
.add_option_area .select_cards .select_card {
  width: 100%;
  max-width: 100%;
}
.benefit_detail {
  padding: 2.4rem;
  background-color: #f7f7f7;
  border-radius: 1.2rem;
  display: none;
  margin-top: 2.4rem;
}
.benefit_detail.show {
  display: block;
}
@media screen and (max-width: 768px) {
  .benefit_detail {
    padding: 1.6rem;
  }
}
.benefit_detail .title_area {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 0.8rem;
}

.benefit_detail .title_area .title {
  font-weight: 500;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  /* white-space: nowrap; */
}
.benefit_detail .title_area .title::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("/Views/web/images/common/icon_info.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .benefit_detail .title_area .title {
    font-size: 1.4rem;
  }
}
.benefit_detail .title_area .more_btn {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  color: #636363;
  font-size: 1.4rem;
  margin-bottom: 0.2rem;
}
.benefit_detail .title_area .more_btn::after {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1.6rem;
  background-image: url("/Views/web/images/common/icon_arrow_right_sm.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .benefit_detail .title_area .more_btn {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 768px) {
  .benefit_detail .text_list {
    font-size: 1.4rem;
  }
}
.add_option {
  display: flex;
  flex-direction: column;
  padding: 3.2rem;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.12);
  border-radius: 1.6rem;
  gap: 2.4rem;
}
@media screen and (max-width: 768px) {
  .add_option {
    padding: 2.4rem;
  }
}
.option_label {
  font-weight: 500;
  margin-bottom: 0.8rem;
}
@media screen and (max-width: 768px) {
  .option_label {
    font-size: 1.4rem;
  }
}
.option_btn_list {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.option_btn {
  padding: 0.8rem 1.6rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.8rem;
  background: #fff;
  color: #666;
  cursor: pointer;
  transition: all 0.2s;
}

.option_btn.active {
  border-color: var(--color-sub);
  background-color: var(--color-sub);
  color: #fff;
}

.card_swiper_wrap {
  margin-bottom: 2.4rem;
}

.card_swiper {
  overflow: visible;
}

.card_swiper .swiper-wrapper {
  display: flex;
}

.card_swiper .swiper-slide {
  width: auto;
}

.card_swiper .select_card {
  width: 200px;
  flex: none;
}

.notice_tabs {
  display: flex;
  gap: 0.8rem;
  margin-bottom: 2.4rem;
  border-bottom: 2px solid #e0e0e0;
}

.tab_btn {
  font-size: 1.8rem;
  padding: 0.8rem 2.4rem;
  min-height: 4.8rem;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  color: #d9d9d9;
  cursor: pointer;
  transition: color 0.2s;
}

.tab_btn.active {
  color: var(--color-sub);
  border-bottom-color: var(--color-sub);
  font-weight: 600;
}
.notice_content {
  padding: 3.2rem;
  background-color: #f7f7f7;
}
@media screen and (max-width: 1100px) {
  .notice_content {
    padding: unset;
    background-color: unset;
  }
}
.notice_content .subSection {
  margin-bottom: 3.2rem;
}
.notice_content .subSection .sub_title {
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.notice_table_wrap {
  overflow-x: auto;
}

.notice_table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #dddddd;
  margin-bottom: 1.6rem;
}

.notice_table .depth01_th {
  background-color: #e7e7e7;
  color: #5d5d5d;
}

.notice_table th {
  padding: 1.2rem 1.2rem;
  text-align: center;
  font-weight: 500;
  border: 1px solid #d2d2d2;
  font-size: 1.3rem;
}

.notice_table tbody td {
  padding: 1.2rem 1.2rem;
  text-align: center;
  font-size: 1.3rem;
  border: 1px solid #d2d2d2;
  background-color: #fff;
}

.depth01_list {
  line-height: 1.4;
  font-size: 1.4rem;
}

.depth01_list .list_item {
  margin-bottom: 1.2rem;
}

.depth01_list .list_item:last-child {
  margin-bottom: unset;
}
.depth02_list {
  margin-left: 1.2rem;
  margin-top: 0.4rem;
  font-size: 1.3rem;
  font-weight: 400;
}
.depth02_list .list_item {
  margin-bottom: unset;
}
.depth03_list {
  margin-left: 0.8rem;
  margin-top: 0.4rem;
  font-size: 1.3rem;
  font-weight: 400;
}
.depth03_list .list_item {
  margin-bottom: unset;
}
@media screen and (max-width: 1100px) {
  .content_wrap {
    flex-direction: column;
  }

  .summary_inner .summary_content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 2.4rem;
  }

  .summary_inner.expanded .summary_content {
    max-height: 600px;
    padding: 2rem 2rem 0;
    overflow-y: auto;
  }

  .summary_inner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    z-index: 100;
    padding: 0;
  }

  .summary_toggle_btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 1.2rem 2rem;
    font-size: 1.4rem;
    background: #fff;
    border-bottom: 1px solid #d2d2d2;
    cursor: pointer;
  }

  .summary_toggle_btn .toggle_icon {
    font-size: 1.6rem;
    color: #666;
    transition: transform 0.3s;
    display: inline-block;
  }

  .summary_inner.expanded .summary_toggle_btn .toggle_icon {
    transform: rotate(180deg);
  }

  .summary_inner .summary_final {
    margin: 2rem 2rem 0;
    padding: 1.6rem;
  }

  .summary_inner .summary_buttons {
    padding: 1.6rem 2rem 2rem;
  }
}

@media screen and (max-height: 800px) {
  .summary_inner.expanded .summary_content {
    max-height: calc(100vh - 380px);
    overflow-y: auto;
  }
}

@media screen and (max-width: 768px) {
  .left_content .c_section .c_inner {
    padding: unset;
  }
  .product_area {
    flex-direction: column;
  }

  .thumbnail_area {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }

  .product_title {
    font-size: 2rem;
  }

  .section_title {
    font-size: 1.8rem;
    margin-bottom: 1.6rem;
  }

  .add_option {
    flex-direction: column;
    gap: 2.4rem;
  }

  .card_swiper .swiper-slide {
    width: 180px;
  }
}

.modal_area {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
}

.modal_area.show {
  display: flex;
}

.modal_overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal_inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100rem;
  max-height: 90vh;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal_wrap {
  width: 100%;
  max-width: 60rem;
  background-color: #fff;
  border-radius: 1.6rem;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

.modal_header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem;
  padding-bottom: unset;
  flex-shrink: 0;
  font-size: 2rem;
  font-weight: 600;
}

.modal_title {
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--color-sub);
  margin: 0;
}

.modal_close {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 3.2rem;
  height: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.modal_close img {
  width: 100%;
  height: 100%;
  display: block;
}

.modal_close:hover {
  opacity: 0.7;
}

.modal_main {
  flex: 1;
  padding: 2rem;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.modal_content {
  overflow-y: auto;
  flex: 1;
}
.modal_content .subSection {
  margin-bottom: 1.6rem;
}
.modal_content .subSection:last-child {
  margin-bottom: unset;
}
.modal_content .subSection .sub_title {
  font-weight: 600;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 768px) {
  .modal_content .subSection .text_list {
    font-size: 1.4rem;
  }
}

.modal_table {
  width: 100%;
  border-collapse: collapse;
  margin: 2.4rem 0;
  border: 1px solid #e0e0e0;
  font-size: 1.3rem;
}

.modal_table thead {
  background-color: #e7e7e7;
}

.modal_table th {
  padding: 0.8rem;
  text-align: center;
  font-weight: 500;
  border: 1px solid #d2d2d2;
}

.modal_table td {
  padding: 1.2rem;
  text-align: center;
  border: 1px solid #d2d2d2;
}

.modal_footer {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-shrink: 0;
}

.modal_btn {
  padding: 0.8rem 1.2rem;
  min-height: 4.8rem;
  background-color: var(--color-sub);
  color: #fff;
  border: none;
  font-size: 1.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: opacity 0.2s;
}

.modal_btn:hover {
  opacity: 0.9;
}

.modal_footer .modal_btn:only-child {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .modal_inner {
    max-width: 100%;
    margin: 0;
    max-height: 100vh;
  }

  .modal_wrap {
    max-height: 100vh;
  }

  .modal_header {
    padding: 1.6rem;
  }

  .modal_title {
    font-size: 1.8rem;
  }

  .modal_main {
    padding: 1.6rem;
  }

  .modal_content {
    font-size: 1.3rem;
  }

  .modal_content .sub_title {
    font-size: 1.6rem;
  }

  .modal_table {
    font-size: 1.2rem;
  }

  .modal_table th,
  .modal_table td {
    padding: 0.8rem;
  }

  .modal_footer {
    flex-direction: column;
  }

  .modal_btn {
    width: 100%;
    padding: 1.4rem;
  }
}

.toast_message {
  position: fixed;
  bottom: 6rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
  pointer-events: none;
}

.toast_message.show {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.toast_content {
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  padding: 1.6rem 2rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 768px) {
  .toast_message {
    bottom: 2rem;
    left: 2rem;
    right: 2rem;
    transform: none;
  }

  .toast_message.show {
    transform: translateY(0);
  }

  .toast_content {
    padding: 1rem 1.6rem;
    font-size: 1.3rem;
    text-align: center;
  }
}

/* Step02 CSS START */
.step02 .c_section {
  padding: 8rem 0;
}

.step02 .pageTitle {
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
  margin-bottom: 5.2rem;
}

.step02 .mid-width {
  max-width: 60rem;
  margin: 0 auto;
}

.confirm_card {
  background-color: #fff;
  border-radius: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  padding: 4.4rem;
  border: 1px solid #d2d2d2;
}

.confirm_section {
  margin-bottom: 4rem;
}
.confirm_section .section_title {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 2rem;
}
@media screen and (max-width: 768px) {
  .confirm_section .section_title {
    font-size: 1.8rem;
    margin-bottom: 1.2rem;
  }
}
@media screen and (max-width: 375px) {
  .confirm_section .section_title {
    font-size: 1.6rem;
  }
}

.detail_list {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

.detail_item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 1.2rem;
}
.detail_item:last-child {
  border-bottom: unset;
  padding-bottom: unset;
}
.detail_label {
  color: #595959;
  min-width: 12rem;
  flex-shrink: 0;
  max-width: 70%;
}
@media screen and (max-width: 768px) {
  .detail_label {
    max-width: 100%;
  }
}
.detail_value {
  text-align: right;
  flex: 1;
}

.payment_section {
  background-color: #eaf8ff;
  padding: 2.4rem;
  border-radius: 1.2rem;
  margin-top: 2.4rem;
}

.payment_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.8rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
@media screen and (max-width: 768px) {
  .payment_header {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
  }
}
@media screen and (max-width: 375px) {
  .payment_header {
    flex-direction: column;
  }
}
.highlight {
  color: var(--color-accent-price);
}

.payment_condition {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  .payment_condition {
    font-size: 1.4rem;
    flex-wrap: wrap;
    align-items: flex-start;
  }
}

@media screen and (max-width: 375px) {
  .payment_condition {
    flex-direction: column;
    gap: 0.2rem;
    align-items: center;
  }
}

.payment_condition .condition {
  white-space: normal;
  word-break: break-word;
  flex: 1;
  min-width: 0;
}

.payment_condition .value {
  white-space: nowrap;
  flex-shrink: 0;
}

.condition_text {
  font-size: 1.3rem;
  color: #666;
}

.condition_amount {
  font-size: 1.4rem;
  color: #222;
}

.terms_box {
  background-color: #f7f7f7;
  border-radius: 1.2rem;
  padding: 2rem;
  max-height: 20rem;
  overflow-y: auto;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 768px) {
  .terms_box {
    padding: 1.6rem;
  }
}
@media screen and (max-width: 375px) {
  .terms_box {
    padding: 1.2rem;
  }
}

.terms_content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.terms_item {
  color: #666;
  font-size: 1.4rem;
  line-height: 1.6;
}
@media screen and (max-width: 375px) {
  .terms_item {
    color: #666;
    font-size: 1.3rem;
    line-height: 1.3;
  }
}

.agree_checkbox {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.agree_checkbox input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  accent-color: #0066cc;
}

.agree_checkbox label {
  font-size: 1.4rem;
  color: #222;
  cursor: pointer;
}

.confirm_buttons {
  display: flex;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  .confirm_buttons {
    flex-direction: column;
  }
}
.btn_prev,
.btn_next {
  flex: 1;
  padding: 0.8rem 2rem;
  min-height: 5.2rem;
  font-size: 1.8rem;
  font-weight: 500;
  border-radius: 1.2rem;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .btn_prev,
  .btn_next {
    font-size: 1.6rem;
    min-height: 4.8rem;
  }
}

.btn_prev {
  background-color: #9f9f9f;
  color: #fff;
}

.btn_next {
  background-color: var(--color-sub);
  color: #fff;
}

@media screen and (max-width: 768px) {
  .step02 .c_section {
    padding: 4rem 0;
  }

  .step02 .pageTitle {
    font-size: 3.2rem;
    margin-bottom: 2.4rem;
  }

  .confirm_card {
    padding: 2.4rem;
  }

  .confirm_section {
    margin-bottom: 2.4rem;
  }
  .detail_item {
    flex-direction: column;
    gap: 0.4rem;
    align-items: flex-start;
  }

  .detail_label {
    min-width: auto;
  }

  .detail_value {
    text-align: left;
  }

  .payment_section {
    padding: 1.6rem;
  }

  .payment_header .section_title {
    margin-bottom: 0;
  }

  .payment_amount {
    font-size: 2rem;
  }

  .btn_prev,
  .btn_next {
    width: 100%;
  }
}
/* Step02 CSS END */

/* 체크박스 스타일 (KtUsimChange.css에서 인용) START */
.agree_wrap {
  padding: 3.2rem;
  background-color: #f7f7f7;
}
@media screen and (max-width: 480px) {
  .agree_wrap {
    padding: 2.4rem;
  }
}
.checkBox_area {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
@media (max-width: 768px) {
  .checkBox_area {
    gap: 0.2rem;
  }
}
.agree_wrap .caption {
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.agree_wrap .agree_check,
.agree_check {
  cursor: pointer;
  position: relative;
}
@media (max-width: 768px) {
  .agree_wrap .agree_check,
  .agree_check {
    font-size: 1.4rem;
  }
}

/* 기본 체크박스 숨기기 */
.agree_wrap .agree_check .checkbox,
.agree_check .checkbox {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.agree_wrap .agree_check .text,
.agree_check .text {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .agree_wrap .agree_check .text,
  .agree_check .text {
    min-height: 2.8rem;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 560px) {
  .agree_wrap .agree_check .text,
  .agree_check .text {
    row-gap: 0.2rem;
    margin-bottom: 0.4rem;
  }
}

/* 커스텀 체크박스 */
.agree_wrap .agree_check .text::before,
.agree_check .text::before {
  content: "";
  width: 2rem;
  height: 2rem;
  border: 2px solid #c5c5c5;
  border-radius: 0.4rem;
  background: #fff;
  display: inline-block;
}

.agree_wrap .agree_check .checkbox:checked + .text::before,
.agree_check .checkbox:checked + .text::before {
  border: none;
  background: url("/Views/web/images/common/icon_check_square.svg") center/cover
    no-repeat;
}
/* 체크박스 스타일 (KtUsimChange.css에서 인용) END */
