@charset "utf-8";
/* ==========================================================================
   우리의집 테마 — UI 컴포넌트
   색은 반드시 var(--oh-*) 로만 쓴다. 하드코딩된 hex 는 테스트가 잡아낸다.
   ========================================================================== */

/* ============================================================== 버튼 */
.oh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--oh-sp-2);
  height: 44px;
  padding-inline: var(--oh-sp-5);
  border: 1px solid transparent;
  border-radius: var(--oh-r-sm);
  background: var(--oh-surface);
  color: var(--oh-text-1);
  font-size: var(--oh-fs-14);
  font-weight: var(--oh-fw-semibold);
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  transition: background var(--oh-t-fast), color var(--oh-t-fast),
              border-color var(--oh-t-fast), opacity var(--oh-t-fast);
}
.oh-btn:hover { background: var(--oh-surface-2); color: var(--oh-text-1); }
.oh-btn:disabled, .oh-btn.is-disabled { opacity: .45; pointer-events: none; }

.oh-btn--primary {
  background: var(--oh-primary-strong);
  color: var(--oh-on-primary);
  border-color: transparent;
}
.oh-btn--primary:hover { background: var(--oh-primary-hover); color: var(--oh-on-primary); }

.oh-btn--outline {
  background: transparent;
  border-color: var(--oh-primary);
  color: var(--oh-primary);
}
.oh-btn--outline:hover { background: var(--oh-primary-weak); color: var(--oh-primary-hover); }

.oh-btn--ghost { background: transparent; color: var(--oh-text-2); }
.oh-btn--ghost:hover { background: var(--oh-surface); color: var(--oh-text-1); }

.oh-btn--line {
  background: var(--oh-bg);
  border-color: var(--oh-border-strong);
  color: var(--oh-text-1);
}
.oh-btn--line:hover { border-color: var(--oh-text-3); background: var(--oh-surface); }

.oh-btn--danger { background: var(--oh-danger); color: var(--oh-text-inverse); }
.oh-btn--danger:hover { background: var(--oh-danger); opacity: .88; color: var(--oh-text-inverse); }

.oh-btn--sm { height: 34px; padding-inline: var(--oh-sp-3); font-size: var(--oh-fs-13); }
.oh-btn--lg { height: 54px; padding-inline: var(--oh-sp-7); font-size: var(--oh-fs-16); }
.oh-btn--block { width: 100%; }
.oh-btn--icon { width: 44px; padding: 0; }
.oh-btn--icon.oh-btn--sm { width: 34px; }
.oh-btn--pill { border-radius: var(--oh-r-full); }

.oh-btn-group { display: flex; flex-wrap: wrap; gap: var(--oh-sp-2); }
.oh-btn-group--end { justify-content: flex-end; }
.oh-btn-group--center { justify-content: center; }

/* ============================================================== 카드 */
.oh-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  background: var(--oh-elevated);
  border-radius: var(--oh-r-md);
  color: inherit;
}
a.oh-card:hover { color: inherit; }

.oh-card__media {
  position: relative;
  aspect-ratio: var(--ratio, 1);
  overflow: hidden;
  border-radius: var(--oh-r-md);
  background: var(--oh-skeleton);
}
.oh-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--oh-t-slow);
}
.oh-card:hover .oh-card__media img { transform: scale(1.04); }
.oh-card__media--flat { border-radius: 0; }

/* 카드 위 떠 있는 버튼(스크랩 등) */
.oh-card__float {
  position: absolute;
  right: var(--oh-sp-2);
  bottom: var(--oh-sp-2);
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border-radius: var(--oh-r-full);
  background: rgba(0, 0, 0, .55);
  color: var(--oh-on-media);
  opacity: 0;
  transition: opacity var(--oh-t-fast), background var(--oh-t-fast);
}
.oh-card:hover .oh-card__float, .oh-card__float:focus-visible { opacity: 1; }
@media (hover: none) { .oh-card__float { opacity: 1; } }

.oh-card__body { padding: var(--oh-sp-3) var(--oh-sp-1) var(--oh-sp-4); }
.oh-card__title {
  font-size: var(--oh-fs-15);
  font-weight: var(--oh-fw-semibold);
  line-height: var(--oh-lh-tight);
  color: var(--oh-text-1);
}
.oh-card__desc { margin-top: var(--oh-sp-2); font-size: var(--oh-fs-13); color: var(--oh-text-2); }
.oh-card__meta {
  display: flex;
  align-items: center;
  gap: var(--oh-sp-3);
  margin-top: var(--oh-sp-3);
  font-size: var(--oh-fs-12);
  color: var(--oh-text-2);
}
.oh-card__meta span { display: inline-flex; align-items: center; gap: 4px; white-space: nowrap; }
.oh-card__meta .oh-writer { min-width: 0; flex: 0 1 auto; }
.oh-card__meta > span:not(.oh-writer) { flex: 0 0 auto; }

/* 테두리형 카드 (설문·통계·폼 등) */
.oh-panel {
  padding: var(--oh-sp-5);
  background: var(--oh-elevated);
  border: 1px solid var(--oh-border);
  border-radius: var(--oh-r-lg);
}
.oh-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--oh-sp-3);
  margin-bottom: var(--oh-sp-4);
}
.oh-panel__title { font-size: var(--oh-fs-16); font-weight: var(--oh-fw-bold); }

/* ============================================================== 상품 카드 */
.oh-product { display: flex; flex-direction: column; min-width: 0; color: inherit; }
.oh-product:hover { color: inherit; }
.oh-product__media {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--oh-r-md);
  background: var(--oh-skeleton);
}
.oh-product__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--oh-t-slow); }
.oh-product:hover .oh-product__media img { transform: scale(1.04); }
.oh-product__body { padding-top: var(--oh-sp-3); }
.oh-product__brand {
  font-size: var(--oh-fs-12);
  font-weight: var(--oh-fw-semibold);
  color: var(--oh-text-2);
}
.oh-product__name {
  margin-top: 2px;
  font-size: var(--oh-fs-14);
  line-height: var(--oh-lh-base);
  color: var(--oh-text-1);
}
.oh-product__pricebox {
  display: flex;
  align-items: baseline;
  gap: var(--oh-sp-2);
  margin-top: var(--oh-sp-2);
}
.oh-product__rate {
  font-size: var(--oh-fs-16);
  font-weight: var(--oh-fw-bold);
  color: var(--oh-sale);
}
.oh-product__price {
  font-size: var(--oh-fs-16);
  font-weight: var(--oh-fw-bold);
  color: var(--oh-text-1);
}
.oh-product__price small { font-size: var(--oh-fs-13); font-weight: var(--oh-fw-medium); }
.oh-product__origin { font-size: var(--oh-fs-12); color: var(--oh-text-3); text-decoration: line-through; }
.oh-product__foot {
  display: flex;
  align-items: center;
  gap: var(--oh-sp-2);
  margin-top: var(--oh-sp-2);
  font-size: var(--oh-fs-12);
  color: var(--oh-text-2);
}
.oh-product__star { display: inline-flex; align-items: center; gap: 2px; color: var(--oh-star); }
.oh-product__star .oh-ico { width: 14px; height: 14px; }
.oh-product__soldout {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, .55);
  color: var(--oh-on-media);
  font-weight: var(--oh-fw-bold);
}

/* ============================================================== 칩 / 뱃지 */
.oh-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--oh-sp-1);
  height: 34px;
  padding-inline: var(--oh-sp-4);
  border: 1px solid var(--oh-border-strong);
  border-radius: var(--oh-r-full);
  background: var(--oh-bg);
  font-size: var(--oh-fs-13);
  font-weight: var(--oh-fw-medium);
  color: var(--oh-text-2);
  white-space: nowrap;
  transition: all var(--oh-t-fast);
}
.oh-chip:hover { border-color: var(--oh-text-3); color: var(--oh-text-1); }
.oh-chip.is-active {
  background: var(--oh-text-1);
  border-color: var(--oh-text-1);
  color: var(--oh-bg);
}
.oh-chip--sm { height: 28px; padding-inline: var(--oh-sp-3); font-size: var(--oh-fs-12); }
.oh-chip-list {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--oh-sp-2);
  overflow-x: auto;
  scrollbar-width: none;
  padding-bottom: var(--oh-sp-1);
}
.oh-chip-list::-webkit-scrollbar { display: none; }
.oh-chip-list--wrap { flex-wrap: wrap; overflow: visible; }

.oh-badge {
  display: inline-flex;
  align-items: center;
  height: 20px;
  padding-inline: var(--oh-sp-2);
  border-radius: var(--oh-r-xs);
  background: var(--oh-surface-2);
  font-size: var(--oh-fs-11);
  font-weight: var(--oh-fw-bold);
  color: var(--oh-text-2);
}
.oh-badge--notice { background: var(--oh-primary-weak); color: var(--oh-primary-hover); }
.oh-badge--new    { background: var(--oh-sale-weak); color: var(--oh-sale); }
.oh-badge--hot    { background: var(--oh-sale); color: var(--oh-text-inverse); }
.oh-badge--secret { background: var(--oh-surface-2); color: var(--oh-text-3); }
.oh-badge--best   { background: var(--oh-text-1); color: var(--oh-bg); }
.oh-badge--free   { background: transparent; border: 1px solid var(--oh-border-strong); color: var(--oh-text-2); }
.oh-badge--dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 7px; height: 7px;
  padding: 0;
  border-radius: var(--oh-r-full);
  background: var(--oh-sale);
}

/* ============================================================== 아바타 */
.oh-avatar {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 32px; height: 32px;
  overflow: hidden;
  border-radius: var(--oh-r-full);
  background: var(--oh-surface-2);
  color: var(--oh-text-3);
}
.oh-avatar img { width: 100%; height: 100%; object-fit: cover; }
.oh-avatar--sm { width: 24px; height: 24px; }
.oh-avatar--lg { width: 48px; height: 48px; }
.oh-avatar--xl { width: 72px; height: 72px; }

.oh-writer { display: flex; align-items: center; gap: var(--oh-sp-2); min-width: 0; }
.oh-writer__name {
  font-size: var(--oh-fs-13);
  font-weight: var(--oh-fw-semibold);
  color: var(--oh-text-1);
}

/* ============================================================== 폼 */
.oh-field { position: relative; margin-bottom: var(--oh-sp-4); }
.oh-field__row { display: flex; gap: var(--oh-sp-2); align-items: stretch; }
.oh-field__row > .oh-input { flex: 1 1 auto; min-width: 0; }

.oh-label {
  display: block;
  margin-bottom: var(--oh-sp-2);
  font-size: var(--oh-fs-13);
  font-weight: var(--oh-fw-semibold);
  color: var(--oh-text-1);
}
.oh-label .oh-req { color: var(--oh-sale); }

.oh-input, .oh-select, .oh-textarea {
  display: block;
  width: 100%;
  min-height: 48px;
  padding: var(--oh-sp-3) var(--oh-sp-4);
  background: var(--oh-bg);
  border: 1px solid var(--oh-border-strong);
  border-radius: var(--oh-r-sm);
  font-size: var(--oh-fs-14);
  color: var(--oh-text-1);
  transition: border-color var(--oh-t-fast), box-shadow var(--oh-t-fast);
}
.oh-input::placeholder, .oh-textarea::placeholder { color: var(--oh-text-3); }
.oh-input:focus, .oh-select:focus, .oh-textarea:focus {
  border-color: var(--oh-primary);
  box-shadow: 0 0 0 3px var(--oh-primary-weak);
  outline: none;
}
.oh-input:disabled, .oh-select:disabled, .oh-textarea:disabled {
  background: var(--oh-surface);
  color: var(--oh-text-3);
}
.oh-input.is-error, .oh-select.is-error, .oh-textarea.is-error { border-color: var(--oh-danger); }
.oh-textarea { min-height: 140px; line-height: var(--oh-lh-loose); }

.oh-select {
  appearance: none;
  padding-right: var(--oh-sp-8);
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
                    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: calc(100% - 20px) calc(50% + 2px), calc(100% - 14px) calc(50% + 2px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
}

.oh-field__help { margin-top: var(--oh-sp-2); font-size: var(--oh-fs-12); color: var(--oh-text-2); }
.oh-field__error { margin-top: var(--oh-sp-2); font-size: var(--oh-fs-12); color: var(--oh-danger); }

/* 체크 / 라디오 */
.oh-check, .oh-radio {
  display: inline-flex;
  align-items: center;
  gap: var(--oh-sp-2);
  cursor: pointer;
  font-size: var(--oh-fs-14);
  color: var(--oh-text-1);
}
.oh-check input, .oh-radio input {
  appearance: none;
  flex: 0 0 auto;
  width: 20px; height: 20px;
  margin: 0;
  border: 1.5px solid var(--oh-border-strong);
  background: var(--oh-bg);
  cursor: pointer;
  transition: all var(--oh-t-fast);
}
.oh-check input { border-radius: var(--oh-r-xs); }
.oh-radio input { border-radius: var(--oh-r-full); }
.oh-check input:checked, .oh-radio input:checked {
  background: var(--oh-primary-strong);
  border-color: var(--oh-primary-strong);
}
/* 체크표시: ::after 를 회전시켜 진짜 갈고리 모양을 만든다 */
.oh-check { position: relative; }
.oh-check input { position: relative; }
.oh-check input:checked::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid var(--oh-on-primary);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.oh-radio input:checked { box-shadow: inset 0 0 0 4px var(--oh-bg); }
.oh-check input:focus-visible, .oh-radio input:focus-visible { outline: 2px solid var(--oh-primary); outline-offset: 2px; }

/* 수량 조절 */
.oh-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--oh-border-strong);
  border-radius: var(--oh-r-sm);
  overflow: hidden;
}
.oh-qty button { display: grid; place-items: center; width: 36px; height: 36px; color: var(--oh-text-2); }
.oh-qty button:hover { background: var(--oh-surface); color: var(--oh-text-1); }
.oh-qty input {
  width: 46px; height: 36px;
  border: 0;
  border-inline: 1px solid var(--oh-border);
  background: transparent;
  text-align: center;
  font-size: var(--oh-fs-14);
}

/* 파일 드롭 */
.oh-drop {
  display: grid;
  place-items: center;
  gap: var(--oh-sp-2);
  padding: var(--oh-sp-8) var(--oh-sp-4);
  border: 1.5px dashed var(--oh-border-strong);
  border-radius: var(--oh-r-md);
  background: var(--oh-surface);
  color: var(--oh-text-2);
  text-align: center;
  transition: border-color var(--oh-t-fast), background var(--oh-t-fast);
}
.oh-drop.is-over { border-color: var(--oh-primary); background: var(--oh-primary-weak); }

/* ============================================================== 그리드 */
.oh-grid { display: grid; gap: var(--oh-sp-5); }
.oh-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.oh-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.oh-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.oh-grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.oh-grid--6 { grid-template-columns: repeat(6, minmax(0, 1fr)); }

@media (max-width: 1279px) {
  .oh-grid--6 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}
@media (max-width: 1023px) {
  .oh-grid--4, .oh-grid--5, .oh-grid--6 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .oh-grid { gap: var(--oh-sp-4); }
  .oh-grid--3, .oh-grid--4, .oh-grid--5, .oh-grid--6 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* 가로 스크롤 레일 */
.oh-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: var(--oh-sp-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: var(--oh-sp-2);
}
.oh-rail::-webkit-scrollbar { display: none; }
.oh-rail > * { scroll-snap-align: start; }
@media (min-width: 1024px) { .oh-rail { grid-auto-columns: minmax(0, calc((100% - var(--oh-sp-5) * 2) / 3)); } }
@media (max-width: 767px)  { .oh-rail { grid-auto-columns: 76%; gap: var(--oh-sp-3); } }

/* ============================================================== 섹션 */
.oh-section { padding-block: var(--oh-sp-9); }
.oh-section + .oh-section { padding-top: 0; }
.oh-section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: var(--oh-sp-4);
  margin-bottom: var(--oh-sp-5);
}
.oh-section__title {
  font-size: var(--oh-fs-24);
  font-weight: var(--oh-fw-bold);
  letter-spacing: -.03em;
}
.oh-section__sub { margin-top: var(--oh-sp-2); font-size: var(--oh-fs-14); color: var(--oh-text-2); }
.oh-section__more {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  flex: 0 0 auto;
  font-size: var(--oh-fs-13);
  font-weight: var(--oh-fw-semibold);
  color: var(--oh-text-2);
}
.oh-section__more:hover { color: var(--oh-primary); }

@media (max-width: 767px) {
  .oh-section { padding-block: var(--oh-sp-7); }
  .oh-section__title { font-size: var(--oh-fs-18); }
}

/* ============================================================== 캐러셀 */
.oh-carousel { position: relative; overflow: hidden; border-radius: var(--oh-r-lg); }
.oh-carousel__viewport { overflow: hidden; }
.oh-carousel__track {
  display: flex;
  transition: transform var(--oh-t-slow);
}
.oh-carousel__slide { flex: 0 0 100%; min-width: 0; }
.oh-carousel__nav {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: var(--oh-r-full);
  background: var(--oh-elevated);
  box-shadow: var(--oh-shadow-2);
  color: var(--oh-text-1);
  opacity: 0;
  transition: opacity var(--oh-t-base);
}
.oh-carousel:hover .oh-carousel__nav { opacity: .95; }
.oh-carousel__nav--prev { left: var(--oh-sp-4); }
.oh-carousel__nav--next { right: var(--oh-sp-4); }
.oh-carousel__dots {
  position: absolute;
  left: 50%;
  bottom: var(--oh-sp-4);
  translate: -50% 0;
  display: flex;
  gap: var(--oh-sp-2);
  padding: var(--oh-sp-2) var(--oh-sp-3);
  border-radius: var(--oh-r-full);
  background: rgba(0, 0, 0, .45);
}
.oh-carousel__dot {
  width: 7px; height: 7px;
  border-radius: var(--oh-r-full);
  background: var(--oh-on-media);
  opacity: .45;
  transition: opacity var(--oh-t-fast), width var(--oh-t-fast);
}
.oh-carousel__dot.is-active { opacity: 1; width: 20px; }
@media (max-width: 767px) { .oh-carousel__nav { display: none; } }

/* ============================================================== 탭 */
.oh-tabs {
  display: flex;
  gap: var(--oh-sp-6);
  border-bottom: 1px solid var(--oh-border);
  overflow-x: auto;
  scrollbar-width: none;
}
.oh-tabs::-webkit-scrollbar { display: none; }
.oh-tabs__item {
  flex: 0 0 auto;
  padding: var(--oh-sp-3) 0;
  border-bottom: 2px solid transparent;
  font-size: var(--oh-fs-15);
  font-weight: var(--oh-fw-semibold);
  color: var(--oh-text-2);
  white-space: nowrap;
}
.oh-tabs__item:hover { color: var(--oh-text-1); }
.oh-tabs__item.is-active { color: var(--oh-text-1); border-bottom-color: var(--oh-text-1); }
.oh-tabs--fill { gap: 0; }
.oh-tabs--fill .oh-tabs__item { flex: 1 1 0; text-align: center; }

/* ============================================================== 페이지네이션 */
.oh-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--oh-sp-1);
  margin-top: var(--oh-sp-8);
}
.oh-pagination a, .oh-pagination strong, .oh-pagination span {
  display: grid;
  place-items: center;
  min-width: 36px; height: 36px;
  padding-inline: var(--oh-sp-2);
  border-radius: var(--oh-r-sm);
  font-size: var(--oh-fs-14);
  font-weight: var(--oh-fw-medium);
  color: var(--oh-text-2);
}
.oh-pagination a:hover { background: var(--oh-surface); color: var(--oh-text-1); }
.oh-pagination strong, .oh-pagination .is-current {
  background: var(--oh-text-1);
  color: var(--oh-bg);
  font-weight: var(--oh-fw-bold);
}

/* ============================================================== 아코디언 */
.oh-accordion { border-top: 1px solid var(--oh-border); }
.oh-accordion details { border-bottom: 1px solid var(--oh-border); }
.oh-accordion summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--oh-sp-4);
  padding: var(--oh-sp-5) var(--oh-sp-2);
  cursor: pointer;
  list-style: none;
  font-size: var(--oh-fs-15);
  font-weight: var(--oh-fw-semibold);
  color: var(--oh-text-1);
}
.oh-accordion summary::-webkit-details-marker { display: none; }
.oh-accordion summary:hover { color: var(--oh-primary); }
.oh-accordion summary .oh-ico { flex: 0 0 auto; color: var(--oh-text-3); transition: transform var(--oh-t-fast); }
.oh-accordion details[open] summary .oh-ico { transform: rotate(180deg); }
.oh-accordion__body {
  padding: 0 var(--oh-sp-2) var(--oh-sp-5);
  font-size: var(--oh-fs-14);
  line-height: var(--oh-lh-loose);
  color: var(--oh-text-2);
}

/* ============================================================== 모달 */
.oh-modal {
  position: fixed;
  inset: 0;
  z-index: var(--oh-z-modal);
  display: grid;
  place-items: center;
  padding: var(--oh-sp-4);
  background: var(--oh-overlay);
}
.oh-modal[hidden] { display: none; }
.oh-modal__box {
  width: min(480px, 100%);
  max-height: 86vh;
  overflow-y: auto;
  padding: var(--oh-sp-6);
  background: var(--oh-elevated);
  border-radius: var(--oh-r-lg);
  box-shadow: var(--oh-shadow-3);
}
.oh-modal__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--oh-sp-4);
}
.oh-modal__title { font-size: var(--oh-fs-18); font-weight: var(--oh-fw-bold); }
.oh-modal__foot { display: flex; gap: var(--oh-sp-2); margin-top: var(--oh-sp-6); }
.oh-modal__foot .oh-btn { flex: 1 1 0; }

/* ============================================================== 토스트 */
.oh-toast-area {
  position: fixed;
  left: 50%;
  bottom: var(--oh-sp-8);
  translate: -50% 0;
  z-index: var(--oh-z-toast);
  display: flex;
  flex-direction: column;
  gap: var(--oh-sp-2);
  pointer-events: none;
}
.oh-toast {
  padding: var(--oh-sp-3) var(--oh-sp-5);
  border-radius: var(--oh-r-full);
  background: var(--oh-text-1);
  color: var(--oh-bg);
  font-size: var(--oh-fs-14);
  font-weight: var(--oh-fw-medium);
  box-shadow: var(--oh-shadow-2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity var(--oh-t-base), transform var(--oh-t-base);
}
.oh-toast.is-in { opacity: 1; transform: none; }
.oh-toast--error { background: var(--oh-danger); color: var(--oh-text-inverse); }
@media (max-width: 767px) {
  .oh-toast-area { bottom: calc(var(--oh-tabbar-h) + var(--oh-sp-5)); }
}

/* ============================================================== 빈 상태 */
.oh-empty {
  display: grid;
  place-items: center;
  gap: var(--oh-sp-3);
  padding: var(--oh-sp-11) var(--oh-sp-4);
  text-align: center;
  color: var(--oh-text-3);
}
.oh-empty .oh-ico { width: 40px; height: 40px; }
.oh-empty__title { font-size: var(--oh-fs-15); font-weight: var(--oh-fw-semibold); color: var(--oh-text-2); }

/* ============================================================== 스켈레톤 */
.oh-skeleton {
  background: var(--oh-skeleton);
  border-radius: var(--oh-r-sm);
  animation: oh-pulse 1.4s ease-in-out infinite;
}
@keyframes oh-pulse { 0%, 100% { opacity: 1; } 50% { opacity: .55; } }

/* ============================================================== 알림 박스 */
.oh-note {
  display: flex;
  gap: var(--oh-sp-3);
  padding: var(--oh-sp-4);
  border-radius: var(--oh-r-md);
  background: var(--oh-surface);
  font-size: var(--oh-fs-13);
  color: var(--oh-text-2);
  line-height: var(--oh-lh-loose);
}
.oh-note--info { background: var(--oh-primary-weak); color: var(--oh-primary-hover); }
.oh-note--warn { background: var(--oh-sale-weak); color: var(--oh-sale); }

/* ============================================================== 구분선 */
.oh-hr { height: 1px; margin-block: var(--oh-sp-6); background: var(--oh-border); border: 0; display: block; }

/* ============================================================== 액션바 */
.oh-actionbar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--oh-sp-2);
  padding-block: var(--oh-sp-6);
}
.oh-actionbar__btn {
  display: inline-flex;
  align-items: center;
  gap: var(--oh-sp-2);
  height: 42px;
  padding-inline: var(--oh-sp-5);
  border: 1px solid var(--oh-border-strong);
  border-radius: var(--oh-r-full);
  font-size: var(--oh-fs-14);
  font-weight: var(--oh-fw-semibold);
  color: var(--oh-text-2);
  transition: all var(--oh-t-fast);
}
.oh-actionbar__btn:hover { border-color: var(--oh-primary); color: var(--oh-primary); }
.oh-actionbar__btn.is-on { border-color: var(--oh-sale); color: var(--oh-sale); }

/* ============================================================== 정보 테이블 */
.oh-dl { display: grid; grid-template-columns: 120px 1fr; gap: var(--oh-sp-3) var(--oh-sp-4); font-size: var(--oh-fs-14); }
.oh-dl dt { color: var(--oh-text-2); }
.oh-dl dd { margin: 0; color: var(--oh-text-1); }
@media (max-width: 479px) { .oh-dl { grid-template-columns: 92px 1fr; } }
