.page_tit {
  font-weight: 700;
    font-size: var(--size45);
    line-height: 1.5111112;
    text-align: center;
    color: var(--black);
}
.sub-wrap {
  padding: 4.6875rem 0 6.875rem;
}
.check-input input[type='checkbox'],
.check-input input[type='radio'] {
  display: none;
}
.check-input label {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.check-input input[type=checkbox] ~ label .box {
  content: '';
  cursor: pointer;
  display: block;
  width: 1.25rem;
  height: 1.25rem;
  background: #fff 50% 50% no-repeat;
  background-size: 72.22% auto;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-sizing: border-box;
  transition: all 0.2s;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.check-input input[type=checkbox]:checked + label .box {
  background-color: var(--mainColor);
  border-color:  var(--mainColor);
  background-image: url(/img/comm/chk_on.png);
}

/* 상품 옵션 */
.option-wrap .option-group .diopter-flex {
  display: flex;
  flex-flow: row wrap;
  gap: 0.625rem;
  /* max-width: 490px; */
  width: 100%;
  /* height: 6.5625rem;
  overflow-y: auto; */
}
.option-wrap .option-group .btn-input {
  width: 6.25rem;
  height: 2rem;
}
.option-wrap .option-group .btn-input.w120 {
  width: 7.5rem;
}
.option-wrap .option-group .btn-input input {
  display: none;
}
.option-wrap .option-group .btn-input label {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 10px;
  border: 1px solid #ddd;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  font-weight: 500;
  font-size: var(--size15);
  line-height: 1.375;
  color: var(--black);
  background-color: #FAFAFA;
  padding-top: 1px;
}
.option-wrap .option-group .btn-input input:checked + label {
  font-weight: 600;
  color: var(--mainColor);
  border-width: 2px;
  background: #1F9AA014;
  border-color: var(--mainColor);
}

/* 상품 리스트 */
.prd-list-wrap {
  padding: 4.6875rem 0 6.875rem;
}
.prd-list-title h2 {
  font-weight: 700;
  font-size: var(--size45);
  line-height: 1.5111112;
  text-align: center;
  color: var(--black);
}
.prd-list-category {
  margin-top: 3.4375rem;
}
.prd-list-category ul {
  display:flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 3.75rem;
}
.prd-list-category ul li {
  position: relative;
}
.prd-list-category ul li::after {
  content: "";
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background-color: #D9D9D9;
  position: absolute;
  top: 50%;
  right: -50%;
  transform: translate(100%,-50%);
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
  -webkit-transform: translate(100%,-50%);
  -moz-transform: translate(100%,-50%);
  -ms-transform: translate(100%,-50%);
  -o-transform: translate(100%,-50%);
}
.prd-list-category ul li:last-child:after {
  display: none;
}
.prd-list-category ul li a {
  font-weight: 400;
  font-size: var(--size20);
  line-height: 1.5;
  color: #666;
  position: relative;
}
.prd-list-category ul li.on a {
  color: var(--mainColor);
  font-weight: 600;
}
.prd-list-category ul li.on a::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--mainColor);
  position: absolute;
  left: 0;
  bottom: -10px;
}
.prd-search-wrap {
  margin-top: 3.75rem;
}
.prd-search-btn-wrap {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
.prd-search-btn-wrap button {
  font-family: 'Pretendard';
  height: 2.5rem;
  font-weight: 500;
  font-size: var(--size16);
  line-height: 1.2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 1rem 0 1.25rem;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  border: 1px solid #ddd;
  color: var(--black);
}
.prd-search-btn-wrap button::after {
  content: "";
  display: block;
  width: 12px;
  height: 7px;
  background: url(/img/sub/arr_b.png) no-repeat center center;
}
.prd-search-btn-wrap button.w100 {
  width: 6.25rem;
}
.prd-search-btn-wrap button.w120 {
  width: 7.5rem;
}
.prd-search-btn-wrap button.on {
  background-color: var(--mainColor);
  color: #fff;
}
.prd-search-btn-wrap button.on::after {
  background-image: url(/img/sub/arr_w.png);
}
.prd-search-bar {
  margin-top: 1.875rem;
  padding: 1.875rem;
  background-color: #FAFAFA;
  display: flex;
  flex-flow: row nowrap;
  align-items: flex-start;
  gap: 1.375rem;
}
.prd-search-bar .resetBtn {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: var(--size15);
  line-height: 1.2;
  color: #666;
  width: 71px;
}
.prd-search-bar .resetBtn img {
  display: block;
  width: 1.1875rem;
}
/* .prd-search-bar .resetBtn:hover img {
  animation: spin 1s linear infinite;
  -webkit-animation: spin 1s linear infinite;
} */
.prd-search-bar ul {
  display: flex;
  flex-flow: row wrap;
  gap: 1.25rem;
  padding: 1px 1.875rem;
  padding-right: 0;
  position: relative;
  width: calc(100% - 71px - 1.375rem);
}
.prd-search-bar ul::before {
  content: "";
  display: block;
  width: 1px;
  height: 1.25rem;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #ddd;
}
.prd-search-bar ul li {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: var(--size15);
  line-height: 1.2;
  color: #111;
}
.prd-search-bar ul li button {
  display: flex;
}
.prd-list-box {
  margin-top: 3.125rem;
}
.prd-list-box .prd-sort {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
}
.prd-list-box .prd-sort h5 {
  font-weight: 600;
  font-size: var(--size18);
  line-height: 1.5;
  color: #111;
}
.prd-list-box .prd-sort .custom-select-box {
  position: relative;
}
.prd-list-box .prd-sort .custom-select-box .select-trigger {
  font-weight: 400;
  font-size: var(--size15);
  line-height: 1.2;
  color: #111;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 10px;
}
/* 화살표 아이콘 기본 스타일 (필요 시 회전 효과 추가 가능) */
.select-trigger .arrow-icon {
  transition: transform 0.2s ease;
}
.custom-select-box.is-open .arrow-icon {
  transform: rotate(180deg); /* 열렸을 때 화살표 뒤집기 */
}
/* 드롭다운 옵션 리스트 (기본 숨김) */
.select-options {
  display: none; 
  position: absolute;
  top: 100%;
  right: 0; /* 우측 정렬 기준 */
  margin-top: 10px;
  list-style: none;
  background: #fff;
  border-radius: 8px;
  border: 1px solid #ddd;
  min-width: 120px;
  z-index: 10;
  overflow: hidden;
}

/* 박스가 열렸을 때 리스트 노출 */
.custom-select-box.is-open .select-options {
  display: block;
}

/* 옵션 각각의 아이템 스타일 */
.select-options li {
  padding: 10px 16px;
  cursor: pointer;
  color: #666;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}

/* 마우스 호버 및 현재 선택된 아이템 강조 */
.select-options li:hover,
.select-options li.active {
  background-color: #fafafa;
  background-color: #fafafa;
  color: #333;
  font-weight: 500;
}
.prd-list {
  margin-top: 1.875rem;
  display: flex;
  flex-flow: row wrap;
  gap: 2.5rem;
}
.prd-list li {
  width: calc(25% - 1.875rem);
}
.prd-list li a {
  display: block;
  width: 100%;
  border: 1px solid #ddd;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 1.1875rem 1.1875rem 1.6875rem;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.prd-list li a:hover {
  border: 1px solid var(--mainColor);
  box-shadow: 0px 10px 10px 0px #00000026;
}
.prd-list li .img-wrap {
  width: 100%;
}
.prd-list li .img-wrap img {
  max-width: 100%;
}
.prd-list li .text-wrap {
  margin-top: 1.25rem;
}
.prd-list li .text-wrap h3 {
  font-weight: 600;
  font-size: var(--size20);
  line-height: 1.5;
  color: #111;
}
.prd-list li .text-wrap h5 {
  font-weight: 400;
  font-size: var(--size15);
  line-height: 1.2;
  color: #222;
  margin-top: 10px;
}
.prd-list li .text-wrap .color-wrap {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.25rem;
}
.prd-list li .text-wrap .color-box {
  display: flex;
  flex-flow: row wrap;
  gap: 10px;
}
.prd-list li .text-wrap .color-box .box {
  width: 1rem;
  aspect-ratio: auto 1/1;
  position: relative;
}
.prd-list li .text-wrap .color-box .box input {
  display: none;
}
.prd-list li .text-wrap .color-box .box label img {
  width: 100%;
}
.prd-list li .text-wrap .color-box .box label::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  border:3px solid var(--mainColor);
  box-sizing: border-box;
  opacity: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.prd-list li .text-wrap .color-wrap .sale-box {
  width: 6.25rem;
  height: 1.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  border: 1px solid;
  font-weight: 600;
  font-size: var(--size12);
  line-height: 1;
  text-align: center;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}
.prd-list li .text-wrap .color-wrap .sale-box.basic {
  border-color: #ddd;
  background-color: #f3f4f6;
  color: #666;
}
.prd-list li .text-wrap .color-wrap .sale-box.promotion {
  border-color: #FBBF24;
  background-color: #FEF3C7;
  color: #AD6B3B;
}
.prd-list li .text-wrap .price-box {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}
.prd-list li .text-wrap .price-box h4 {
  font-weight: 500;
  font-size: var(--size15);
  line-height: 1.2;
  color: #999;
}
.prd-list li .text-wrap .price-box .price {
  font-weight: 700;
  font-size: var(--size16);
  line-height: 1.5;
  color: #111;
}
.prd-list li .text-wrap .price-box span {
  font-size: var(--size14);
  color: #FF383C;
}

/* 검색박스 */
.search-box-wrap {
  /* display: none; */
  position: fixed;
  top: 0;
  left: 0;
  z-index: 104;
  width: 100%;
  height: 100%;
  background: #00000080;
  visibility: hidden;
  opacity: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  -moz-transform: translateY(100%);
  -ms-transform: translateY(100%);
  -o-transform: translateY(100%);
}
.search-box-wrap.on {
  /* display: block; */
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  -webkit-transform: translateY(0%);
  -moz-transform: translateY(0%);
  -ms-transform: translateY(0%);
  -o-transform: translateY(0%);
}
.search-box-wrap .search-box {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%,0);
  -webkit-transform: translate(-50%,0%);
  -moz-transform: translate(-50%,0%);
  -ms-transform: translate(-50%,0%);
  -o-transform: translate(-50%,0%);
  width: 56.25rem;
  height: 58.9375rem;
  padding: 2.5rem 3.125rem 3.125rem;
  max-width: 95%;
  max-height: 95%;
  background-color: #fff;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}
.search-box-wrap.on .search-box {
  top: 50%;
  transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  -moz-transform: translate(-50%,-50%);
  -ms-transform: translate(-50%,-50%);
  -o-transform: translate(-50%,-50%);
}
.search-box-wrap .search-close-btn {
  display: block;
  margin-left: auto;
  margin-right: 0;
}
.search-box form {
  height: calc(100% - 21px - 1.25rem);
}
.search-box .option-wrap {
  margin: 1.25rem 0;
  height: calc(100% - 11.1875rem);
  overflow-y: auto;
}
.search-box .option-wrap .option-label {
  font-weight: 500;
  font-size: var(--size16);
  line-height: 1.1875;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.search-box .option-wrap .option-group {
  margin-bottom: 1.875rem;
}
.search-box .option-wrap .option-group:last-of-type {
  margin-bottom: 0;
}
.search-box .option-wrap .option-group .diopter-flex {
  max-width: none;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.search-box .option-wrap .option-group .diopter-flex label {
  font-weight: 400;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.search-box .option-wrap .option-group .diopter-flex label .color-box {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.search-box .option-tag-wrap {
  padding-top: 1.875rem;
  border-top: 1px solid #ddd;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  gap: 10px 1.25rem;
  height: calc(2.5rem + 10px + 1.875rem);
  overflow: auto;
}
.search-box .option-tag-wrap li {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  font-size: var(--size15);
  line-height: 1.2;
  color: #111;
}
.search-box .option-tag-wrap li button {
  display: flex;
}
.search-box .btn-wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 1.25rem;
  margin-top: 1.1875rem;
}
.search-box .btn-wrap button {
  font-weight: 500;
  font-size: var(--size18);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 3.75rem;
  border-radius: 15px;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  -ms-border-radius: 15px;
  -o-border-radius: 15px;
}
.search-box .btn-wrap button[type="button"] {
  width: 15rem;
  background-color: var(--white);
  color: var(--mainColor);
  border: 1px solid var(--mainColor);
}
.search-box .btn-wrap button[type="submit"] {
  width: calc(100% - 16.25rem);
  background-color: var(--mainColor);
  color: var(--white);
}

/* 상품 디테일 */
.prd-detail-wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 5rem 6.25rem;
  padding: 5.5rem 0 6.25rem;
}
.prd-detail-wrap > .container {
  width: calc(100% - 32px);
  display: flex;
  flex-flow: row wrap;
  gap: 6.25rem;
}
.prd-detail-wrap .thumb-wrap {
  width: calc(50% - 6.25rem);
  max-width: 600px;
}
.prd-detail-wrap .thumb-wrap .swiper-slide {
  aspect-ratio: auto 1 / 1;
}
.prd-detail-wrap .thumb-wrap .swiper-slide .img-wrap {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.prd-detail-wrap .thumb-wrap .swiper-slide .img-wrap img {
  max-width: 100%;
  max-height: 100%;
}
.prd-detail-wrap .thumb-wrap .navSwiper {
  margin-top: 1.25rem;
  max-width: 530px;
  width: 100%;
  margin-left: 0;
}
.prd-detail-wrap .thumb-wrap .navSwiper .img-wrap {
  position: relative;
  cursor: pointer;
}
.prd-detail-wrap .thumb-wrap .navSwiper .img-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border:3px solid var(--mainColor);
  box-sizing: border-box;
  opacity: 0;
}
.prd-detail-wrap .thumb-wrap .navSwiper .swiper-slide-thumb-active .img-wrap::before {
  opacity: 1;
}

.prd-detail-wrap .order-wrap {
  width: 50%;
  padding-top: 0.9375rem;
}
.prd-detail-wrap .order-wrap .prd-name {
  font-weight: 700;
  font-size: var(--size30);
  line-height: 1.2;
  color: var(--black);
}
.prd-detail-wrap .order-wrap .prd-price {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin-top: 1.25rem;
  gap: 10px;
}
.prd-detail-wrap .order-wrap .prd-price h3 {
  font-weight: 700;
  font-size: var(--size26);
  line-height: 1.19231;
  color: var(--black);
}
.prd-detail-wrap .order-wrap .option-wrap {
  margin-top: 3.125rem;
}
.prd-detail-wrap .order-wrap .option-group {
  margin-bottom: 2.5rem;
}
.prd-detail-wrap .order-wrap .option-label {
  font-weight: 500;
  font-size: var(--size18);
  line-height: 1.1666667;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.prd-detail-wrap .order-wrap .color-chips {
  display: flex;
  flex-flow: row wrap;
  gap: 1.25rem;
  padding-bottom: calc(10px + 0.875rem);
}
.prd-detail-wrap .order-wrap .color-chips .box {
  width: 3.5rem;
  aspect-ratio: auto 1/1;
  position: relative;
}
.prd-detail-wrap .order-wrap .color-chips .box input {
  display: none;
}
.prd-detail-wrap .order-wrap .color-chips .box label img {
  width: 100%;
}
.prd-detail-wrap .order-wrap .color-chips .box label h4 {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: var(--size14);
  font-weight: 600;
  padding-top: 10px;
  line-height: 1;
}
.prd-detail-wrap .order-wrap .color-chips .box label::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  border-radius: 50%;
  border:3px solid var(--mainColor);
  box-sizing: border-box;
  opacity: 0;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.prd-detail-wrap .order-wrap .color-chips .box input:checked + label::before {
  opacity: 1;
}
.prd-detail-wrap .selected-wrap {
  border-radius: 10px;
  border: 1px solid #ddd;
  overflow: hidden;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.prd-detail-wrap .selected-item {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  padding: 0 1.5rem;
  height: 4.375rem;
  border-bottom: 1px solid #ddd;
  background-color: #FAFAFA;
}
.prd-detail-wrap .selected-item-info {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 1.5625rem;
}
.prd-detail-wrap .selected-item-title {
 /* width: 9.375rem;*/
 width: 18rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 500;
  font-size: var(--size16);
  line-height: 1.1875;
  color: #111;
}
.prd-detail-wrap .selected-qty-stepper {
  display: flex;
  flex-flow: row nowrap;
  width: 7.5rem;
}
.prd-detail-wrap .selected-qty-stepper button {
  width: 2.5rem;
  border: 1px solid #ddd;
  background-color: #fff;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  height: 2.5rem;
}
.prd-detail-wrap .selected-qty-stepper input {
  display: block;
  height: 2.5rem;
  width: calc(2.5rem + 2px);
  margin-left: -1px;
  margin-right: -1px;
  border: 1px solid #ddd;
  outline: none;
  text-align: center;
  font-weight: 500;
  font-size: var(--size16);
  line-height: 1.1875;
}
.prd-detail-wrap .selected-item-price {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 1.875rem;
}
.prd-detail-wrap .selected-item-price h4 {
  font-weight: 500;
  font-size: var(--size16);
  line-height: 1.1875;
  color: #111;
}
.prd-detail-wrap .total-summary {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  height: 4.375rem;
}
.prd-detail-wrap .total-summary h4 {
  font-weight: 600;
  font-size: var(--size18);
  line-height: 1;
  color: #111;
}
.prd-detail-wrap .total-summary h4 span {
  color: #FF383C;
  font-size: var(--size20);
}
.prd-detail-wrap .total-summary h4.total-price-label span {
  padding-left: 1.25rem;
}
.prd-detail-wrap .action-buttons {
  margin-top: 2.5rem;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 1.25rem;
}
.prd-detail-wrap .action-buttons button {
  width: 50%;
  height: 3.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid var(--mainColor);
  font-weight: 500;
  font-size: var(--size18);
  line-height: 1;
  color: var(--mainColor);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding-top: 1px;
}
.prd-detail-wrap .action-buttons button.btn-buy {
  background-color: var(--mainColor);
  color: var(--white);
}

.prd-detail-wrap .info-wrap {
  width: 100%;
}
.prd-detail-wrap .info-tabs {
  width: 100%;
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
}
.prd-detail-wrap .info-tabs ul {
  display: flex;
  flex-flow: row wrap;
  gap: 2.5rem;
}
.prd-detail-wrap .info-tabs ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: calc(5rem - 2px);
  font-weight: 400;
  font-size: var(--size18);
  line-height: 1;
  color: #666;
}
.prd-detail-wrap .info-tabs ul li a::before {
  display: block;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #111;
  position: absolute;
  bottom: 0;
  left: 0;
  opacity: 0;
}
.prd-detail-wrap .info-tabs ul li a.on {
  font-weight: 600;
  color: #111;
}
.prd-detail-wrap .info-tabs ul li a.on::before {
  opacity: 1;
}
.prd-detail-wrap .info-box-wrap {
  padding: 6.25rem 0;
}
.prd-detail-wrap .info-box {
  display: none;
}
.prd-detail-wrap .info-box.on {
  display: block;
}
.prd-detail-wrap .info-box .table-wrap {
  border-top: 1px solid #111;
  margin-bottom: 6.25rem;
}
.prd-detail-wrap .info-box .table-wrap table {
  width: 100%;
}
.prd-detail-wrap .info-box .table-wrap table colgroup col:nth-child(1) {
  width: 21.429%;
}
.prd-detail-wrap .info-box .table-wrap table tr {
  border-bottom: 1px solid #ddd;
}
.prd-detail-wrap .info-box .table-wrap table tr th {
  padding: 0.875rem 1.875rem;
  font-weight: 600;
  font-size: var(--size15);
  line-height: 1.4;
  color: #111;
  background-color: #F3F4F6;
}
.prd-detail-wrap .info-box .table-wrap table tr td {
  padding: 0.875rem 1.875rem;
  font-size: var(--size15);
  line-height: 1.4;
  color: #666;
}
.prd-detail-wrap .info-box img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}

/* 페이지네이션 */
.page-btn2 {
  margin-top: 3.125rem;
  display: flex;
  flex-flow: row wrap;
  gap: 13px;
  justify-content: center;
  align-items: center;
}
.page-btn2 button {
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}
.page-btn2 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.page-btn2 ul li a {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center; 
  font-weight: 400;
  font-size: var(--size16);
  line-height: 1;
  color: var(--black06);
  justify-content: center;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  -ms-border-radius: 50%;
  -o-border-radius: 50%;
}
.page-btn2 ul li.active a {
  background: var(--mainColor);
  font-weight: 600;
  color: var(--white);
}

/* 가까운 스토어 찾기 */
.store-wrap {
  display: flex;
  flex-flow: row wrap;
  gap: 1.25rem;
  margin-top: 1.875rem;
}
.store-wrap .sub-tit {
  font-weight: 600;
  font-size: var(--size18);
  line-height: 1.16666667;
  color: var(--black);
  margin-bottom: 1.25rem;
}
.store-wrap .map-wrap {
  width: 100%;
}
.store-wrap .map-wrap #map {
  width: 100%;
  height: 25rem;
  border-radius: 20px;
  overflow: hidden;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
}
.store-wrap .map-wrap .root_daum_roughmap,
.store-wrap .map-wrap .root_daum_roughmap .wrap_map {
  width: 100%;
  height: 100%;
}
.store-wrap .filter-wrap {
  width: calc(100% - 56.875rem);
}
.store-wrap .filter-list {
  width: 100%;
  height: 25rem;
  border-radius: 20px;
  overflow-y: auto;
  border: 2px solid #ccc;
  -webkit-border-radius: 20px;
  -moz-border-radius: 20px;
  -ms-border-radius: 20px;
  -o-border-radius: 20px;
  padding: 1.75rem;
}
.store-wrap .filter-list li:not(:first-child) {
  margin-top: 0.975rem;
}
.store-wrap .filter-list li label {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 10px;
  width: 100%;
}
.store-wrap .filter-list li label p {
  max-width: calc(100% - 10px - 1.25rem);
  font-family: 'NotoSans';
  font-weight: 400;
  font-size: var(--size15);
  line-height: 1.2;
  color: var(--black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.store-wrap .search-bar {
  width: 100%;
  background-color: #F8F8F8;
  border: 1px solid #ddd;
  padding: 1.25rem 0;
  display: flex; 
  align-items: stretch;
  flex-flow: row wrap;
  justify-content: center;
  gap: 5px;
}
.store-wrap .search-bar select {
  width: 10rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 0 0.875rem;
  font-family: 'NotoSans';
  font-weight: 400;
  font-size: var(--size15);
  line-height: 1.2;
  background-color: #fff;
  color: var(--black);
  outline: none;
}
.store-wrap .search-bar input {
  width: 18.75rem;
  border-radius: 10px;
  border: 1px solid #ddd;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
  padding: 0 0.875rem;
  font-family: 'NotoSans';
  font-weight: 400;
  font-size: var(--size15);
  line-height: 1.2;
  background-color: #fff;
  color: var(--black09);
  outline: none;
}
.store-wrap .search-bar button {
  font-family: 'NotoSans';
  width: 5rem;
  height: 2.5rem;
  border-radius: 10px;
  background-color: var(--mainColor);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
  font-size: var(--size15);
  line-height: 1.2;
  color: var(--white);
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}
.store-list-wrap {
  width: 100%;
  margin-top: 1.875rem;
}
.store-list {
  width: 100%;
  border-top: 1px solid #ddd;
}
.store-list table {
  width: 100%;
}
.store-list table colgroup col:first-child {
  width: 17.65625%;
}
.store-list table colgroup col:last-child {
  width: 15%;
}
.store-list table colgroup col:nth-of-type(2) {
  width: auto; 
}
.store-list table tr {
  border-bottom: 1px solid #ddd;
}
.store-list table thead th {
  font-family: 'NotoSans';
  font-weight: 500;
  font-size: var(--size15);
  line-height: 1.2;
  text-align: center;
  color: var(--black);
  background-color: #F6F6F6;
  vertical-align: middle;
  height: 3.125rem;
}
.store-list table tbody td {
  font-family: 'NotoSans';
  font-weight: 400;
  font-size: var(--size15);
  line-height: 1.2;
  text-align: center;
  color: var(--black);
  height: 3.125rem;
  vertical-align: middle;
}
.store-list table tbody td:last-child {
  text-align: left;
  padding: 0 10px 0 4.625rem;
}

/* 애니메이션 */
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -ms-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
}
}