.p_productSpecialList {
  padding: 0;
  background: transparent;
  border: 0;
  height: auto !important;
  box-shadow: none;
}

.p_productSpecialList * {
  box-sizing: border-box;
}

.p_productSpecialList .pc_wrap {
  width: 1200px;
  max-width: 98vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  border-radius: 0 0 16px 16px;
  overflow: hidden;
  z-index: 999;
}

.p_productSpecialList .pc_header_container {
  background: #f3f7fb;
  padding: 30px 0;
  border-bottom: 1px solid #e5e7eb;
}

.p_productSpecialList .pc_header_content {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.p_productSpecialList .pc_tabs {
  width: 460px;
  max-width: 100%;
  margin: 0 auto 20px;
  display: flex;
  gap: 6px;
  padding: 4px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.p_productSpecialList .pc_tab {
  flex: 1;
  height: 36px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: #6b7280;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.p_productSpecialList .pc_tab:hover {
  color: #111827;
}

.p_productSpecialList .pc_tab.is_active {
  background: var(--ztcolor);
  color: #fff;
  box-shadow: 0 2px 4px color-mix(in srgb, var(--ztcolor) 20%, transparent);
  outline: none;
}

.p_productSpecialList .pc_search {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  border: 1px solid #dbe3ea;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: all 0.2s;
}

.p_productSpecialList .pc_search:focus-within {
  border-color: var(--ztcolor);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--ztcolor) 20%, transparent);
}

.p_productSpecialList .pc_searchInput {
  flex: 1;
  height: 46px;
  border: 0;
  outline: 0;
  padding: 0 16px;
  font-size: 15px;
  color: #111827;
  background: transparent;
}

.p_productSpecialList .pc_searchBtn {
  width: 56px;
  border: 0;
  background: var(--ztcolor);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s;
}

.p_productSpecialList .pc_searchBtn:hover {
  background: color-mix(in srgb, var(--ztcolor) 88%, #000);
}

.p_productSpecialList .pc_searchBtn svg {
  width: 20px;
  height: 20px;
  fill: #fff;
}

.p_productSpecialList .pc_panel_container {
  background: #fff;
}

.p_productSpecialList .pc_panel {
  display: none;
  width: 100%;
}

.p_productSpecialList .pc_panel.is_active {
  display: block;
}

.p_productSpecialList .pc_category {
  display: flex;
  width: 100%;
  min-height: 300px;
}

.p_productSpecialList .pc_categoryLeft {
  width: 300px;
  background: var(--ztcolor);
  display: flex;
  justify-content: flex-end;
  flex-shrink: 0;
}

.p_productSpecialList .pc_categoryLeftInner {
  width: 300px;
  padding: 0;
}

.p_productSpecialList .pc_categoryList {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p_productSpecialList .pc_categoryBtn {
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 24px;
  height: 50px;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  position: relative;
  outline: none;
  transition: color 0.2s;
}

.p_productSpecialList .pc_categoryBtn svg {
  width: 18px;
  height: 18px;
  fill: #fff;
  opacity: 0.8;
  transition: fill 0.2s;
}

.p_productSpecialList .pc_categoryBtn span {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  position: relative;
  z-index: 2;
}

.p_productSpecialList .pc_categoryBtn::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  background: #fff;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}

.p_productSpecialList .pc_categoryBtn:hover::before,
.p_productSpecialList .pc_categoryBtn.is_active::before {
  opacity: 1;
}

.p_productSpecialList .pc_categoryBtn:hover,
.p_productSpecialList .pc_categoryBtn.is_active {
  color: var(--ztcolor);
  font-weight: 700;
}

.p_productSpecialList .pc_categoryBtn:hover svg,
.p_productSpecialList .pc_categoryBtn.is_active svg {
  fill: var(--ztcolor);
  opacity: 1;
  position: relative;
  z-index: 2;
}

.p_productSpecialList .pc_categoryRight {
  flex: 1;
  background: #fff;
  padding: 30px 0 30px 40px;
}

.p_productSpecialList .pc_categoryLinks {
  max-width: 860px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 40px;
  row-gap: 12px;
}

.p_productSpecialList .pc_categoryLink {
  display: block;
  line-height: 1.5;
  color: #374151;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.p_productSpecialList .pc_categoryLink:hover {
  color: var(--ztcolor);
}

.p_productSpecialList .pc_domain {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.p_productSpecialList .pc_domainGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.p_productSpecialList .pc_domainCard {
  width: 100%;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  text-align: center;
}

.p_productSpecialList .pc_domainCard:hover .pc_domainImg {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.p_productSpecialList .pc_domainImg {
  width: 280px;
  aspect-ratio: 16/9;
  border-radius: 8px;
  background: #f3f4f6;
  background-size: cover;
  background-position: center;
  transition: all 0.3s ease;
  margin: 0 auto 12px;
}

.p_productSpecialList .pc_domainTitle {
  font-size: 15px;
  color: #111827;
  font-weight: 600;
}

@media (max-width: 1280px) {
  .p_productSpecialList .pc_categoryLinks {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .p_productSpecialList .pc_categoryLeft {
    width: 260px;
  }

  .p_productSpecialList .pc_categoryLeftInner {
    width: 260px;
  }

  .p_productSpecialList .pc_categoryBtn::before {
    width: 100%;
  }

  .p_productSpecialList .pc_domainGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .p_productSpecialList .pc_wrap {
    width: 100%;
    left: 0;
    margin: 0;
    transform: none;
    position: static;
  }

  .p_productSpecialList .pc_category {
    flex-direction: column;
  }

  .p_productSpecialList .pc_categoryLeft {
    width: 100%;
  }

  .p_productSpecialList .pc_categoryLeftInner {
    width: 100%;
  }

  .p_productSpecialList .pc_categoryRight {
    padding: 20px;
  }

  .p_productSpecialList .pc_categoryLinks {
    grid-template-columns: 1fr;
  }

  .p_productSpecialList .pc_domainGrid {
    grid-template-columns: repeat(1, 1fr);
  }
}

@media (max-width: 480px) {
  .p_productSpecialList .pc_tabs {
    flex-wrap: wrap;
  }

  .p_productSpecialList .pc_domainGrid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .p_navContent .p_level1Item > .p_productSpecialList {
    display: none;
    position: static !important;
  }
}