/* z-index 이슈로 해당 페이지만 부분적으로 우선순위 올림 */
.background_dark {
  z-index: 999;
}
.gnb_bg {
  z-index: 999;
}

/* z-index 이슈로 해당 페이지만 부분적으로 우선순위 올림 */
.side_nav {
  z-index: 1000;
}

/* 상단 고정 메뉴때문에 해당페이지에서만 부분적으로 z-index 조정 */
.quick_menu {
  margin-top: 32px;
  z-index: 301;
}
.c_main {
  padding-top: 60px;
}
@media screen and (max-width: 768px) {
  .c_main {
    padding-top: unset;
    margin-top: unset;
    margin-top: var(--header-height);
  }
}
/* 카테고리 START */
.category_area {
  border-bottom: 2px solid var(--color-sub);
  position: relative;
  z-index: 100;
  transition: all 0.3s ease;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .category_area {
    border-bottom: 1px solid #dddddd;
  }
}
.category_area.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 300;
  border-bottom: unset;
}
.category_area.fixed .category_list > .list_item:first-child,
.category_area.fixed .category_list > .list_item:last-child {
  border-radius: unset;
}
.category_list {
  display: flex;
}
.category_list > .list_item {
  flex: 1;
  text-align: center;
  line-height: 58px;
  border-left: 1px solid #dddddd;
  border-top: 1px solid #dddddd;
  color: #767676;
  cursor: pointer;
  font-size: 16px;
  transition: 0.2s;
}
.category_list > .list_item:first-child {
  border-radius: 16px 0 0 0;
}
.category_list > .list_item:last-child {
  border-right: 1px solid #dddddd;
  border-radius: 0 16px 0 0;
}
.category_list > .list_item:hover {
  color: var(--color-sub);
}
.category_list > .list_item.on {
  background-color: var(--color-sub);
  color: #fff;
  font-weight: 500;
}
@media screen and (max-width: 1024px) {
  .category_list > .list_item {
    font-size: 14px;
    line-height: 44px;
  }
}
@media screen and (max-width: 768px) {
  .category_list > .list_item {
    flex: inherit;
    line-height: 42px;
    border: unset;
    color: inherit;
    font-size: 16px;
    width: fit-content;
    white-space: nowrap;
  }
  .category_list > .list_item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: transparent;
  }
  .category_list > .list_item:first-child {
    border-radius: unset;
  }
  .category_list > .list_item:last-child {
    border-right: unset;
    border-radius: unset;
  }
  .category_list > .list_item:hover {
    color: unset;
  }
  .category_list > .list_item.on {
    background-color: unset;
    color: unset;
    font-weight: unset;
  }
  .category_list > .list_item.on::after {
    background-color: #000;
  }
}
/* 카테고리 END */

/* 주력 카테고리 START */
.best_category {
  padding: 32px 0 24px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .best_category {
    padding: 24px 0 18px;
  }
}
.best_category .best_category_list {
  justify-content: space-between;
  gap: 24px;
}
@media screen and (max-width: 1100px) {
  .best_category .best_category_list {
    justify-content: inherit;
    gap: inherit;
  }
}
.best_category .best_category_list .list_item {
  text-align: center;
  cursor: pointer;
  flex-shrink: inherit;
}
@media screen and (max-width: 1100px) {
  .best_category .best_category_list .list_item {
    flex-shrink: 0;
  }
}
.best_category .best_category_list .list_item .img_wrap {
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 8px;
}
.best_category .best_category_list .list_item .img_wrap img {
  width: 100%;
  transition: 0.2s;
}
.best_category .best_category_list .list_item:hover .img_wrap img {
  transform: scale(1.1);
}
.best_category .best_category_list .list_item strong {
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .best_category .best_category_list .list_item strong {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .best_category .best_category_list .list_item strong {
    font-size: 12px;
  }
}

/* 서브 카테고리 START */
.sub_category {
  padding-top: 24px;
}
@media screen and (max-width: 768px) {
  .sub_category {
    padding-top: unset;
  }
  .sub_category .c_inner {
    padding: unset;
  }
}
.sub_category .sub_category_swiper {
  overflow: hidden;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .sub_category .sub_category_swiper {
    margin-bottom: unset;
    padding: 12px 20px;
  }
}
.sub_category .sub_category_list .list_item {
  text-align: center;
  padding: 0 12px;
  line-height: 44px;
  color: #666;
  background-color: #eeeeee;
  border-radius: 9999px;
  cursor: pointer;
  white-space: nowrap;
  width: fit-content;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .sub_category .sub_category_list .list_item {
    font-size: 13px;
    line-height: 36px;
    background-color: transparent;
    border: 1px solid #dddddd;
  }
}
.sub_category .sub_category_list .list_item:hover {
  opacity: 0.7;
}
.sub_category .sub_category_list .list_item.on {
  background-color: var(--color-sub);
  color: #fff;
}

/* 검색필터 START */
.filter_area {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
  border-top: 1px solid #dddddd;
}
@media screen and (max-width: 768px) {
  .filter_area {
    padding: 12px 20px 12px 0;
  }
}
.filter_area .filter_wrap {
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 0;
}
.filter_area .filter_wrap .label {
  font-weight: 600;
  flex-shrink: 0;
  color: #666;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .filter_area .filter_wrap .label {
    display: none;
  }
}
.filter_area .filter_wrap .filter_swiper {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .filter_area .filter_wrap .filter_swiper {
    padding-left: 20px;
  }
}
.filter_area .filter_wrap .filter_list .list_item {
  line-height: 36px;
  width: fit-content;
  cursor: pointer;
  color: #666;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .filter_area .filter_wrap .filter_list .list_item {
    font-size: 13px;
  }
}
.filter_area .filter_wrap .filter_list .list_item:hover {
  opacity: 0.7;
}
.filter_area .filter_wrap .filter_list .list_item.on {
  color: var(--color-sub);
  font-weight: 500;
}
.filter_area .filter_wrap .filter_btn_area {
  flex-shrink: 0;
  position: relative;
}
.filter_area .filter_wrap .filter_btn_area::before {
  content: "";
  position: absolute;
  top: 0;
  left: -38px;
  right: 0;
  bottom: 0;
  display: block;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.7) 30%,
    rgba(255, 255, 255, 1) 100%
  );
  pointer-events: none;
  width: 40px;
  z-index: 1;
}
.filter_area .filter_wrap .filter_btn_area .filter_btn {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 3px;
  font-weight: 500;
  line-height: 36px;
  max-height: 36px;
  color: var(--color-sub);
  padding: 0 14px 0 16px;
  border: 1px solid var(--color-sub);
  border-radius: 9999px;
  transition: 0.2s;
}
@media screen and (max-width: 768px) {
  .filter_area .filter_wrap .filter_btn_area .filter_btn {
    font-size: 13px;
    gap: 2px;
    padding: 0 8px 0 10px;
  }
}
.filter_area .filter_wrap .filter_btn_area .filter_btn:hover {
  opacity: 0.7;
}
.filter_area .btn_wrap {
  display: flex;
  gap: 8px;
}
.filter_area .btn_wrap [class*="btn_"] {
  padding: 0 16px;
  line-height: 36px;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  width: 90px;
  transition: 0.2s;
}
.filter_area .btn_wrap [class*="btn_"]:hover {
  opacity: 0.9;
}
.filter_area .btn_wrap .btn_reset {
  background-color: #999999;
}
.filter_area .btn_wrap .btn_apply {
  background-color: #3b3b3b;
}

/* 베스트셀러 START */
.best_seller {
  background-color: #f7f7f7;
  padding-top: 48px;
}
@media screen and (max-width: 768px) {
  .best_seller {
    padding-top: unset;
  }
}
.banner_wrap {
  border-radius: 16px;
  margin-bottom: 40px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .banner_wrap {
    border-radius: unset;
    margin-bottom: 24px;
    margin-left: calc(20px * -1);
    margin-right: calc(20px * -1);
  }
}
.section_title {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .section_title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 480px) {
  .section_title {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

/* 정렬 바 START */
.sortBar_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .sortBar_area {
    padding-top: 20px;
    margin-bottom: 8px;
  }
}
.sortBar_area .result_count {
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .sortBar_area .result_count {
    font-size: 14px;
  }
}
.sortBar_area .result_count .count {
  color: var(--color-sub);
}
@media screen and (max-width: 768px) {
  .sortBar_area .result_count .count {
    font-size: 14px;
  }
}
.sortBar_area .sortBar_list {
  display: flex;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .sortBar_area .sortBar_list {
    display: flex;
    gap: 8px;
  }
}
.sortBar_area .sortBar_list .list_item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #666;
  line-height: 36px;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .sortBar_area .sortBar_list .list_item {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .sortBar_area .sortBar_list .list_item {
    font-size: 13px;
  }
}
.sortBar_area .sortBar_list .list_item.on {
  color: var(--color-sub);
  font-weight: 500;
}
.sortBar_area .sortBar_list .list_item::after {
  content: "";
  width: 1px;
  height: 14px;
  background-color: #9d9d9d;
}
@media screen and (max-width: 768px) {
  .sortBar_area .sortBar_list .list_item::after {
    display: none;
  }
}

/* 상품리스트 START */
.product_list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  row-gap: 40px;
  align-items: stretch;
}
@media screen and (max-width: 1100px) {
  .product_list {
    gap: 20px;
    row-gap: 32px;
  }
}
@media screen and (max-width: 1024px) {
  .product_list {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    row-gap: 24px;
  }
}
@media screen and (max-width: 768px) {
  .product_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .product_list {
    gap: 12px;
    row-gap: 16px;
  }
}
.product_list .list_item {
  position: relative;
  display: flex;
  height: 100%;
}
.product_list .list_item .btn_area {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 0 16px 0 rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 768px) {
  .product_list .list_item .btn_area {
    border-radius: 16px;
    padding: 16px;
  }
}
.product_list .list_item .badge_area {
  display: flex;
  margin-bottom: 12px;
}
.product_list .list_item .badge_area [class*="badge_wrap"] {
  line-height: 24px;
  font-size: 12px;
  color: #fff;
  border-radius: 4px;
  padding: 0 8px;
}
@media screen and (max-width: 375px) {
  .product_list .list_item .badge_area [class*="badge_wrap"] {
    line-height: 22px;
    font-size: 11px;
    padding: 0 6px;
  }
}
.product_list .list_item .badge_area [class*="badge_wrap"][class*="-best"] {
  background: linear-gradient(
    49deg,
    var(--color-sub) 0%,
    var(--color-main) 100%
  );
}
.product_list .list_item .img_wrap {
  flex: 1;
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.product_list .list_item .img_wrap img {
  width: 100%;
  height: auto;
  display: block;
}
.product_list .list_item .text_area {
  font-size: 14px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 768px) {
  .product_list .list_item .text_area {
    font-size: 13px;
  }
}
@media screen and (max-width: 480px) {
  .product_list .list_item .text_area {
    font-size: 12px;
  }
}
.product_list .list_item .text_area .brand_info {
  height: 62px;
}
@media screen and (max-width: 460px) {
  .product_list .list_item .text_area .brand_info {
    height: 58px;
  }
}
.product_list .list_item .text_area .brand_name {
  font-weight: 600;
  margin-bottom: 3px;
}
.product_list .list_item .text_area .product_name {
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
}
.product_list .list_item .text_area .price_wrap {
  display: flex;
  gap: 8px;
  font-weight: 500;
  margin-bottom: 2px;
}
@media screen and (max-width: 460px) {
  .product_list .list_item .text_area .price_wrap {
    flex-wrap: wrap;
    gap: unset;
    margin-bottom: 8px;
  }
}
.product_list .list_item .text_area .price_wrap.partnerCard_price {
  color: var(--color-sub);
}
.product_list .list_item .text_area .price_wrap:last-child {
  margin-bottom: unset;
}
.product_list .list_item .text_area .price_info {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eeeeee;
}
@media screen and (max-width: 768px) {
  .product_list .list_item .text_area .price_info {
    margin-top: 12px;
    padding-top: 12px;
  }
}
@media screen and (max-width: 480px) {
  .product_list .list_item .text_area .price_info {
    margin-top: 4px;
    padding-top: 12px;
  }
}
.product_list .list_item .text_area .price_label {
  white-space: nowrap;
}
.product_list .list_item .text_area .value {
  width: 100%;
  text-align: right;
}
@media screen and (max-width: 460px) {
  .product_list .list_item .text_area .value {
    text-align: inherit;
    font-size: 15px;
  }
}
@media screen and (max-width: 375px) {
  .product_list .list_item .text_area .value {
    text-align: inherit;
    font-size: 14px;
  }
}
.product_list .list_item .hover_btn_area {
  position: absolute;
  padding: 0 24px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0;
  transition: 0.2s;
}
.product_list .list_item:hover .hover_btn_area {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .product_list .list_item:hover .hover_btn_area {
    display: none;
  }
}
.product_list .list_item .hover_btn_area .hover_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  background-color: rgba(25, 80, 162, 0.8);
  color: #fff;
  border-radius: 8px;
  line-height: 40px;
  padding: 0 8px 0 12px;
  backdrop-filter: blur(2px);
}
.product_list .list_item .hover_btn_area .hover_btn::after {
  content: "";
  width: 16px;
  height: 16px;
  background: url("/Views/web/images/pages/rental/icon_arrow_right.svg") center
    center no-repeat;
}

/* 모달 START */
.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: 600px;
  max-height: 90vh;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal_wrap {
  width: 100%;
  background-color: #fff;
  border-radius: 16px;
  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: 24px;
  padding-bottom: 0;
  flex-shrink: 0;
}
.modal_title {
  font-size: 24px;
  font-weight: 600;
}
.modal_close {
  cursor: pointer;
  padding: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.modal_close img {
  width: 32px;
  height: 32px;
  display: block;
}
.modal_close:hover {
  opacity: 0.7;
}
.modal_main {
  flex: 1;
  padding: 24px;
  min-height: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.modal_content {
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  padding-right: 8px;
}
.modal_content::-webkit-scrollbar {
  width: 6px;
}
.modal_content::-webkit-scrollbar-track {
  background: transparent;
}
.modal_content::-webkit-scrollbar-thumb {
  background-color: #d2d2d2;
  border-radius: 3px;
}
.modal_content::-webkit-scrollbar-thumb:hover {
  background-color: #b2b2b2;
}
.filter_section {
  margin-bottom: 28px;
}
.filter_section:last-child {
  margin-bottom: 0;
}
.filter_label {
  font-weight: 500;
  margin-bottom: 8px;
}
.filter_option_list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.filter_option {
  line-height: 36px;
  padding: 0 12px;
  border: 1px solid #dcdcdc;
  border-radius: 9999px;
  background-color: #fff;
  color: #666;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.1s;
  white-space: nowrap;
}
.filter_option:hover {
  opacity: 0.7;
}
.filter_option.active {
  font-weight: 500;
  border-color: var(--color-sub);
  color: var(--color-sub);
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .filter_option {
    font-size: 13px;
  }
}
.modal_footer {
  display: flex;
  flex-shrink: 0;
}
.modal_btn {
  flex: 1;
  font-size: 18px;
  font-weight: 500;
  line-height: 52px;
  cursor: pointer;
  transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  .modal_btn {
    font-size: 16px;
    line-height: 48px;
  }
}
.modal_btn.btn_reset {
  background-color: #999999;
  color: #fff;
}
.modal_btn.btn_reset:hover {
  opacity: 0.8;
}
.modal_btn.btn_search {
  background-color: #3b3b3b;
  color: #fff;
}
.modal_btn.btn_search:hover {
  opacity: 0.8;
}
@media screen and (max-width: 768px) {
  .modal_inner {
    max-width: 100%;
    padding: 0 16px;
  }
  .modal_wrap {
    max-height: 85vh;
  }
  .modal_header {
    padding: 20px;
    padding-bottom: 0;
  }
  .modal_title {
    font-size: 18px;
  }
  .modal_main {
    padding: 20px;
  }
  .filter_section {
    margin-bottom: 24px;
  }
  .filter_label {
    font-size: 15px;
    margin-bottom: 12px;
  }
}

/* 상세페이지 START */
.page_title_area {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .page_title_area {
    display: none;
  }
  .page_title_area.detailPage {
    display: none;
  }
}
.page_title_area.detailPage .page_title {
  margin-bottom: unset;
}
.page_title_area .c_inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.page_title_area .product_name {
  line-height: 1.3;
  font-size: 32px;
}
.page_title_area .model_name {
  line-height: 1.6;
  color: #666;
}
.product_detail_wrap {
  display: flex;
  gap: 40px;
  justify-content: space-between;
}
@media screen and (max-width: 900px) {
  .product_detail_wrap {
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .product_detail_wrap {
    flex-direction: column;
    width: 100%;
    padding-top: 60px;
  }
}

/* 제품 이미지 영역 */
.product_image_area {
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 900px) {
  .product_image_area {
    display: flex;
    gap: 20px;
  }
}
@media screen and (max-width: 480px) {
  .product_image_area {
    flex-direction: column;
  }
}
.thumbnail_list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .thumbnail_list {
    order: 1;
  }
}
@media screen and (max-width: 480px) {
  .thumbnail_list {
    flex-direction: unset;
  }
}
.thumbnail_item {
  width: 70px;
  height: 70px;
  border: 1px solid #dddddd;
  background-color: #fff;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  background: none;
  transition: all 0.2s;
}
@media screen and (max-width: 900px) {
  .thumbnail_item {
    width: 56px;
    height: 56px;
  }
}
@media screen and (max-width: 768px) {
  .thumbnail_item {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 640px) {
  .thumbnail_item {
    width: 70px;
    height: 70px;
  }
}
@media screen and (max-width: 375px) {
  .thumbnail_item {
    width: 56px;
    height: 56px;
  }
}
.thumbnail_item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.thumbnail_item.on {
  border-color: var(--color-sub);
  border-width: 1.5px;
}
.thumbnail_item:hover {
  opacity: 0.7;
}
.main_image_wrap {
  flex: 1;
  border-radius: 16px;
  overflow: hidden;
  background-color: #fff;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.08);
  width: 400px;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 1024px) {
  .main_image_wrap {
    width: 360px;
    height: 360px;
  }
}
@media screen and (max-width: 900px) {
  .main_image_wrap {
    width: 300px;
    height: 300px;
  }
}
@media screen and (max-width: 768px) {
  .main_image_wrap {
    width: 100%;
    height: auto;
    aspect-ratio: 1/1;
    order: 0;
  }
}
.main_image {
  height: 100%;
}
/* 제품 정보 영역 */
.option_info_area {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 500px;
  gap: 24px;
}
@media screen and (max-width: 768px) {
  .option_info_area {
    max-width: 100%;
    gap: 16px;
  }
}
.option_info_area .page_title_area {
  display: none;
}
@media screen and (max-width: 768px) {
  .option_info_area .page_title_area {
    display: block;
    margin-bottom: unset;
  }
  .option_info_area .page_title_area .page_title {
    font-size: 20px;
  }
  .option_info_area .page_title_area .product_name {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 480px) {
  .option_info_area .page_title_area .page_title {
    font-size: 18px;
  }
  .option_info_area .page_title_area .product_name {
    font-size: 18px;
  }
  .option_info_area .page_title_area .model_name {
    font-size: 14px;
  }
}
/* 가격 정보 */
.option_info_area .price_info_section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .option_info_area .price_info_section {
    gap: 4px;
  }
}
.option_info_area .price_item {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media screen and (max-width: 900px) {
  .option_info_area .price_item {
    gap: 8px;
  }
}
.option_info_area .price_item.partnerCard_price {
  color: var(--color-sub);
}
.option_info_area .price_label {
  width: 140px;
  font-weight: 500;
  font-size: 20px;
}
.option_info_area .price_value {
  flex: 1;
  text-align: right;
  font-size: 32px;
  font-weight: 500;
  line-height: 1;
}
.option_info_area .price_value .unit {
  font-size: 20px;
  margin-left: 2px;
}
@media screen and (max-width: 900px) {
  .option_info_area .price_label {
    width: 126px;
    font-size: 18px;
  }
  .option_info_area .price_value {
    font-size: 28px;
  }
  .option_info_area .price_value .unit {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .option_info_area .price_label {
    font-size: 16px;
  }
  .option_info_area .price_value {
    font-size: 20px;
  }
  .option_info_area .price_value .unit {
    font-size: 16px;
  }
}
/* 렌탈 기간 옵션 */
.rental_period_section {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.section_label {
  font-weight: 500;
  margin: 0;
}
.period_option_list {
  display: flex;
  gap: 12px;
  padding: 16px 0;
  border-top: 1px solid #dddddd;
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 768px) {
  .period_option_list {
    padding-bottom: unset;
    border-bottom: unset;
  }
}
.period_option {
  padding: 0 16px;
  line-height: 44px;
  border-radius: 9999px;
  background-color: #eeeeee;
  transition: all 0.2s;
  color: #666;
}
.period_option:hover {
  opacity: 0.7;
}
.period_option.on {
  background-color: var(--color-sub);
  color: #fff;
  border-color: var(--color-sub);
}
@media screen and (max-width: 480px) {
  .period_option {
    padding: 0 12px;
    line-height: 36px;
    font-size: 14px;
  }
}
/* 제휴카드 선택 */
.card_select_section {
  display: flex;
  flex-direction: column;
}
.card_select {
  width: 100%;
  padding: 0 12px;
  line-height: 52px;
  border: 1px solid #dddddd;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("/Views/web/images/common/icon_arrow_down.svg");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 20px;
  padding-right: 48px;
}
.card_select:focus {
  outline: none;
  border-color: var(--color-sub);
}
@media screen and (max-width: 480px) {
  .card_select {
    line-height: 36px;
    font-size: 14px;
  }
}
/* 총 금액 요약 */
.total_summary_section {
  background-color: #f7f7f7;
  border-radius: 12px;
  padding: 20px;
}
@media screen and (max-width: 900px) {
  .total_summary_section {
    font-size: 14px;
  }
}
@media screen and (max-width: 375px) {
  .total_summary_section {
    font-size: 13px;
    padding: 16px;
  }
}
.summary_title {
  font-weight: 500;
  margin-bottom: 8px;
}
@media screen and (max-width: 375px) {
  .summary_title {
    margin-bottom: 4px;
  }
}
.summary_item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #666;
  line-height: 1.6;
}
/* 렌탈하기 버튼 */
.action_button_area {
  margin-top: auto;
}
.btn_rental {
  width: 100%;
  padding: 0 12px;
  background-color: var(--color-sub);
  color: #fff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 500;
  line-height: 52px;
  transition: all 0.2s;
}
.btn_rental:hover {
  opacity: 0.9;
}
@media screen and (max-width: 768px) {
  .btn_rental {
    font-size: 16px;
    line-height: 48px;
  }
}

/* 상세정보 섹션 START */
.detail_image {
  padding: 60px 0;
}
@media screen and (max-width: 768px) {
  .detail_image {
    padding: 44px 0;
  }
}
.detail_image .product_info_area {
  padding-top: 40px;
  margin-bottom: 60px;
  border-top: 1px solid #222;
}
@media screen and (max-width: 768px) {
  .detail_image .product_info_area {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 40px;
    margin-left: calc(20px * -1);
    margin-right: calc(20px * -1);
  }
}
.detail_info_title {
  font-size: 24px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .detail_info_title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .detail_info_title {
    font-size: 18px;
  }
}
.detail_info_table {
  display: flex;
  flex-direction: column;
  margin-top: 8px;
}
.info_row {
  display: flex;
  align-items: center;
  padding: 16px 0;
  border-bottom: 1px solid #dddddd;
}
@media screen and (max-width: 768px) {
  .info_row {
    padding: 8px 0;
  }
}
@media screen and (max-width: 480px) {
  .info_row {
    font-size: 14px;
  }
}
.info_label {
  color: #9b9b9b;
  font-weight: 500;
  min-width: 150px;
}
@media screen and (max-width: 768px) {
  .info_label {
    min-width: 100px;
  }
}
.info_value {
  line-height: 1.3;
  word-break: break-all;
}
.detail_image_wrap {
  width: 100%;
}
.detail_image_wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* 고정 렌탈하기 버튼 START */
.fixed_rental_btn_wrap {
  position: fixed;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  display: flex;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .fixed_rental_btn_wrap {
    bottom: 24px;
  }
}
.fixed_rental_btn_wrap.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.fixed_rental_btn_wrap .action_button_area {
  width: 100%;
  max-width: 400px;
}
.fixed_rental_btn_wrap .btn_rental {
  width: 240px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
  border-radius: 9999px;
  font-size: 24px;
  line-height: 64px;
}
@media screen and (max-width: 768px) {
  .fixed_rental_btn_wrap .btn_rental {
    font-size: 18px;
    line-height: 52px;
  }
}
@media screen and (max-width: 768px) {
  .fixed_rental_btn_wrap .btn_rental {
    font-size: 16px;
    line-height: 48px;
  }
}

/* 페이지네이션 START */
.pagination_wrap {
  margin-top: 60px;
  text-align: center;
}

.pagination {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}

.pagination_item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  font-size: 14px;
  color: #767676;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination_item:hover {
  border-color: var(--color-main);
  background-color: #f5f9fc;
}

.pagination_item.active {
  background-color: var(--color-main);
  color: #fff;
  border-color: var(--color-main);
  font-weight: 600;
}

.pagination_icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.pagination_icon:hover {
  border-color: var(--color-main);
  background-color: #f5f9fc;
}

.pagination_icon img {
  width: 16px;
  height: 16px;
  display: block;
}

.pagination_group_right img,
.pagination_edge_right img {
  transform: rotate(180deg);
}

@media screen and (max-width: 768px) {
  .pagination_wrap {
    margin-top: 30px;
  }

  .pagination {
    gap: 2px;
  }

  .pagination_item {
    width: 34px;
    height: 34px;
    font-size: 13px;
    background-color: unset;
    border: unset;
  }

  .pagination_icon {
    width: 34px;
    height: 34px;
    background-color: unset;
    border: unset;
  }

  .pagination_icon img {
    width: 14px;
    height: 14px;
  }
}

@media screen and (max-width: 375px) {
  .pagination {
    gap: 0;
  }
  .pagination_item {
    width: 30px;
    height: 30px;
  }

  .pagination_icon {
    width: 30px;
    height: 30px;
  }
}
/* 페이지네이션 END */
