.catalogRoot,
.detailRoot {
  min-height: 100vh;
  width: 100%;
  background: #ffffff;
  color: #161d39;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

.catalogRoot *,
.detailRoot * {
  box-sizing: border-box;
}

.catalogHeader {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  min-height: 64px;
  border-bottom: 1px solid #f3f4f6;
  background: #ffffff;
}

.headerInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1280px);
  height: 64px;
  margin: 0 auto;
  padding: 0 24px;
  gap: 24px;
}

.headerLeft {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 150px;
}

.logoLink,
.detailLogoButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

.catalogLogo {
  display: block;
  width: auto;
  height: 32px;
  object-fit: contain;
}

.logoText {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0;
  color: #161d39;
}

.desktopSearch {
  display: flex;
  flex: 1;
  justify-content: center;
  max-width: 448px;
}

.searchBox {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}

.searchBox svg {
  position: absolute;
  left: 12px;
  width: 16px;
  height: 16px;
  fill: none;
  stroke: #161d39;
  stroke-width: 2;
}

.searchBox input {
  width: 100%;
  height: 40px;
  border: 1px solid transparent;
  border-radius: 999px;
  outline: 0;
  background: #f9fafb;
  color: #161d39;
  font: inherit;
  font-size: 14px;
  font-weight: 500;
  padding: 0 16px 0 40px;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.searchBox input:focus {
  border-color: #d1d5db;
  background: #ffffff;
}

.headerInquiryButton,
.bottomActionBar button {
  border: 0;
  border-radius: 999px;
  background: #e9bb60;
  color: #161d39;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  transition: opacity 160ms ease;
}

.headerInquiryButton {
  padding: 10px 24px;
  box-shadow: 0 1px 3px rgba(22, 29, 57, 0.08);
}

.headerInquiryButton:hover,
.bottomActionBar button:hover {
  opacity: 0.9;
}

.mobileMenuButton,
.iconButton,
.detailIconButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #161d39;
  cursor: pointer;
}

.mobileMenuButton {
  display: none;
  width: 40px;
  height: 40px;
}

.mobileMenuButton:hover,
.detailIconButton:hover {
  background: #f9fafb;
}

.mobileMenuButton svg,
.iconButton svg,
.detailIconButton svg,
.filterButton svg,
.activeCategory svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mobileSearch {
  display: none;
  padding: 0 16px 12px;
  border-bottom: 1px solid #f9fafb;
}

.catalogBody {
  width: 100%;
  padding-top: 64px;
}

.catalogMain {
  display: flex;
  gap: 48px;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 32px 24px 80px;
}

.categorySidebar {
  position: sticky;
  top: 64px;
  flex: 0 0 256px;
  height: calc(100vh - 64px);
  overflow-y: auto;
  padding-top: 0;
}

.categorySidebar h3 {
  margin: 0 0 16px;
  color: #9ca3af;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.categorySidebar ul {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.categoryButton,
.activeCategory {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 40px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: #ffffff;
  color: #161d39;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
  text-align: left;
  transition: background-color 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.categoryButton:hover {
  background: #f9fafb;
}

.activeCategory {
  border-color: #e9bb60;
  background: #e9bb60;
  box-shadow: 0 1px 4px rgba(22, 29, 57, 0.08);
  font-weight: 800;
}

.productSection {
  min-width: 0;
  flex: 1;
}

.mobileCategories {
  display: none;
  width: 100%;
  gap: 8px;
  overflow-x: auto;
  padding: 0 0 16px;
  scrollbar-width: none;
}

.mobileCategories::-webkit-scrollbar {
  display: none;
}

.categoryPill,
.activeCategoryPill {
  flex: 0 0 auto;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  background: #ffffff;
  color: #161d39;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 16px;
}

.activeCategoryPill {
  border-color: #e9bb60;
  background: #e9bb60;
  font-weight: 800;
  box-shadow: 0 1px 4px rgba(22, 29, 57, 0.08);
}

.catalogTitleRow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  gap: 16px;
}

.catalogTitleRow h1 {
  margin: 0;
  color: #161d39;
  font-size: 24px;
  font-weight: 300;
  line-height: 1.3;
}

.catalogTitleRow h1 span {
  margin-left: 8px;
  color: #9ca3af;
  font-size: 18px;
  font-weight: 400;
}

.filterButton {
  display: none;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  color: #161d39;
  cursor: pointer;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
}

.productGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 48px 24px;
}

.productCard {
  display: block;
  min-width: 0;
  color: inherit;
  text-decoration: none;
}

.productImageWrap {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  overflow: hidden;
  border-radius: 2px;
  background: #f3f4f6;
  margin-bottom: 12px;
}

.productImageWrap img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 700ms ease;
}

.productCard:hover .productImageWrap img {
  transform: scale(1.05);
}

.productImageWrap::after {
  position: absolute;
  inset: 0;
  content: '';
  background: rgba(22, 29, 57, 0);
  transition: background-color 300ms ease;
}

.productCard:hover .productImageWrap::after {
  background: rgba(22, 29, 57, 0.05);
}

.detailBadge {
  position: absolute;
  z-index: 1;
  right: 16px;
  bottom: 16px;
  transform: translateY(16px);
  border-radius: 999px;
  background: #e9bb60;
  color: #161d39;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  opacity: 0;
  padding: 8px 16px;
  text-transform: uppercase;
  transition: opacity 300ms ease, transform 300ms ease;
}

.productCard:hover .detailBadge {
  transform: translateY(0);
  opacity: 1;
}

.productMeta {
  display: grid;
  gap: 4px;
}

.productMeta h3 {
  overflow: hidden;
  margin: 0;
  color: #161d39;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.productCard:hover .productMeta h3 {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.productMeta p {
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  font-weight: 600;
}

.noImage,
.detailHeroImage span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: #9ca3af;
  font-size: 14px;
  font-weight: 600;
}

.emptyProducts {
  padding: 80px 0;
  text-align: center;
}

.emptyProducts p {
  margin: 0;
  color: #6b7280;
  font-size: 18px;
  font-weight: 600;
}

.emptyProducts button {
  border: 0;
  background: transparent;
  color: #161d39;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  margin-top: 16px;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.catalogFooter {
  margin-top: auto;
  background: #161d39;
  color: #ffffff;
}

.footerInner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 32px;
  width: min(100%, 1280px);
  margin: 0 auto;
  padding: 48px 24px;
}

.footerLogo {
  display: block;
  width: auto;
  height: 32px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footerBrand p {
  max-width: 320px;
  margin: 0;
  color: #d1d5db;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

.catalogFooter h4 {
  margin: 0 0 16px;
  color: #e9bb60;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
}

.catalogFooter a {
  display: block;
  width: max-content;
  color: #d1d5db;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  text-decoration: none;
}

.catalogFooter a:hover {
  color: #e9bb60;
}

.copyright {
  width: min(100%, 1280px);
  margin: 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: #9ca3af;
  font-size: 12px;
  font-weight: 500;
  padding: 32px 24px;
  text-align: center;
}

.modalBackdrop {
  position: fixed;
  z-index: 105;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.topSheet,
.bottomSheet {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 110;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(22, 29, 57, 0.22);
}

.topSheet {
  top: 0;
  border-radius: 0 0 16px 16px;
  animation: slideDown 220ms ease-out;
}

.bottomSheet {
  bottom: 0;
  border-radius: 16px 16px 0 0;
  animation: slideUp 220ms ease-out;
}

.modalInner {
  width: min(100%, 448px);
  margin: 0 auto;
  padding: 24px 24px 32px;
}

.modalHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.modalHeader h3 {
  margin: 0;
  color: #161d39;
  font-size: 18px;
  font-weight: 800;
}

.iconButton {
  width: 40px;
  height: 40px;
  color: #9ca3af;
}

.iconButton:hover {
  color: #161d39;
}

.contactList {
  display: grid;
  gap: 12px;
}

.contactItem,
.kakaoItem {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 12px;
  color: #161d39;
  padding: 16px;
  text-decoration: none;
  transition: background-color 160ms ease, opacity 160ms ease;
}

.contactItem {
  background: #f9fafb;
}

.contactItem:hover {
  background: #f3f4f6;
}

.kakaoItem {
  background: #fee500;
  color: #3c1e1e;
}

.kakaoItem:hover {
  opacity: 0.9;
}

.contactIcon,
.kakaoIcon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 999px;
  background: #ffffff;
  color: #161d39;
  box-shadow: 0 1px 3px rgba(22, 29, 57, 0.08);
}

.contactIcon svg,
.kakaoIcon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contactItem strong,
.kakaoItem strong,
.contactItem small,
.kakaoItem small {
  display: block;
}

.contactItem strong,
.kakaoItem strong {
  font-size: 16px;
  font-weight: 800;
}

.contactItem small,
.kakaoItem small {
  color: #6b7280;
  font-size: 12px;
  margin-top: 2px;
}

.kakaoItem small {
  color: rgba(60, 30, 30, 0.72);
}

.detailRoot {
  padding-bottom: 112px;
}

.detailHeader {
  position: fixed;
  z-index: 50;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  border-bottom: 1px solid #f3f4f6;
  background: #ffffff;
  padding: 0 16px;
}

.detailIconButton {
  width: 40px;
  height: 40px;
  color: #161d39;
}

.detailIconButton:last-child {
  color: #9ca3af;
}

.detailLogoButton {
  flex: 1;
  height: 100%;
}

.detailLogo {
  display: block;
  width: auto;
  height: 40px;
  object-fit: contain;
}

.detailMain {
  width: min(100%, 672px);
  margin: 0 auto;
  padding-top: 64px;
}

.detailHeroImage {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1 / 1;
  width: 100%;
  background: #ffffff;
  margin-bottom: 24px;
}

.detailHeroImage img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.detailContent {
  padding: 0 16px;
}

.detailContent h2 {
  margin: 0 0 24px;
  color: #161d39;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.25;
}

.specList {
  display: grid;
  gap: 16px;
  border-top: 1px solid #f3f4f6;
  border-bottom: 1px solid #f3f4f6;
  margin-bottom: 24px;
  padding: 20px 0;
}

.specRow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.specRow > span {
  flex: 0 0 88px;
  color: #c29235;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
}

.specRow strong {
  flex: 1;
  color: #161d39;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.6;
  text-align: right;
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.specRow strong span {
  display: block;
}

.wpContent {
  width: 100%;
  overflow: hidden;
  color: #4b5563;
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 32px;
}

.wpContent figure {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
}

.wpContent img {
  display: block;
  width: 100% !important;
  height: auto !important;
  max-width: 100% !important;
  border-radius: 8px;
  margin: 16px 0;
}

.wpContent p {
  margin: 0 0 16px;
}

.wpContent h1,
.wpContent h2,
.wpContent h3 {
  color: #161d39;
  font-weight: 800;
  line-height: 1.3;
  margin: 40px 0 16px;
}

.wpContent ul {
  color: #4b5563;
  margin: 0 0 16px;
  padding-left: 24px;
}

.bottomActionBar {
  position: fixed;
  z-index: 50;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid #f3f4f6;
  background: #ffffff;
  box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.04);
  padding: 16px;
}

.bottomActionBar > button {
  display: block;
  width: min(100%, 640px);
  height: 48px;
  margin: 0 auto;
  font-size: 16px;
}

.detailState {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  color: #161d39;
  font-family: Pretendard, -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-weight: 800;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

@media (max-width: 1023px) {
  .headerInner {
    padding: 0 16px;
  }

  .mobileMenuButton {
    display: inline-flex;
  }

  .desktopSearch {
    display: none;
  }

  .mobileSearchOpen {
    display: block;
  }

  .catalogMain {
    display: block;
    padding: 32px 16px 80px;
  }

  .categorySidebar {
    display: none;
  }

  .mobileCategories {
    display: flex;
  }

  .catalogTitleRow {
    margin-bottom: 24px;
  }

  .catalogTitleRow h1 {
    font-size: 22px;
  }

  .catalogTitleRow h1 span {
    font-size: 17px;
  }

  .filterButton {
    display: inline-flex;
  }

  .productGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px 16px;
  }

  .detailBadge {
    display: none;
  }
}

@media (max-width: 767px) {
  .headerInquiryButton {
    display: none;
  }

  .headerLeft {
    min-width: 0;
  }

  .catalogLogo {
    height: 30px;
  }

  .catalogTitleRow h1 {
    font-size: 20px;
  }

  .catalogTitleRow h1 span {
    display: inline;
    font-size: 16px;
  }

  .productMeta h3 {
    font-size: 14px;
  }

  .productMeta p {
    font-size: 12px;
  }

  .footerInner {
    grid-template-columns: 1fr;
    padding: 48px 16px;
  }

  .modalInner {
    padding: 24px 24px 40px;
  }
}

.ycc-inquiry-form{border-top:1px solid #e5e7eb;margin-top:20px;padding-top:18px;display:grid;gap:10px}.ycc-inquiry-form>strong{font-size:14px;color:#111827}.ycc-inquiry-form>div{display:grid;grid-template-columns:1fr 1fr;gap:8px}.ycc-inquiry-form input,.ycc-inquiry-form textarea{width:100%;border:1px solid #d1d5db;border-radius:8px;padding:10px 12px;background:#fff;color:#111827;font:inherit}.ycc-inquiry-form textarea{resize:vertical}.ycc-inquiry-form button{border:0;border-radius:8px;background:#111827;color:#fff;padding:11px 14px;font-weight:700;cursor:pointer}.ycc-inquiry-form button:disabled{opacity:.55}.ycc-inquiry-form p{font-size:12px;margin:0;color:#374151}
