@import url(https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap);
/* 예시파일 */

:root {
  --layout-color: #fff;
}

@charset "utf-8";

:root {
  --main-font: 'Pretendard';
  --whole-color: #fff;
  --background-color: #f5f6f8;
  --point-color: #5628f5 !important;
  --black-color: #111;
  --dark-gray-color: #282b35;
  --error-color: #b3261e;

  --empty-color: #f5f6f8;
  --default-color: #ddd;
  --blue-gray-color: #3f434c;
  --gray-color: #999;
  --gray-font-color: #828282;
  --tooltip-bg-color: #f7f7f7;

  --default-font-color: #282b35;
}

body {
  font-family: var(--main-font);
  overscroll-behavior: none;
  overscroll-behavior-y: none;
  -webkit-overflow-scrolling: touch;
}

input,
textarea,
select {
  font-size: 16px; /* iOS Safari에서 input 요소에 자동으로 적용되는 확대기능 방지 */
}

.header {
  align-items: center;
}

.product-section {
  margin-top: 20px;
}

.product-section__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 18px;
}

.product-section__more {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px;
  background: #282b35;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 10px 20px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  height: 52px;
}

.btn {
  border-radius: 12px !important;
}

.view-none {
  display: none !important;
}

.product-content__more-btn {
  background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0) 100%) !important;
  & button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    margin-bottom: 20px;
    background: #282b35 !important;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    height: 52px;
  }
}

.product-thumb-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  white-space: inherit;
}

.product-thumb-price {
  font-size: 18px;
  font-weight: 600;
}

.thumb-item__img {
  border-radius: 8px;
}

.fab-btn {
  background-color: var(--dark-gray-color);
}

.title-modal__header {
  border-bottom: #f0f2f5 solid 1px;
}
.shopping-basket__count {
  top: -4px;
  right: -4px;
  background-color: var(--error-color);
  width: 16px;
  height: 16px;
  color: white;
  font-size: 11px;
  font-weight: 500;
}

.l-panel {
  box-shadow: none;
  border-bottom: none;
  margin-bottom: 40px;
}

.header__home-button {
  display: flex;
  align-items: center;
}

.header__left-btn {
  display: flex;
  gap: 8px;
  top: calc(50%);
}

.product-summary__price-detail {
  flex-direction: column;
  align-items: flex-start;
}

.product-summary__original-price {
  font-size: 16px;
}
.product-summary__discounted-price {
  display: flex;
  align-items: center;
}

.product-summary__off-percent {
  color: #ff0000;
  font-size: 18px;
  font-weight: 600;
}

.product-summary__freight-line {
  border-top: none;
}

.product-content {
  border-top: none;
}

.tabs {
  padding-left: 16px;
  padding-right: 16px;
  font-size: 16px;

  .on {
    color: #303030;
    font-weight: 700 !important;
    border-bottom: 2px solid #303030;
  }
}

/* bottom-sheet */
.bottom-sheet__background {
  background-color: #fff;
  position: absolute;
  bottom: 0;
  width: 100%;
  height: fit-content;
  padding: 20px;
  box-shadow: 0 -4px 4px rgba(0, 0, 0, 0.05);
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}

.bottom-sheet__backdrop {
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
}

.bottom-sheet__header {
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
}

.bottom-sheet__content {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 17px;
  font-weight: 600;
}

.bottom-sheet__content__item {
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  padding-bottom: 16px;
  cursor: pointer;
}

/* alert */
.modal__box--alert,
.modal__box--confirm {
  min-height: unset;
}

/* modal */

.portal .modal {
  border-radius: 16px;
}

.portal .full-modal {
  border-bottom-left-radius: 0px;
  border-bottom-right-radius: 0px;
}

.modal__box .modal__box--confirm {
  min-height: unset;
}

.modal__box--confirm {
  min-height: unset;
}

.modal__content .modal__content--confirm {
  padding: 0;
}

.modal__content {
  min-height: unset;
  display: block;
  padding: 24px;
  padding-bottom: 0;
}

.modal__btns {
  gap: 8px;
  padding: 24px;
  border-top: none;
}

.modal__btns .btn {
  padding: 16px;
  background-color: var(--default-color);
  border-radius: 8px;
  height: 56px;
  font-size: 17px;
}

.modal__btns .btn:nth-of-type(n + 2) {
  border-left: none;
  background-color: var(--point-color);
  color: white;
}

/* product reviews */
.product-content-review {
  padding-top: 0 !important;
}

.product-review-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-review-summary__title {
  margin-top: 0;
  font-size: 18px;
  font-weight: 600;
}

.product-board-list__search {
  margin-top: 16px;
}

.product-board-list__search p {
  font-weight: 600;
  font-size: 18px;
}

.product-board-list ul {
  border-top: none;
}

.product-review-item {
  cursor: pointer;
  background-color: #f3f5fd;
  padding: 20px;
  border-radius: 16px;
  border-bottom: none;
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}

.product-review-item__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
}

.product-review-item__rating {
  display: flex;
  align-items: center;
  gap: 4px;
}

.product-review-item__image li img {
  width: 98px;
  height: 98px;
  border-radius: 8px;
  object-fit: cover;
}

.product-review-item__image {
  margin-right: 0;
  margin-bottom: 0;
}

.product-board-list__sort-type {
  min-height: 0 !important;
}

.product-review-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
  aspect-ratio: 1 / 1;
  border: 1px solid #f5f5f5;
}

.product-review-thumb-item {
  list-style-type: none;
}

/* product detail */

.product-detail {
  border-top: none !important;
}

/* purchase */
.purchase__opener {
  width: 100%;
  height: 40px;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  top: -40px;
  border: none;
  box-shadow: #353a3f10 -4px -4px 4px;
}

.purchase__buy-btn {
  background-color: var(--point-color);
}

.purchase.product-detail {
  padding: 26px;
}

.quantity {
  padding: 16px;
}

.quantity__del {
  top: 8px;
  right: 8px;
}

.counter {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
}

.counter__input {
  border-width: 0 1px;
}

.counter__btn {
  border: none;
}

.purchase__total {
  border-top: none;
  justify-content: space-between;
  font-size: 18px;
}

.purchase__button-wrap {
  padding-top: 16px;
}

.purchase__naver-pay-notice {
  word-break: keep-all;
  display: flex;
  text-align: start;
  padding: 10px 20px;
  background-color: var(--background-color);
  border-radius: 12px;
  margin-top: 10px;
  font-weight: 500;
}

.purchase__naver-pay-notice span:last-child {
  margin-left: 5px;
}

.review-form__text-area textarea {
  border-radius: 12px;
  height: 160px;
}

.review-form__text-area-label {
  font-size: 18px;
  font-weight: 500;
}

.board-product-item__description {
  margin-bottom: 0;
}

.review-form__upload-btn {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  background-color: #f5f5f5;
  border: none;
  font-size: 28px;
  font-weight: 100;
  margin-top: 0;
  cursor: pointer;
}

.review-form__evaluation {
  padding: 0;
  margin: 0 0 20px 0;
  text-align: unset;
}

.review-form__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-form__image {
  width: 70px;
  height: 70px;
  border-radius: 16px;
  object-fit: cover;
  border: 1px solid #f5f5f5;
}

.delete {
  top: 4px;
  right: 4px;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.board-form .delete::before,
.board-form .delete::after {
  top: 4px;
  left: 10px;
  height: 12px;
}

.rating-star__progress {
  background-image: url(https://storefront.cdn-nhncommerce.com/copy/mall-80064/eocyaearth-5706/custom-rating-sprite..png?ff3f74c3b15f3e9e5564);
}

/* form */
.select-box,
.text-field {
  border-radius: 4px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  min-height: 56px;
}

.text-area {
  border-radius: 4px;
}

/* carousel */
.main-carousel__container {
  padding: 0 16px !important;
}

.main-carousel__item {
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 1.76;
}

.main-carousel__item img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.main-carousel__container .swiper-pagination-fraction {
  color: #fff;
  background: #babecc;
  border-radius: 18px;
  padding: 4px 10px 2px 10px;
  width: auto;
  display: flex;
  font-size: 10px;
  font-weight: 500;
  right: 29px;
  bottom: 16px;
  left: unset;
  gap: 1px;
}

.purchase__button-wrap {
  padding-top: 16px;
}

.custom-checkbox .check-radio__ico {
  border-radius: 4px;
}

.custom-checkbox.check-radio input:checked ~ :where(.check-radio__ico) {
  background-color: #1d1b20;
}

.customer-center__inquiry-button {
  padding: 0.3571428571rem 0;
  height: 3.0313rem;
  background-color: var(--point-color);
  color: #fff;
  margin: 0;
  border: none;
}

/* cart */

.l-panel.cart__delivery-section {
  margin-bottom: 0;
}

.cart__delete-btn {
  display: none;
}

.cart__product-detail .product-thumb-item .thumb-item__media {
  width: 98px;
  height: 98px;
}

.cart__product-detail .cart__quantity-controller {
  background-color: unset;
  padding: 0;
  margin-top: 16px;
}

.cart__product-detail .quantity-changer {
  border-radius: 8px;
  height: 32px;
  width: 112px;
}

.cart__product-detail .quantity-changer button {
  width: 30px;
}

.cart__product-detail .quantity-changer__input input {
  padding: 5px 0px;
}

.l-panel.cart__select-manager {
  margin-bottom: 0;
}

.cart__check-all-btn.cart__check-all-btn--delivery-group {
  display: none;
}

.cart .price-tag {
  border: none;
}

.cart .price-tag__final-amount dd em {
  color: var(--black-color);
  font-size: 16px;
}

.cart__fixed-order-btn button,
.cart__order-btn {
  background-color: #282b35;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 13px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  height: 52px;
}

/* order */

.order-sheet .text-field {
  border-radius: 4px;
}

.order-sheet .select-box {
  min-height: unset;
  border-radius: 4px;
  height: 54px;
}

.order-sheet button {
  border-radius: 4px;
}

.order-sheet .order-sheet__promotion ol {
  list-style-type: disc;
  color: #565966;
  padding: 0 16px;
}

.order-sheet .order-sheet__promotion ol li em {
  color: #007aff;
}

.order-sheet .l-panel.order-sheet__payment-info {
  margin: 0;
}

.order-sheet .l-panel.order-sheet__payment-info .price-tag {
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column-reverse;
}

.order-sheet .price-tag__final-amount em {
  font-size: 16px;
  color: var(--black-color);
}

.order-sheet .btn--default {
  color: #6f7380;
  border-color: #6f7380;
}

.order-sheet .order-sheet__pay-btn,
.order-sheet .order-sheet__sign-in-btn {
  background-color: #282b35;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 13px 16px;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s;
  height: 52px;
}

.order-sheet .order-sheet__product-summary {
  padding: 16px;
}

.accordion.order-sheet__product-table[open] + .order-sheet__product-summary {
  display: none;
}

.order-sheet .pay-method-btn {
  width: 100%;
  flex-direction: row-reverse;
  justify-content: center;
  gap: 5px;
  background-color: unset;
  color: #6f7380;
  border-color: #6f7380;
  text-align: center;
  font-size: 16px;
}

.order-sheet .pay-method-btn--checked {
  background-color: #282b35;
  color: #fff;
  border-color: #282b35;
}

.order-sheet .pay-method-btn--checked .ico {
  filter: invert(0%);
  opacity: 1;
}

.order-sheet .order-sheet__item .input-with-unit {
  justify-content: start;
}

.order-sheet .order-sheet__item .input-with-unit .input-with-unit__input {
  text-align: start;
  width: auto;
}

.order-sheet .order-sheet__item .input-with-unit .input-with-unit__input input {
  text-align: start;
  width: auto;
  color: var(--point-color);
}

/* MyPage */
.my-info {
  padding: 0;
  background-color: unset;
  color: var(--default-font-color);
}

.my-info__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 20px;
}

.my-info__header__title {
  font-size: 16px;
  font-weight: 600;
}

.my-info__header__link {
  padding: 7px 10px;
  border-radius: 8px;
  background-color: #f1f4f6;
  font-size: 13px;
}

.my-info__credit {
  background-color: #f7f9fa;
  padding: 20px;
}

.my-info__credit__title {
  font-size: 16px;
}

.my-info__credit {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.my-info__credit__title {
  display: flex;
  align-items: center;
  gap: 6px;
}

.my-info__credit__title__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  width: 28px;
  height: 28px;
  background-color: var(--point-color);
  color: var(--empty-color);
}

.my-info__credit__number {
  font-weight: 600;
  font-size: 16px;
  color: var(--point-color);
}

.my-order-summary {
  padding: 20px;
}

.my-order-summary__title {
  font-size: 18px;
  font-weight: 600;
}

.my-order-summary__list {
  display: flex;
  margin-top: 10px;
  padding: 8px 22px;
  border-radius: 20px;
  border: 1px solid #b0b0b0;
}

.my-order-summary__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 33.3%;
  height: 98px;
  border-right: 1px solid #b0b0b0;
  &:last-child {
    border-right: none;
  }
}

.my-order-summary__item__title {
  font-size: 14px;
  font-weight: 600;
}

.my-order-summary__item__num {
  font-size: 16px;
  font-weight: 500;
}

.my-link-title {
  padding: 20px;
  font-size: 20px;
  font-weight: 700;
}

.my-menu-section {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 20px 40px;
  border-bottom: 4px solid #f7f9fa;
}

.my-menu-item {
  width: 25%;
}

.my-menu-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1;
  background-color: #f5f5f5;
  border-radius: 12px;
}

.my-menu-item__icon > svg {
  width: 40%;
  height: 40%;
}

.my-menu-item__text {
  margin-top: 5px;
  display: inline-block;
  width: 100%;
  text-align: center;
  font-size: 14px;
}

.my-menu-item__text .count {
  color: #504eb3;
}

/* Orders */

.orders_filters {
  display: flex;
  justify-content: space-between;
  margin-bottom: 16px;
}

.orders__dropdown {
  position: relative;
  display: inline-block;
}

.orders__dropdown__toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px 5px;
  cursor: pointer;
  font-size: 14px;
  color: #6e777c;
}

.orders__dropdown__toggle__icon.open {
  transform: rotate(180deg);
}

.orders__dropdown__menu {
  display: block;
  position: absolute;
  background-color: white;
  border: 1px solid #ccc;
  border-radius: 16px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin-top: 5px;
  width: 200px;
  z-index: 10;
}

.orders__dropdown.period .orders__dropdown__menu {
  right: 0;
}

.orders__dropdown__menu__title {
  font-size: 20px;
  font-weight: 700;
  padding: 20px 20px 12px 20px;
}

.orders__dropdown__item {
  padding: 16px 20px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

.orders__dropdown__item svg {
  display: none;
}

.orders__dropdown__item.checked {
  color: var(--point-color);
  font-weight: 600;
}

.orders__dropdown__item.checked svg {
  display: block;
  margin-left: auto;
}

.dropdown__item:hover {
  background-color: #f9f9f9;
}

.dropdown__label {
  margin-left: 8px;
  font-size: 14px;
}

.orders__range {
  color: #6e777c;
  text-align: center;
  font-size: 14px;
  padding: 12px 20px;
  border: 1px solid #e7edf0;
  margin-bottom: 20px;
  border-radius: 12px;
  background-color: var(--empty-color);
}

.orders__order-summary {
  margin-top: 0 !important;
}

.orders__product {
  border: none;
  height: auto;
  margin-bottom: 20px;
}

.orders__product img {
  border-radius: 12px;
  width: 98px;
  height: 98px;
}

.orders__product-description {
  gap: 12px;
}

.orders__identifier {
  border-bottom: 1px solid #e7edf0;
  border-top: 1px solid #e7edf0;
  padding: 12px 0;
  margin-bottom: 0;
}

.orders__order-header {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.orders__order-detail-status {
  font-weight: 400;
  color: var(--empty-color);
  font-size: 14px;
  padding: 4px 8px;
  border-radius: 10px;
  white-space: nowrap;
}

.orders__order-detail-button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* Order */

.order-no-label {
  background-color: unset;
}

.order-no-label__order-no-wrap {
  color: var(--default-font-color);
  font-weight: 700;
}

.order-detail__product-top-label {
  border-radius: 12px;
}

.order-detail__list-btn-wrap .btn {
  border-radius: 10px;
}

/*OrderConfirm */

.order-confirm__btn-group .btn {
  border-radius: 12px;
}

.order-confirm__img {
  width: 240px;
  height: 200px;
  background: url(https://storefront.cdn-nhncommerce.com/copy/mall-80064/eocyaearth-5706/order-success..png?d2ef5b6904f8326d984b) no-repeat center / cover;
}

.order-confirm__title {
  font-size: 22px;
  font-weight: 600;
}

.order-confirm__sub-message {
  font-size: 18px;
  margin-top: 15px;
}

/* ShippingAddress */

.profile-shipping-address__list-item {
  border-radius: 20px;
  border-width: 2px;
}

.profile-shipping-address__list-item.default {
  border-color: var(--point-color);
}

.profile-shipping-address__name {
  font-weight: 600;
  display: flex;
  gap: 6px;
}

.profile-shipping-address__default-address {
  display: block;
  background-color: #40434d;
  color: #fff;
  font-size: 10px;
  padding: 0 7px;
  border-radius: 10px;
}

.profile-shipping-address__buttons--sm {
  position: static;
}

.profile-shipping-address__buttons--sm button {
  width: auto;
  padding: 4px 30px;
  border-radius: 12px;
  border: #dfe2e8 solid 1px;
  background-color: #f0f2f5;
}

.profile-shipping-address__registration-button {
  background-color: var(--dark-gray-color);
  color: #fff;
  font-weight: 600;
  border: none;
}

.modal .modal__box--alert button[data-testid='alert-btn'] {
  background-color: var(--point-color);
  color: #fff;
  font-size: 18px;
}

.shipping-address-form__item .text-field {
  height: 56px;
  border: 1px solid #e7edf0;
  border-radius: 12px;
  display: flex;
  align-items: center;
}

.shipping-address-form__item.interactive {
  position: relative;
  border: 1px solid #e7edf0;
  padding: 0;
  border-radius: 12px;
  height: 56px;
}

.shipping-address-form__item.interactive label {
  top: 20px;
  left: 16px;
  position: absolute;
  margin: 0;
  transition: 0.3s;
}

.shipping-address-form__item.interactive:focus-within .shipping-address-form__item--label,
.shipping-address-form__item.interactive .shipping-address-form__item--label.filled {
  font-size: 11px;
  top: 8px;
}

.shipping-address-form__item.interactive .text-field {
  border: none;
}
.shipping-address-form__item.interactive .text-field input {
  padding: 8px 0 0 16px;
}

.shipping-address-form__item .address-form__zip-code .text-field {
  flex: 1;
}

.shipping-address-form__item.address .address-form-group {
  background-color: #f7f9fa;
  padding: 12px 16px;
  border-radius: 12px;
}

.shipping-address-form__item.address .address-form-group .text-field {
  border: none;
}

.shipping-address-form__item.address button {
  background-color: unset;
  border: var(--point-color) solid 1px;
  color: var(--point-color);
  margin: auto;
  padding: 7px 10px;
  width: auto;
}

.shipping-address-form__item .phone-number-input .select-box,
.shipping-address-form__item .phone-number-input .text-field {
  height: 56px;
  border: 1px solid #e7edf0;
  border-radius: 12px;
}

.shipping-address-form__item .check-radio__ico {
  border-radius: 4px;
}

.shipping-address-form__buttons button {
  border-radius: 12px;
}

.profile-shipping-address .empty-list {
  border-radius: 12px;
  margin-bottom: 20px;
}

/* FAQ */

.faq__header {
  padding: 40px 20px 10px 20px;
}
.faq__header__title {
  font-size: 28px;
  font-weight: 700;
}

.faq__header__counter {
  margin-top: 20px;
  font-size: 13px;
}

.faq__header__counter strong {
  margin-top: 20px;
  font-weight: 600;
  color: var(--point-color);
}

.faq .faq-list {
  border-top: none;
  display: flex;
  flex-direction: column;
}

.faq-list__content-wrap {
  border: none;
}

.faq-list__content-wrap.is-open {
  order: -1;
}

.faq-list__content-wrap.is-open .faq-list__question {
  border-top: 1px solid #e7edf0;
  border-bottom: 1px solid #e7edf0;
}

.faq-list__content {
  padding: 20px;
}

.faq-list__question p {
  font-size: 16px;
  font-weight: 600;
}

.faq-list__answer {
  background-color: #f7f9fa;
  line-height: 1.5;
  font-size: 16px;
  word-break: keep-all;
  word-wrap: break-word;
}

.faq__search {
  background-color: unset;
  padding: 0 20px 0 20px;
  margin-top: 20px;
}

.faq__search .text-field {
  height: 40px;
}

.faq__search button {
  background-color: unset;
  border: 1px solid var(--point-color);
  color: var(--point-color);
}

.empty-placeholder {
  margin: 0 auto;
  width: 158px;
  height: 132px;
  display: block;
  background: url(https://storefront.cdn-nhncommerce.com/copy/mall-80064/eocyaearth-5706/placeholder..png?42b4a937f1093bed46a9) no-repeat center / cover;
}

/* personalInquiry */

.inquiry__tabs {
  padding: 0;
}

.personal-inquiry {
  padding-left: 0;
  padding-right: 0;
}

.my-page__total-count {
  padding: 0 20px;
  display: flex;
  align-items: center;
}

.inquiry-item {
  gap: 8px;
  padding: 20px;
  width: 100%;
}

.inquiry-item__top {
  justify-content: start;
  align-items: start;
  gap: 8px;
  padding: 0;
}

.inquiry-item__bottom {
  flex-direction: column;
  align-items: start;
  margin-top: 20px;
  width: 100%;
  overflow: hidden;
}

.inquiry-item__bottom .image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.inquiry-item__bottom .image-overlay__content {
  max-width: 90%;
  max-height: 90%;
  cursor: pointer;
}

.inquiry-item__top__info-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.inquiry-item__date {
  margin: 0;
}

.inquiry-item__title {
  font-weight: 600;
}

.inquiry-item.is-active .inquiry-item__content {
  margin-top: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}

.inquiry-item__text--question {
  background-color: unset;
  padding: 0 0 24px 0;
  display: none;
}

.inquiry-item__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-weight: 600;
  color: #fff;
  flex-shrink: 0;
}

.inquiry-item__question-icon {
  background: #222729;
}

.inquiry-item__answer-icon {
  background: var(--point-color);
}

.inquiry-item__text--answer {
  padding: 24px 0;
  display: flex;
  gap: 8px;
  background: unset;
}

.inquiry-item__qna-text .editor {
  white-space: normal;
  word-break: keep-all;
  word-wrap: break-word;
}

.inquiry-item__qna-text .editor > p {
  white-space: normal;
  word-break: keep-all;
  word-wrap: break-word;
  margin-top: 0;
}

.inquiry-item__date {
  text-align: left;
}

.inquiry-item.is-active .inquiry-item__text--answer {
  border-top-style: solid;
}

.inquiry-item__divider {
  width: 100%;
  height: 12px;
  background-color: #f7f9fa;
}

.personal-inquiry__registration-button-area {
  padding: 32px 20px 20px 20px;
  position: sticky;
  bottom: 0;
  background-color: #fff;
}

.personal-inquiry__registration-button {
  padding: 0.3571428571rem 0;
  height: 3.0313rem;
  background-color: var(--point-color);
  color: #fff;
  margin: 0;
  border: none;
}

.inquiry-item.is-active .board-form__buttons--small {
  margin: 0 0 0 auto;
}

.inquiry-item + .inquiry-item {
  border-top: none;
}

.personal-inquiry .folding-images-by-one-row {
  padding: 10px 0;
  margin: 0;
}

.personal-inquiry .folding-images-by-one-row__image-list li {
  background-color: var(--empty-color);
  border-radius: 10px;
  overflow: hidden;
  width: 80px;
  height: 80px;
}

.personal-inquiry .folding-images-by-one-row__image-list li img {
  width: 100%;
}

.personal-inquiry .folding-images-by-one-row__image-count {
  border-bottom-right-radius: 10px;
  bottom: 10px;
}

.inquiry-form__btn--delete,
.inquiry-form__btn--modify {
  border-radius: 5px !important;
  border-color: var(--point-color);
  color: var(--point-color);
}

.board-form__image {
  border-radius: 10px;
  overflow: hidden;
}

.personal-inquiry-notice {
  padding: 20px 20px 30px 20px;
}

.personal-inquiry-notice__title {
  font-size: 28px;
  font-weight: 700;
}

.personal-inquiry-description {
  color: #6e777c;
  font-size: 14px;
  line-height: 1.4;
  margin-top: 8px;
}

.personal-inquiry,
.inquiry-item {
  overflow: hidden;
  box-sizing: border-box;
  max-width: 100%;
}

.inquiry-item__content,
.inquiry-item__text--question,
.inquiry-item__text--answer {
  white-space: normal;
  word-wrap: break-word;
  word-break: break-all;
}

.inquiry-item__content .image-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.inquiry-item__content .image-overlay__content {
  max-width: 90%;
  max-height: 90%;
  cursor: pointer;
}

.personal-inquiry-notice__ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 20px;
}

.personal-inquiry-notice-alert {
  display: flex;
  flex-direction: column;
  align-items: start;
  text-align: start;
}

.personal-inquiry-notice-alert h1 {
  font-size: 1.18rem;
  font-weight: bold;
  margin-bottom: 8px;
}

.personal-inquiry-notice-alert p {
  color: #6e777c;
}

.personal-inquiry-notice__list {
  display: flex;
  gap: 8px;
  font-size: 13px;
  line-height: 1.4;
  color: #6e777c;
  background-color: #f7f9fa;
  padding: 8px 20px;
  border-radius: 12px;
  word-break: keep-all;
  word-wrap: break-word;
}

.board-form__image-files {
  display: inline-block;
}

.board-form__image-files li {
  display: inline-block;
  width: 80px;
  height: 80px;
  margin-right: 8px;
}

.board-form__image-files li img {
  object-fit: cover;
  min-width: 100%;
  min-height: 100%;
}

.board-form__image-files li .delete {
  background-color: #e7edf0;
  opacity: 1;
  width: 16px;
  height: 16px;
}

.board-form__image-files li .delete::before,
.board-form__image-files li .delete::after {
  background-color: #6e777c;
  height: 8px;
  top: calc(50% - 4px);
  left: 50%;
}

.board-form__upload-btn {
  width: 80px;
  height: 80px;
  display: inline-block;
  font-size: 38px;
  font-weight: 100;
  background-color: #f5f6f8;
  color: #6e777c;
  border: none;
}

/* Coupon */

.coupon-container {
  margin-top: 10px;
  display: flex;
  align-items: center;
  background-color: #f5f2ff;
  color: black;
  border: 1px solid #e0d7ff;
  border-radius: 10px;
  padding: 0 10px 0 20px;
  height: 50px;
  font-family: sans-serif;
  position: relative;
  font-size: 16px;
  font-weight: 400;
  cursor: pointer;
}

.coupon-text {
  flex-grow: 1;
}

.coupon-divider {
  width: 1px;
  height: 50px;
  background-color: transparent;
  border-left: 1px dotted #e0d7ff;
  margin: 0 10px;
  position: relative;
}

.coupon-divider::before,
.coupon-divider::after {
  content: '';
  width: 12px;
  height: 12px;
  background-color: #ffffff;
  border: 1px solid #e0d7ff;
  border-radius: 50%;
  position: absolute;
  left: -6px;
  clip-path: inset(0 0 50% 0);
}

.coupon-divider::before {
  transform: rotate(180deg);
  top: -6px;
}

.coupon-divider::after {
  bottom: -6px;
}

.coupons__download-btn {
  background-color: var(--point-color);
}

.coupon-download-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--point-color);
  color: white;
  border-radius: 50%;
  width: 36px;
  height: 36px;
}

.coupon__wrap .coupon {
  padding: 0;
  height: 170px;
  max-height: 170px;
  min-height: 170px;
  max-width: calc(100% - 60px);
}

.coupon__wrap .coupon::before,
.coupon__wrap .coupon::after {
  background-image: none;
}

.coupon__wrap .coupon .coupon__summary {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  height: 170px;
  max-height: 170px;
  min-height: 170px;
  border-right: none;
  padding-left: 20px;
}

.coupon__wrap .coupon .coupon__download-btn::before {
  content: '';
  position: absolute;
  right: 99px;
  top: 8px;
  height: 154px;
  width: 1px;
  border-left: 2px dashed #d5d5d5;
}

.coupon__wrap .coupon .coupon__download-btn {
  border: 1px solid #e8e8e8;
  border-radius: 10px;
  border-left: none;
  width: 100px;
  height: 170px;
  max-height: 170px;
  min-height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--point-color);
}

.coupon__wrap .coupon .ico--download-red {
  background-color: var(--point-color) !important;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMTIgNnY4bTAgMGwtMy0zbTMgM2wzLTMiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiAvPgogIDxsaW5lIHgxPSI4IiB5MT0iMTciIHgyPSIxNiIgeTI9IjE3IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgLz4KPC9zdmc+);
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-position: center;
  width: 100px;
  height: 100px;
}

.coupon__wrap .coupon .ico--download-gray {
  background-color: var(--point-color) !important;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNCIgaGVpZ2h0PSIyNCIgdmlld0JveD0iMCAwIDI0IDI0IiBmaWxsPSJub25lIj4KICA8cGF0aCBkPSJNMTIgNnY4bTAgMGwtMy0zbTMgM2wzLTMiIHN0cm9rZT0id2hpdGUiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIiBzdHJva2UtbGluZWpvaW49InJvdW5kIiAvPgogIDxsaW5lIHgxPSI4IiB5MT0iMTciIHgyPSIxNiIgeTI9IjE3IiBzdHJva2U9IndoaXRlIiBzdHJva2Utd2lkdGg9IjIiIHN0cm9rZS1saW5lY2FwPSJyb3VuZCIgLz4KPC9zdmc+);
  background-size: 50% 50%;
  background-repeat: no-repeat;
  background-position: center;
  width: 100px;
  height: 100px;
}

.my-page-coupon__wrap {
  padding: 0;
}

.my-page-coupon__tabs {
  background-color: unset;
}

.my-page-coupon__tabs .tabs__item.on button {
  color: #111;
}

.my-page-coupon__tabs li:not(:first-child):before {
  display: none;
}

.my-page-coupon__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #e7edf0;
  border-top: 1px solid #e7edf0;
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 20px;
  padding-right: 20px;
}

.my-page-coupon__registration-button {
  width: 102px;
  height: 40px;
  font-size: 14px;
  background-color: #f1f4f6;
  border: none;
  color: var(--point-color);
  margin: 0;
  font-weight: 700;
}

.my-page-coupon__header .my-page__total-count {
  padding: 0;
  font-size: 14px;
  color: #6e777c;
  margin: 0;
}

.my-page-coupon__list {
  padding: 0 20px 30px 20px;
}

.my-page-coupon__name {
  font-size: 16px;
  font-weight: 700;
  color: #4a5256;
}

.my-page-coupon__discounted-price {
  font-weight: 600;
}

.my-page-coupon__limit-sale-price,
.my-page-coupon__max-amount {
  color: #6e777c;
}

.my-page-coupon__box {
  border-color: #aeb7bc;
}

.my-page-coupon__box--left {
  width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.my-page-cuopon__notice {
  background-color: #d9d9d9;
  padding: 20px;
  padding-left: 40px;
  color: #898a8d;
  list-style-type: disc;
  line-height: 1.3;
  word-break: keep-all;
  word-wrap: break-word;
  font-size: 12px;
}

.my-page-coupon-registration__notice {
  margin-top: 20px;
  list-style-type: disc;
  padding-left: 20px;
  font-size: 14px;
  color: #6e777c;
  line-height: 1.4;
  word-break: keep-all;
  word-wrap: break-word;
}

/* Notice */

.notice-detail__date {
  font-size: 14px;
}

.notice-detail__content {
  line-height: 1.4;
}

.notice-detail__title-box,
.notice-detail__content {
  padding: 20px;
  word-break: keep-all;
  word-wrap: break-word;
}

/* Reviews */
.profile-product-review__tabs {
  background-color: unset;
}

.profile-product-review__tabs .tabs__item.on button {
  color: #111;
}

.profile-product-review__tabs li:not(:first-child):before {
  display: none;
}

.profile-product-review .product-thumb-item {
  background-color: unset;
}

.profile-product-review .product-review-item {
  background-color: unset;
}
.profile-product-review__list-item {
  border: unset;
}

.profile-product-review__list-item + .profile-product-review__list-item {
  margin-top: 0;
  border-top: 4px solid #f7f9fa;
}

.profile-product-review .thumb-LIST {
  padding: 0;
  border-bottom: 4px solid #f7f9fa;
}

.profile-product-review .profile-list {
  padding: 20px 0;
}

.profile-product-review .product-review-item {
  margin-bottom: 0;
}

/* Like */

.profile-like {
  padding: 20px 0;
}

.profile-like .product-thumb-item {
  background-color: unset;
}

.profile-like__list-item {
  border: unset;
}

.profile-like__list-item + .profile-like__list-item {
  margin-top: 0;
  border-top: 4px solid #f7f9fa;
}

.price-tag__Credit {
  background: var(--point-color);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  width: 16px;
  height: 16px;
  display: inline;
  padding: 0 5px;
  margin-left: 2px;

  justify-content: center;
  align-items: center;
  border-radius: 40px;
}

/* 네비게이션 칩 스타일 추가 */
.nav {
  padding: 12px 0;
  background-color: #fff;
}

.nav__chip {
  display: inline-block;
  padding: 10px 12px;
  border-radius: 999px;
  line-height: 20px;
  font-size: 14px;
  margin-right: 10px;
  color: #6e777c;
  background-color: #ffffff;
  white-space: nowrap;
  font-weight: 500;
  border: 1px solid #e7edf0;
}

.nav__chip.is-active {
  background-color: #5628f5;
  color: #222729;
}

.nav .swiper-slide {
  width: auto;
}

