


/* =========================================================
   물품거래후기 페이지
========================================================= */
.review-page {
  width: 100%;
}

.review-section {
  width: 100%;
  padding: 0px 0 110px;
}


/* =========================================================
   페이지 제목
========================================================= */
.review-heading {
  text-align: center;
}

.review-heading h1 {
  margin: 0;

  color: #111111;
  line-height: 1.25;
  letter-spacing: -0.06em;
}

.review-heading p {
  margin: 8px 0 0;
  line-height: 1.5;
}


/* =========================================================
   후기 검색
========================================================= */
.review-search {
  display: flex;
  align-items: center;

  width: 100%;
  max-width: 520px;
  height: 48px;

  margin: 37px auto 58px;
  padding: 0 11px 0 23px;

  background-color: #ffffff;
  border: 1.5px solid var(--color-point);
  border-radius: 50px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.review-search:focus-within {
  border-color: #ad8200;
  box-shadow: 0 5px 18px rgba(204, 153, 0, 0.12);
}

.review-search__input {
  flex: 1;
  min-width: 0;
  height: 100%;

  color: #222222;
  background-color: transparent;
  border: 0;
  outline: 0;
}

.review-search__input::placeholder {
  color: #777777;
  opacity: 1;
}

.review-search__input::-webkit-search-cancel-button {
  display: none;
}

.review-search__button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  color: #111111;
  border-radius: 50%;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.review-search__button:hover,
.review-search__button:focus-visible {
  color: var(--color-point);
  background-color: #fff8e6;
}

.review-search__button svg {
  width: 23px;
  height: 23px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   후기 목록
========================================================= */
.review-list {
  width: 100%;
}

.review-item {
  display: grid;
  grid-template-columns: 340px minmax(0, 1fr);
  gap: 28px;

  padding: 48px 0;

  border-bottom: 1px solid #e5e5e5;

  transition:
    opacity 0.4s ease,
    transform 0.4s ease;
}

.review-item:first-child {
  padding-top: 0;
}

.review-item.is-hidden {
  display: none;
}

.review-item.is-revealing {
  animation: reviewFadeUp 0.48s ease both;
}

@keyframes reviewFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================================
   상품 요약
========================================================= */
.review-item__summary {
  display: flex;
  align-items: flex-start;
  min-width: 0;
}

.review-item__image {
  flex: 0 0 auto;

  width: 110px;
  height: 110px;

  overflow: hidden;

  background-color: #f1f1f1;
  border-radius: 9px;
}

.review-item__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.review-item:hover .review-item__image img {
  transform: scale(1.045);
}

.review-item__product {
  flex: 1;
  min-width: 0;
  margin-left: 30px;
}

.review-item__product h2 {
  margin: 7px 0 0;

  color: #111111;
  line-height: 1.35;
}

.review-item__meta {
  display: flex;
  align-items: center;
  gap: 14px;

  margin-top: 5px;
}

.review-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.review-rating__stars {
  color: #e60012;
  font-size: 17px;
  line-height: 1;
  letter-spacing: 1px;
}

.review-rating strong {
  color: #111111;
}

.review-item__difference {
  margin: 11px 0 0;

  color: #333333;
  line-height: 1.55;
}

.review-item__difference strong {
  color: #ff8800;
}


/* =========================================================
   후기 상세 내용
========================================================= */
.review-item__content {
  min-height: 196px;
  padding: 27px 38px;

  background-color: #f7f8fa;
  border-radius: 11px;
}

.review-price-info {
  margin: 0;
}

.review-price-info > div {
  display: grid;
  grid-template-columns: 105px minmax(0, 1fr);
  align-items: center;

  min-height: 29px;
}

.review-price-info dt {
  color: #333333;
}

.review-price-info dd {
  margin: 0;

  color: #222222;
}

.review-price-info__sale {
  color: #ef1111 !important;
}

.review-item__text {
  margin: 14px 0 0;

  color: #3f3f3f;
  line-height: 1.85;
  letter-spacing: -0.025em;
}


/* =========================================================
   더보기
========================================================= */
.review-more-area {
  display: flex;
  align-items: center;
  flex-direction: column;

  margin-top: 55px;
}

.review-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;

  min-width: 130px;
  height: 49px;
  padding: 0 21px;

  color: #222222;
  background-color: #ffffff;
  border: 1px solid #999999;
  border-radius: 10px;

  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.review-more-button:hover,
.review-more-button:focus-visible {
  color: #ffffff;
  background-color: var(--color-point);
  border-color: var(--color-point);
  box-shadow: 0 8px 18px rgba(94, 69, 0, 0.13);
  transform: translateY(-2px);
}

.review-more-button__arrow {
  width: 8px;
  height: 8px;

  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;

  transform: rotate(45deg) translateY(-2px);
}

.review-complete-message {
  margin: 0;
}


/* =========================================================
   검색 결과 없음
========================================================= */
.review-empty {
  padding: 75px 20px;

  text-align: center;

  background-color: #f8f8f8;
  border-radius: 10px;
}

.review-empty p {
  margin: 0;
  color: #222222;
}

.review-empty span {
  display: block;
  margin-top: 7px;
}


/* =========================================================
   1024px 이하
========================================================= */
@media screen and (max-width: 1024px) {
  .review-item {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 23px;
  }

  .review-item__image {
    width: 95px;
    height: 95px;
  }

  .review-item__product {
    margin-left: 20px;
  }

  .review-item__content {
    padding: 25px 28px;
  }
}


/* =========================================================
   820px 이하
========================================================= */
@media screen and (max-width: 820px) {
  .review-item {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .review-item__summary {
    width: 100%;
  }

  .review-item__image {
    width: 105px;
    height: 105px;
  }

  .review-item__content {
    min-height: 0;
  }
}


/* =========================================================
   768px 이하
========================================================= */
@media screen and (max-width: 768px) {
  .review-section {
    padding: 58px 0 100px;
  }

  .review-search {
    margin-top: 31px;
    margin-bottom: 45px;
  }

  .review-item {
    padding: 38px 0;
  }

  .review-item__content {
    padding: 23px 24px;
  }
}


/* =========================================================
   작은 모바일
========================================================= */
@media screen and (max-width: 520px) {
  .review-section {
    padding-top: 0px;
  }

  .review-search {
    height: 48px;
    margin-bottom: 38px;
    padding-left: 18px;
  }

  .review-item {
    gap: 20px;
    padding: 32px 0;
  }

  .review-item__image {
    width: 88px;
    height: 88px;
  }

  .review-item__product {
    margin-left: 15px;
  }

  .review-item__meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .review-rating__stars {
    font-size: 15px;
  }

  .review-item__difference {
    margin-top: 8px;
  }

  .review-item__content {
    padding: 21px 18px;
  }

  .review-price-info > div {
    grid-template-columns: 95px minmax(0, 1fr);
  }

  .review-item__text {
    line-height: 1.75;
  }

  .review-more-area {
    margin-top: 43px;
  }
}


/* =========================================================
   아주 작은 모바일
========================================================= */
@media screen and (max-width: 380px) {
  .review-item__summary {
    align-items: flex-start;
  }

  .review-item__image {
    width: 76px;
    height: 76px;
  }

  .review-item__product {
    margin-left: 12px;
  }
}





/* =========================================================
   파트너 페이지
========================================================= */
.partner-page {
  width: 100%;
}

.partner-section {
  width: 100%;
  padding: 0px 0 55px;
}


/* =========================================================
   상단 제목
========================================================= */
.partner-heading {
  text-align: center;
}

.partner-heading h1 {
  margin: 0;

  color: #111111;
  line-height: 1.25;
  letter-spacing: -0.06em;
}

.partner-heading p {
  margin: 8px 0 0;
  line-height: 1.5;
}


/* =========================================================
   검색창
========================================================= */
.partner-search {
  display: flex;
  align-items: center;

  width: 100%;
  max-width: 520px;
  height: 48px;

  margin: 48px auto 35px;
  padding: 0 11px 0 23px;

  background-color: #ffffff;
  border: 1.5px solid var(--color-point);
  border-radius: 50px;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.partner-search:focus-within {
  border-color: #ad8200;
  box-shadow: 0 5px 18px rgba(204, 153, 0, 0.12);
}

.partner-search__input {
  flex: 1;
  min-width: 0;
  height: 100%;

  color: #222222;
  background-color: transparent;
  border: 0;
  outline: 0;
}

.partner-search__input::placeholder {
  color: #666666;
  opacity: 1;
}

.partner-search__input::-webkit-search-cancel-button {
  display: none;
}

.partner-search__button {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  color: #111111;
  border-radius: 50%;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.partner-search__button:hover,
.partner-search__button:focus-visible {
  color: var(--color-point);
  background-color: #fff8e6;
}

.partner-search__button svg {
  width: 23px;
  height: 23px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   상단 탭
========================================================= */
.partner-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;

  margin-top: 34px;
}

.partner-tabs a {
  color: #333333;

  transition: color 0.2s ease;
}

.partner-tabs a:hover,
.partner-tabs a:focus-visible,
.partner-tabs a.is-active {
  color: var(--color-point);
}

.partner-tabs > span {
  display: block;
  width: 1px;
  height: 16px;

  background-color: #cfcfcf;
}


/* =========================================================
   목록 상단
========================================================= */
.partner-list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;

  margin-top: 42px;
  margin-bottom: 22px;
}

.partner-total {
  margin: 0;
}

.partner-total strong {
  color: #111111;
}

.partner-total span {
  color: #999999;
}


/* =========================================================
   정렬 드롭다운
========================================================= */
.partner-sort {
  position: relative;
  z-index: 20;
}

.partner-sort__button {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  min-height: 34px;
  padding: 0 4px;

  color: #555555;
  background-color: transparent;
  border: 0;
}

.partner-sort__button:hover,
.partner-sort__button:focus-visible {
  color: var(--color-point);
}

.partner-sort__arrow {
  display: block;

  width: 7px;
  height: 7px;

  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;

  transform: rotate(45deg) translateY(-2px);

  transition: transform 0.2s ease;
}

.partner-sort.is-open .partner-sort__arrow {
  transform: rotate(225deg) translate(-1px, -1px);
}


/* 정렬 메뉴 */
.partner-sort__menu {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  position: absolute;
  top: calc(100% + 5px);
  right: 0;

  width: 125px;
  padding: 5px;

  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 7px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.11);

  transform: translateY(-5px);

  transition:
    visibility 0.2s ease,
    opacity 0.2s ease,
    transform 0.2s ease;
}

.partner-sort.is-open .partner-sort__menu {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;

  transform: translateY(0);
}

.partner-sort__option {
  display: block;

  width: 100%;
  min-height: 36px;
  padding: 0 11px;

  color: #444444;
  text-align: left;

  background-color: transparent;
  border: 0;
  border-radius: 4px;

  transition:
    color 0.2s ease,
    background-color 0.2s ease;
}

.partner-sort__option:hover,
.partner-sort__option:focus-visible {
  color: var(--color-point);
  background-color: #fff8e6;
}

.partner-sort__option.is-selected {
  color: var(--color-point);
  font-weight: 600;
}


/* =========================================================
   상품 목록
========================================================= */
.partner-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  border-top: 0;
}

.partner-item {
  min-width: 0;
  padding: 44px 0;

  border-bottom: 1px solid #e4e4e4;
}

/* 왼쪽 카드 */
.partner-item:nth-child(odd) {
  padding-right: 30px;
}

/* 오른쪽 카드 */
.partner-item:nth-child(even) {
  padding-left: 30px;
}

.partner-item__link {
  display: flex;
  align-items: center;

  min-width: 0;
}

.partner-item__image {
  flex: 0 0 auto;

  width: 125px;
  height: 125px;

  overflow: hidden;

  background-color: #f1f1f1;
  border-radius: 10px;
}

.partner-item__image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  transition: transform 0.4s ease;
}

.partner-item:hover .partner-item__image img {
  transform: scale(1.045);
}

.partner-item__content {
  flex: 1;
  min-width: 0;
  margin-left: 28px;
}

.partner-item__status {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 25px;
  padding: 0 9px;

  color: #ffffff;
  background-color: #08a9ef;
  border-radius: 4px;
}

.partner-item__title {
  margin: 8px 0 0;

  color: #111111;
  line-height: 1.4;
}

.partner-item__date {
  margin: 4px 0 0;
  line-height: 1.35;
}

.partner-item__tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;

  margin-top: 9px;
}

.partner-item__grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 22px;
  height: 22px;

  color: #ffffff;
  background-color: #ff7616;
  border-radius: 3px;
}

.partner-item__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 22px;
  padding: 0 9px;

  color: #777777;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 3px;
}

.partner-item__time1 {
  display: flex;
  align-items: center;
  gap: 4px;

  margin: 8px 0 0;

  color: #0099ff;
  line-height: 1.3;
}

.partner-item__time {
  display: flex;
  align-items: center;
  gap: 4px;

  margin: 8px 0 0;

  color: #ff5555;
  line-height: 1.3;
}

.partner-item__clock {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 16px;
  height: 16px;
}

.partner-item__clock svg {
  width: 100%;
  height: 100%;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* =========================================================
   검색 결과 없음
========================================================= */
.partner-empty {
  padding: 70px 20px;

  text-align: center;

  background-color: #f8f8f8;
  border-radius: 9px;
}

.partner-empty p {
  margin: 0;
}


/* =========================================================
   1024px 이하
========================================================= */
@media screen and (max-width: 1024px) {
  .partner-item:nth-child(odd) {
    padding-right: 20px;
  }

  .partner-item:nth-child(even) {
    padding-left: 20px;
  }

  .partner-item__image {
    width: 105px;
    height: 105px;
  }

  .partner-item__content {
    margin-left: 19px;
  }
}


/* =========================================================
   820px 이하
========================================================= */
@media screen and (max-width: 820px) {
  .partner-list {
    grid-template-columns: 1fr;
  }

  .partner-item,
  .partner-item:nth-child(odd),
  .partner-item:nth-child(even) {
    padding: 34px 0;
  }

  .partner-item__image {
    width: 120px;
    height: 120px;
  }

  .partner-item__content {
    margin-left: 24px;
  }
}


/* =========================================================
   768px 이하
========================================================= */
@media screen and (max-width: 768px) {
  .partner-section {
    padding: 0px 0 50px;
  }

  .partner-search {
    margin-top: 38px;
  }

  .partner-tabs {
    gap: 16px;
  }

  .partner-list-head {
    margin-top: 35px;
  }
}


/* =========================================================
   작은 모바일
========================================================= */
@media screen and (max-width: 520px) {
  .partner-section {
    padding-top:0px;
  }

  .partner-search {
    height: 48px;
    padding-left: 18px;
  }

  .partner-tabs {
    gap: 11px;
  }

  .partner-tabs a {
    font-size: 15px;
  }

  .partner-tabs > span {
    height: 14px;
  }

  .partner-list-head {
    margin-top: 30px;
  }

  .partner-item__link {
    align-items: flex-start;
  }

  .partner-item__image {
    width: 92px;
    height: 92px;
  }

  .partner-item__content {
    margin-left: 14px;
  }

  .partner-item__title {
    white-space: normal;
  }

  .partner-item__tags {
    gap: 4px;
  }

  .partner-item__tag {
    padding: 0 6px;
  }

  .partner-sort__menu {
    width: 120px;
  }
}



/* =========================================================
   파트너 상품 택배현황
========================================================= */
.partner-delivery-status {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  min-height: 30px;
  margin-top: 9px;
  padding: 0 10px;

  color: #333333;
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 5px;
}

.partner-delivery-status__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  width: 20px;
  height: 20px;

  color: #ffffff;
  background-color: var(--color-point);
  border-radius: 50%;
}

.partner-delivery-status__icon svg {
  width: 12px;
  height: 12px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-delivery-status__type {
  color: var(--color-point);
  white-space: nowrap;
}

.partner-delivery-status__text {
  color: #333333;
  white-space: nowrap;
}


/* 모바일 */
@media screen and (max-width: 520px) {
  .partner-delivery-status {
    gap: 5px;

    min-height: 28px;
    padding: 0 8px;
  }

  .partner-delivery-status__icon {
    width: 18px;
    height: 18px;
  }

  .partner-delivery-status__icon svg {
    width: 11px;
    height: 11px;
  }
}




/* =========================================================
   파트너 상세페이지
========================================================= */
.partner-view-page {
  width: 100%;
}

.partner-view-section {
  width: 100%;
  padding: 0px 0 60px;
}

.partner-view-layout {
  display: grid;
  grid-template-columns: minmax(0, 440px) minmax(0, 1fr);
  gap: 64px;

  margin-top: 50px;
}


/* =========================================================
   상품 이미지 갤러리
========================================================= */
.partner-gallery {
  min-width: 0;
}

.partner-gallery__main {
  position: relative;

  overflow: hidden;

  background-color: #eeeeee;
  border-radius: 10px;
}

.partner-gallery__viewport {
  width: 100%;
  overflow: hidden;
}

.partner-gallery__track {
  display: flex;

  width: 100%;

  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.partner-gallery__slide {
  flex: 0 0 100%;
  width: 100%;
  aspect-ratio: 1 / 1;
}

.partner-gallery__slide img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* 좌우 화살표 */
.partner-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 42px;
  height: 42px;

  color: #999999;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1);

  transform: translateY(-50%);

  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    opacity 0.2s ease;
}

.partner-gallery__arrow:hover,
.partner-gallery__arrow:focus-visible {
  color: var(--color-point);
  background-color: #ffffff;
}

.partner-gallery__arrow svg {
  width: 21px;
  height: 21px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-gallery__arrow--prev {
  left: 17px;
}

.partner-gallery__arrow--next {
  right: 17px;
}


/* 이미지 개수 */
.partner-gallery__count {
  position: absolute;
  right: 16px;
  bottom: 15px;
  z-index: 3;

  min-width: 55px;
  padding: 6px 10px;

  color: #ffffff;
  text-align: center;

  background-color: rgba(0, 0, 0, 0.55);
  border-radius: 20px;
}


/* 썸네일 */
.partner-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;

  margin-top: 12px;
}

.partner-gallery__thumb {
  position: relative;

  aspect-ratio: 1 / 1;

  overflow: hidden;

  background-color: #eeeeee;
  border: 2px solid transparent;
  border-radius: 7px;

  transition:
    border-color 0.2s ease,
    opacity 0.2s ease;
}

.partner-gallery__thumb:hover,
.partner-gallery__thumb:focus-visible {
  opacity: 0.8;
}

.partner-gallery__thumb.is-active {
  border-color: var(--color-point);
}

.partner-gallery__thumb img {
  width: 100%;
  height: 100%;

  object-fit: cover;
}


/* =========================================================
   오른쪽 상품 정보
========================================================= */
.partner-view-info {
  min-width: 0;
  padding-top: 6px;
}

.partner-view-title {
  margin: 0;

  color: #111111;
  line-height: 1.4;
  letter-spacing: -0.045em;
}

.partner-view-meta {
  margin: 18px 0 0;
}

.partner-view-meta > div {
  display: grid;
  grid-template-columns: 75px minmax(0, 1fr);
  align-items: center;

  min-height: 31px;
}

.partner-view-meta dt {
  margin: 0;
}

.partner-view-meta dd {
  margin: 0;
  color: #222222;
}


/* 등급 및 구성 */
.partner-view-badges {
  display: flex;
  align-items: center;
  gap: 8px;

  margin-top: 13px;
}

.partner-view-grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;

  color: #ffffff;
  background-color: #08a9ef;
  border-radius: 4px;
}

.partner-view-composition {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 30px;
  padding: 0 11px;

  color: #555555;
  background-color: #ffffff;
  border: 1px solid #dddddd;
  border-radius: 4px;
}


/* 물품 상태 */
.partner-view-condition {
  margin-top: 36px;
}

.partner-view-condition h3 {
  margin: 0 0 12px;

  color: #222222;
}

.partner-view-condition__box {
  min-height: 195px;
  padding: 25px 27px;

  color: #555555;
  line-height: 1.7;

  background-color: #ffffff;
  border: 1px solid #cccccc;
  border-radius: 10px;
}


/* 하단 시간 및 버튼 */
.partner-view-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  margin-top: 15px;
}

.partner-view-time {
  display: flex;
  align-items: center;
  gap: 5px;

  margin: 0;

  color: #ff5555;
}

.partner-view-time span {
  display: inline-flex;

  width: 17px;
  height: 17px;
}

.partner-view-time svg {
  width: 100%;
  height: 100%;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.partner-bid-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 128px;
  height: 50px;

  color: #ffffff;
  background-color: #111111;
  border-radius: 10px;

  transition:
    background-color 0.2s ease,
    box-shadow 0.2s ease,
    transform 0.2s ease;
}

.partner-bid-button:hover,
.partner-bid-button:focus-visible {
  background-color: var(--color-point);
  box-shadow: 0 8px 20px rgba(85, 62, 0, 0.15);
  transform: translateY(-2px);
}


/* =========================================================
   1024px 이하
========================================================= */
@media screen and (max-width: 1024px) {
  .partner-view-layout {
    grid-template-columns: minmax(0, 390px) minmax(0, 1fr);
    gap: 40px;
  }

  .partner-view-condition__box {
    min-height: 180px;
  }
}


/* =========================================================
   820px 이하
========================================================= */
@media screen and (max-width: 820px) {
  .partner-view-layout {
    grid-template-columns: 1fr;
    gap: 40px;

    max-width: 620px;
    margin-right: auto;
    margin-left: auto;
  }

  .partner-view-condition__box {
    min-height: 160px;
  }
}


/* =========================================================
   768px 이하
========================================================= */
@media screen and (max-width: 768px) {
  .partner-view-section {
    padding: 58px 0 100px;
  }

  .partner-view-layout {
    margin-top: 40px;
  }
}


/* =========================================================
   작은 모바일
========================================================= */
@media screen and (max-width: 520px) {
  .partner-view-section {
    padding-top: 0px;
  }

  .partner-view-layout {
    gap: 32px;
  }

  .partner-gallery__arrow {
    width: 38px;
    height: 38px;
  }

  .partner-gallery__arrow--prev {
    left: 10px;
  }

  .partner-gallery__arrow--next {
    right: 10px;
  }

  .partner-gallery__thumbs {
    gap: 7px;
  }

  .partner-view-condition {
    margin-top: 30px;
  }

  .partner-view-condition__box {
    min-height: 145px;
    padding: 20px 18px;
  }

  .partner-view-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .partner-bid-button {
    width: 100%;
  }
}




/* =========================================================
   파트너 상세페이지 배송 진행상태
========================================================= */
.delivery-progress {
  width: 100%;
  max-width: 610px;
  margin: 48px auto 0;
  padding: 18px 45px 22px;

  text-align: center;

  background-color: #fffcf6;
  border: 1px solid #e8deca;
  border-radius: 9px;
}


/* 제목 */
.delivery-progress__heading {
  text-align: center;
}

.delivery-progress__title {
  margin: 0;

  color: var(--color-point);
  line-height: 1.35;
  letter-spacing: -0.04em;
}

.delivery-progress__description {
  margin: 5px 0 0;

  color: #222222;
  line-height: 1.45;
}


/* =========================================================
   진행 단계
========================================================= */
.delivery-progress__steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));

  margin-top: 22px;
}

.delivery-progress__step {
  position: relative;

  display: flex;
  align-items: center;
  flex-direction: column;

  min-width: 0;
}


/* 단계 연결선 */
.delivery-progress__line {
  position: absolute;
  top: 14px;
  left: 50%;
  z-index: 0;

  width: 100%;
  height: 1px;

  background-color: #ece7dd;
}


/* 원형 아이콘 */
.delivery-progress__circle {
  position: relative;
  z-index: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 28px;
  height: 28px;

  color: #ffffff;
  background-color: #e7e9ec;
  border-radius: 50%;
}

.delivery-progress__circle svg {
  display: none;

  width: 16px;
  height: 16px;

  fill: none;
  stroke: currentColor;
  stroke-width: 2.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* 완료·현재 단계 */
.delivery-progress__step.is-complete .delivery-progress__circle,
.delivery-progress__step.is-current .delivery-progress__circle {
  background-color: #17191c;
}

.delivery-progress__step.is-complete .delivery-progress__circle svg,
.delivery-progress__step.is-current .delivery-progress__circle svg {
  display: block;
}


/* 현재 단계 연결선 색상 */
.delivery-progress__step.is-complete .delivery-progress__line {
  background-color: #ded8cd;
}


/* 단계명 */
.delivery-progress__label {
  margin-top: 7px;

  color: #333333;
  line-height: 1.35;
  white-space: nowrap;
}


/* 상세내용과의 간격 */
.delivery-progress + .partner-view-layout {
  margin-top: 48px;
}


/* =========================================================
   768px 이하
========================================================= */
@media screen and (max-width: 768px) {
  .delivery-progress {
    margin-top: 38px;
    padding: 18px 28px 21px;
  }

  .delivery-progress + .partner-view-layout {
    margin-top: 40px;
  }
}


/* =========================================================
   작은 모바일
========================================================= */
@media screen and (max-width: 480px) {
  .delivery-progress {
    padding: 17px 14px 20px;
  }

  .delivery-progress__steps {
    margin-top: 19px;
  }

  .delivery-progress__circle {
    width: 26px;
    height: 26px;
  }

  .delivery-progress__line {
    top: 13px;
  }

  .delivery-progress__label {
    font-size: 13px;
  }
}




/* =========================================================
   파트너 상세페이지 : 전달 및 매입 정산 정보
========================================================= */
.partner-settlement-info {
  margin-top: 34px;
}

.partner-settlement-section {
  padding: 0 0 27px;
  border-bottom: 1px solid #e5e5e5;
}

.partner-settlement-section + .partner-settlement-section {
  margin-top: 27px;
}

.partner-settlement-title {
  margin: 0 0 20px;
  color: #171717;
  line-height: 1.4;
  letter-spacing: -0.04em;
}


/* 정보 행 */
.partner-settlement-list {
  margin: 0;
}

.partner-settlement-list--seller {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid #f0f0f0;
}

.partner-settlement-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: center;
  gap: 20px;

  min-height: 30px;
}

.partner-settlement-row dt,
.partner-settlement-row dd {
  margin: 0;
}

.partner-settlement-row dd {
  color: #222222;
  text-align: right;
  word-break: break-all;
}


/* 전달 방식 */
.partner-delivery-method {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;

  color: #0aa8f1;
}

.partner-delivery-method__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 18px;
  height: 18px;
}

.partner-delivery-method__icon svg {
  width: 100%;
  height: 100%;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* 매입 금액 */
.partner-settlement-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;

  min-height: 72px;
  padding-top: 20px;
}

.partner-settlement-total span {
  color: #222222;
}

.partner-settlement-total strong {
  color: #16a739;
  line-height: 1.2;
  white-space: nowrap;
}


/* =========================================================
   1024px 이하
========================================================= */
@media screen and (max-width: 1024px) {
  .partner-settlement-row {
    grid-template-columns: 105px minmax(0, 1fr);
  }
}


/* =========================================================
   모바일
========================================================= */
@media screen and (max-width: 520px) {
  .partner-settlement-info {
    margin-top: 29px;
  }

  .partner-settlement-section {
    padding-bottom: 23px;
  }

  .partner-settlement-section + .partner-settlement-section {
    margin-top: 23px;
  }

  .partner-settlement-title {
    margin-bottom: 16px;
  }

  .partner-settlement-row {
    grid-template-columns: 105px minmax(0, 1fr);
    gap: 12px;

    min-height: 32px;
  }

  .partner-settlement-total {
    min-height: 66px;
    padding-top: 18px;
  }

  .partner-settlement-total strong {
    font-size: 21px;
  }
}



/* =========================================================
   후기 카테고리 탭
========================================================= */
.review-category-tabs {
  display: flex;
  align-items: center;

  width: 100%;
  margin: -23px 0 48px;

  overflow-x: auto;
  overflow-y: hidden;

  border-bottom: 1px solid #dfe3e7;

  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.review-category-tabs::-webkit-scrollbar {
  display: none;
}

.review-category-tab {
  position: relative;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;

  min-width: 64px;
  height: 47px;
  padding: 0 14px;

  color: #c7cdd3;
  background-color: transparent;
  border: 0;

  line-height: 1;
  white-space: nowrap;

  transition: color 0.2s ease;
}

.review-category-tab::after {
  content: "";

  position: absolute;
  right: 14px;
  bottom: -1px;
  left: 14px;

  height: 2px;

  background-color: transparent;

  transition: background-color 0.2s ease;
}

.review-category-tab:hover,
.review-category-tab:focus-visible {
  color: #555555;
}

.review-category-tab.is-active {
  color: #111111;
}

.review-category-tab.is-active::after {
  background-color: #111111;
}


/* 필터 전환 효과 */
.review-item.is-filter-revealing {
  animation: reviewFilterFade 0.4s ease both;
}

@keyframes reviewFilterFade {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* 태블릿 */
@media screen and (max-width: 768px) {
  .review-category-tabs {
    margin-top: -15px;
    margin-bottom: 40px;
  }

  .review-category-tab {
    min-width: 60px;
    height: 45px;
    padding: 0 12px;
  }
}


/* 모바일 */
@media screen and (max-width: 520px) {
  .review-category-tabs {
    width: calc(100% + 30px);
    margin-right: -15px;
    margin-bottom: 34px;
    margin-left: -15px;
    padding: 0 8px;
  }

  .review-category-tab {
    min-width: auto;
    height: 43px;
    padding: 0 11px;
  }

  .review-category-tab::after {
    right: 11px;
    left: 11px;
  }
}




/* =========================================================
   견적요청 페이지
========================================================= */
.estimate-request-page {
  width: 100%;
}

.estimate-request-section {
  width: 100%;
  padding: 0px 20px 60px;
}

.estimate-request-inner {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
}

.estimate-request-heading {
  text-align: center;
}

.estimate-request-heading h1 {
  margin: 0;
  color: #111111;
  line-height: 1.25;
  letter-spacing: -0.06em;
}

.estimate-request-heading p {
  margin: 8px 0 0;
  line-height: 1.5;
}

.estimate-request-form {
  margin-top: 67px;
}


/* =========================================================
   공통 입력 행
========================================================= */
.estimate-form-row {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 25px;

  margin-top: 17px;
}

.estimate-form-row:first-child {
  margin-top: 0;
}

.estimate-form-row--photo,
.estimate-form-row--textarea {
  align-items: flex-start;
}

.estimate-form-label {
  color: #222222;
  line-height: 1.45;
}

.estimate-form-row--photo .estimate-form-label,
.estimate-form-row--textarea .estimate-form-label {
  padding-top: 13px;
}

.estimate-form-control {
  min-width: 0;
}


/* =========================================================
   선택 박스
========================================================= */
.form-select-wrap {
  position: relative;
}

.estimate-request-page .form-select {
  width: 100%;
  height: 50px;
  padding: 0 48px 0 20px;

  color: #222222;
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 13px;
  outline: none;

  appearance: none;
  cursor: pointer;

  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.estimate-request-page .form-select:focus {
  border-color: var(--color-point);
  box-shadow: 0 0 0 3px rgba(204, 153, 0, 0.1);
}

.form-select-arrow {
  position: absolute;
  top: 50%;
  right: 21px;

  width: 8px;
  height: 8px;

  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;

  pointer-events: none;
  transform: translateY(-70%) rotate(45deg);
}


/* =========================================================
   사진 등록
========================================================= */
.estimate-photo-area {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
}

.estimate-photo-upload {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  flex: 0 0 auto;
  gap: 4px;

  width: 82px;
  height: 82px;

  color: #a3a8ad;
  background-color: #ffffff;
  border: 1px solid #d6d6d6;
  border-radius: 13px;

  cursor: pointer;

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    background-color 0.2s ease;
}

.estimate-photo-upload:hover,
.estimate-photo-upload:focus-within {
  color: var(--color-point);
  background-color: #fffaf0;
  border-color: var(--color-point);
}

.estimate-photo-upload__icon {
  display: flex;
  width: 28px;
  height: 28px;
}

.estimate-photo-upload__icon svg {
  width: 100%;
  height: 100%;

  fill: currentColor;
  stroke: currentColor;
  stroke-width: 1.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.estimate-photo-upload__count strong {
  font-weight: inherit;
}


/* 사진 미리보기 */
.estimate-photo-preview {
  display: contents;
}

.estimate-photo-preview__item {
  position: relative;
  flex: 0 0 auto;

  width: 82px;
  height: 82px;

  overflow: hidden;

  background-color: #eeeeee;
  border: 1px solid #dddddd;
  border-radius: 13px;
}

.estimate-photo-preview__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.estimate-photo-preview__delete {
  position: absolute;
  top: 5px;
  right: 5px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 23px;
  height: 23px;

  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.68);
  border-radius: 50%;

  font-size: 15px;
  line-height: 1;

  transition: background-color 0.2s ease;
}

.estimate-photo-preview__delete:hover,
.estimate-photo-preview__delete:focus-visible {
  background-color: #e84040;
}


/* 사진 안내 */
.estimate-photo-guide {
  margin-top: 19px;
}

.estimate-photo-guide__title {
  margin: 0;
  color: #333333;
}

.estimate-photo-guide__title span {
  margin-right: 7px;
  color: #e60012;
  font-size: 26px;
  font-weight: 800;
  line-height: 0;
}

.estimate-photo-guide__list {
  margin: 10px 0 0;
  padding: 0;

  color: #333333;
  line-height: 1.9;
}

.estimate-photo-guide__list li {
  list-style: none;
}

.estimate-photo-guide__list li::before {
  content: "·";
  margin-right: 7px;
}

.estimate-photo-message {
  margin-top: 8px;
}


/* =========================================================
   브랜드 선택 버튼
========================================================= */
.estimate-brand-select {
  display: flex;
  align-items: center;
  justify-content: space-between;

  width: 100%;
  height: 50px;
  padding: 0 20px;

  color: #9b9b9b;
  background-color: #ffffff;
  border: 1px solid #d8d8d8;
  border-radius: 13px;

  text-align: left;

  transition:
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.estimate-brand-select:hover,
.estimate-brand-select:focus-visible {
  border-color: var(--color-point);
  box-shadow: 0 0 0 3px rgba(204, 153, 0, 0.08);
}

.estimate-brand-select.has-value {
  color: #222222;
}

.estimate-brand-select__arrow {
  width: 8px;
  height: 8px;

  border-right: 1px solid #333333;
  border-bottom: 1px solid #333333;

  transform: rotate(45deg) translateY(-2px);
}


/* =========================================================
   일반 입력창
========================================================= */
.estimate-request-page .form-input {
  height: 50px;
  border-radius: 13px;
}

.estimate-condition-textarea {
  min-height: 150px;
  padding: 18px 20px;

  line-height: 1.7;
  border-radius: 13px;
}

.estimate-text-count {
  margin-top: 7px;
  text-align: right;
}

.estimate-text-count strong {
  color: var(--color-point);
}


/* =========================================================
   동의 항목
========================================================= */
.estimate-agreement-list {
  margin-top: 45px;
  padding-left: 195px;
}

.estimate-agreement {
  display: flex;
  width: 100%;
}

.estimate-agreement + .estimate-agreement {
  margin-top: 17px;
}

.estimate-agreement .form-check__box {
  width: 20px;
  height: 20px;
  margin-right: 9px;

  border-radius: 4px;
}

.estimate-agreement .form-check__box svg {
  width: 13px;
  height: 13px;
}

.estimate-agreement__text {
  flex: 1;

  color: #333333;
  line-height: 1.55;
}

.estimate-agreement__text em {
  color: #e42323;
  font-style: normal;
}


/* 제출 */
.estimate-form-message {
  margin: 14px 0 0 195px;
}

.estimate-submit {
  width: calc(100% - 195px);
  height: 50px;
  margin: 43px 0 0 195px;

  border-radius: 10px;
}

.estimate-submit:disabled {
  color: #aaaaaa;
  background-color: #eeeeef;
  box-shadow: none;
  cursor: default;
  transform: none;
}


/* =========================================================
   브랜드 선택 레이어
========================================================= */
.brand-modal {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;

  position: fixed;
  inset: 0;
  z-index: 3200;

  display: flex;
  align-items: center;
  justify-content: center;

  padding: 30px 20px;

  transition:
    visibility 0.25s ease,
    opacity 0.25s ease;
}

.brand-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.brand-modal__dim {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.52);
}

.brand-modal__dialog {
  position: relative;
  z-index: 1;

  display: flex;
  flex-direction: column;

  width: 100%;
  max-width: 590px;
  max-height: min(760px, calc(100vh - 60px));

  overflow: hidden;

  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);

  transform: translateY(20px) scale(0.98);

  transition: transform 0.25s ease;
}

.brand-modal.is-open .brand-modal__dialog {
  transform: translateY(0) scale(1);
}


/* 팝업 상단 */
.brand-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;

  min-height: 68px;
  padding: 0 24px;

  border-bottom: 1px solid #eeeeee;
}

.brand-modal__title {
  margin: 0;
  color: #171717;
}

.brand-modal__close {
  position: relative;

  width: 36px;
  height: 36px;

  border-radius: 50%;
  transition: background-color 0.2s ease;
}

.brand-modal__close:hover,
.brand-modal__close:focus-visible {
  background-color: #f2f2f2;
}

.brand-modal__close span {
  position: absolute;
  top: 17px;
  left: 8px;

  width: 20px;
  height: 2px;

  background-color: #222222;
  border-radius: 3px;
}

.brand-modal__close span:first-child {
  transform: rotate(45deg);
}

.brand-modal__close span:last-child {
  transform: rotate(-45deg);
}


/* 검색 */
.brand-modal__search {
  position: relative;

  padding: 18px 24px 13px;
}

.brand-modal__search .form-input {
  padding-right: 48px;
}

.brand-modal__search-icon {
  position: absolute;
  top: 50%;
  right: 40px;

  display: flex;

  width: 20px;
  height: 20px;

  color: #777777;
  pointer-events: none;

  transform: translateY(-35%);
}

.brand-modal__search-icon svg {
  width: 100%;
  height: 100%;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* 브랜드 목록 */
.brand-modal__body {
  flex: 1;
  min-height: 0;
  padding: 8px 24px 25px;

  overflow-y: auto;
  overscroll-behavior: contain;
}

.brand-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.brand-list__item {
  min-height: 45px;
  padding: 0 14px;

  color: #333333;
  text-align: left;

  background-color: #ffffff;
  border: 1px solid #e4e4e4;
  border-radius: 7px;

  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}

.brand-list__item:hover,
.brand-list__item:focus-visible,
.brand-list__item.is-selected {
  color: var(--color-point);
  background-color: #fffaf0;
  border-color: var(--color-point);
}

.brand-list-empty {
  padding: 50px 0;
  text-align: center;
}

body.brand-modal-open {
  overflow: hidden;
}


/* =========================================================
   태블릿
========================================================= */
@media screen and (max-width: 768px) {
  .estimate-request-section {
    padding: 58px 20px 100px;
  }

  .estimate-request-form {
    margin-top: 50px;
  }

  .estimate-form-row {
    grid-template-columns: 135px minmax(0, 1fr);
    gap: 20px;
  }

  .estimate-agreement-list {
    padding-left: 155px;
  }

  .estimate-form-message {
    margin-left: 155px;
  }

  .estimate-submit {
    width: calc(100% - 155px);
    margin-left: 155px;
  }
}


/* =========================================================
   모바일
========================================================= */
@media screen and (max-width: 560px) {
  .estimate-request-section {
    padding: 0px 15px 60px;
  }

  .estimate-request-form {
    margin-top: 42px;
  }

  .estimate-form-row {
    display: block;
    margin-top: 25px;
  }

  .estimate-form-label {
    display: block;
    margin-bottom: 9px;
  }

  .estimate-form-row--photo .estimate-form-label,
  .estimate-form-row--textarea .estimate-form-label {
    padding-top: 0;
  }

  .estimate-photo-upload,
  .estimate-photo-preview__item {
    width: calc((100vw - 70px) / 4);
    height: calc((100vw - 70px) / 4);
    max-width: 90px;
    max-height: 90px;
  }

  .estimate-agreement-list {
    margin-top: 38px;
    padding-left: 0;
  }

  .estimate-form-message {
    margin-left: 0;
  }

  .estimate-submit {
    width: 100%;
    margin-left: 0;
  }

  .brand-modal {
    align-items: flex-end;
    padding: 0;
  }

  .brand-modal__dialog {
    max-width: none;
    max-height: 88vh;

    border-radius: 17px 17px 0 0;

    transform: translateY(100%);
  }

  .brand-modal.is-open .brand-modal__dialog {
    transform: translateY(0);
  }

  .brand-modal__header {
    min-height: 62px;
    padding: 0 20px;
  }

  .brand-modal__search {
    padding: 16px 20px 11px;
  }

  .brand-modal__search-icon {
    right: 36px;
  }

  .brand-modal__body {
    padding: 7px 20px 23px;
  }

  .brand-list {
    grid-template-columns: 1fr;
  }
}


/* 단기위탁판매 상품 갤러리 */
/* PC: 가로 4개 */
.lxcs-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 50px 24px;
  width: 100%;
}

/* 태블릿: 가로 3개 */
@media (max-width: 1024px) {
  .lxcs-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 40px 18px;
  }
}

/* 작은 태블릿: 가로 2개 */
@media (max-width: 768px) {
  .lxcs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 14px;
  }
}

/* 모바일: 가로 2개 */
@media (max-width: 480px) {
  .lxcs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px 10px;
  }
}

/* 상품 카드 */
.lxcs-product {
  min-width: 0;
}

/* 검색으로 숨김 처리할 때 */
.lxcs-product[hidden] {
  display: none;
}

/* 상품 전체 링크 */
.lxcs-product__link {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* 상품 이미지 영역 */
.lxcs-product__image {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
  background: #f6f6f6;
}

/* 상품 이미지 */
.lxcs-product__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;

  transition: transform 0.45s ease;
}

/* 마우스 오버 이미지 확대 */
.lxcs-product__link:hover .lxcs-product__image img {
  transform: scale(1.045);
}

/* 상품 정보 */
.lxcs-product__info {
  padding-top: 18px;
}

/* 상품명 */
.lxcs-product__title {
  display: -webkit-box;
  overflow: hidden;
  min-height: 48px;
  margin: 0;
  color: #181818;
  font-size: 17px;
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: -0.5px;
  word-break: keep-all;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

/* 구매 시기 */
.lxcs-product__purchase {
  margin: 10px 0 0;
  color: #888;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

/* 등급 및 구성품 */
.lxcs-product__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
}

/* 등급 */
.lxcs-product__grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  min-height: 28px;
  padding: 4px 10px;
  border-radius: 30px;
  background: #171717;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

/* 구성품 태그 */
.lxcs-product__tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 4px 10px;
  border: 1px solid #e6e6e6;
  border-radius: 30px;
  background: #fff;
  color: #666;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}

/* 모바일 */
@media (max-width: 600px) {
  .lxcs-product__image {
    border-radius: 5px;
  }

  .lxcs-product__info {
    padding-top: 12px;
  }

  .lxcs-product__title {
    min-height: 42px;
    font-size: 14px;
    line-height: 1.45;
  }

  .lxcs-product__purchase {
    margin-top: 7px;
    font-size: 12px;
  }

  .lxcs-product__meta {
    gap: 5px;
    margin-top: 10px;
  }

  .lxcs-product__grade,
  .lxcs-product__tag {
    min-height: 24px;
    padding: 3px 7px;
    font-size: 10px;
  }

  .lxcs-product__grade {
    min-width: 26px;
  }
}