.browse-hero {
  margin: 18px auto 14px;
  width: min(1160px, calc(100% - 40px));
  border-radius: var(--radius2);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
  padding: 18px;
}
.page-category-shop .browse-hero--shop {
  width: min(1400px, calc(100% - 40px));
}
.browse-hero h1 {
  margin: 8px 0 0;
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 950;
  letter-spacing: -0.6px;
}
.browse-sub {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.65;
  max-width: 70ch;
}
.browse-back {
  margin-top: 12px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.browse-chips-block {
  margin: 0 0 16px;
  width: 100%;
}
.browse-chips-head {
  font-weight: 950;
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: -0.2px;
  color: var(--home-navy-900, #0f172a);
}
.page-category-shop .browse-chips-head {
  color: rgba(255, 255, 255, 0.82);
}
.browse-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* —— 쇼핑 레이아웃 —— */
.shop-layout {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 28px;
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto 100px;
  align-items: start;
}

.shop-sidebar {
  position: relative;
}

.shop-filter-sticky {
  position: sticky;
  top: 16px;
  max-height: calc(100vh - 32px);
  overflow: auto;
  padding: 18px 16px;
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow);
}

.shop-filter-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-filter-title {
  font-weight: 950;
  font-size: 15px;
  letter-spacing: -0.03em;
}

.shop-filter-reset {
  border: 0;
  background: transparent;
  color: var(--home-blue, #2b8ef2);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  text-decoration: underline;
  padding: 4px;
}

.shop-filter-block {
  margin-bottom: 18px;
}

.shop-filter-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 10px;
}

.shop-filter-brands {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.shop-filter-check {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  column-gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
  width: 100%;
}

.shop-filter-check input {
  accent-color: var(--home-blue, #2b8ef2);
  width: 16px;
  height: 16px;
}

.shop-filter-check span {
  display: block;
  min-width: 0;
}

.shop-signal-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.shop-signal-btn {
  padding: 8px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.shop-signal-btn.is-active {
  border-color: rgba(43, 142, 242, 0.55);
  background: rgba(43, 142, 242, 0.2);
  color: #fff;
}

.shop-filter-stock {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.88);
  cursor: pointer;
}

.shop-filter-stock input {
  accent-color: var(--home-blue, #2b8ef2);
}

.shop-main {
  min-width: 0;
}

.category-intro {
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(43, 142, 242, 0.08);
  border: 1px solid rgba(43, 142, 242, 0.22);
}

.category-intro-text {
  margin: 0;
  font-size: 14px;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-result-count {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.88);
}

.shop-sort {
  display: flex;
  align-items: center;
  gap: 10px;
}

.shop-sort-label {
  font-size: 12px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.5);
}

.shop-sort select {
  min-width: 160px;
  padding: 10px 12px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(5, 10, 18, 0.65);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.browse-catalog {
  margin: 0 auto 100px;
  width: min(1160px, calc(100% - 40px));
}
.browse-catalog--shop {
  margin: 0;
  width: 100%;
}
.browse-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.browse-grid--shop {
  gap: 18px;
}

.shop-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.shop-page-info {
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
  margin-right: 8px;
}

.shop-page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.25);
  color: rgba(255, 255, 255, 0.88);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.shop-page-btn:hover:not(:disabled) {
  border-color: rgba(43, 142, 242, 0.45);
  color: #fff;
}

.shop-page-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.shop-page-btn.is-active {
  border-color: rgba(43, 142, 242, 0.65);
  background: rgba(43, 142, 242, 0.25);
  color: #fff;
}

.page-category-shop {
  background: #0b0f14;
}

.page-category-shop .site-header {
  background: rgba(11, 15, 20, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-category-shop .brand-name,
.page-category-shop .brand-tagline,
.page-category-shop .top-nav a {
  color: rgba(255, 255, 255, 0.9);
}

.page-category-shop .top-nav a:hover,
.page-category-shop .brand-link:hover .brand-name {
  color: #fff;
}

.page-category-shop .nav-cta {
  color: var(--home-blue, #5ab0ff) !important;
}

@media (max-width: 980px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-filter-sticky {
    position: relative;
    top: auto;
    max-height: none;
  }
  .browse-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .browse-grid {
    grid-template-columns: 1fr;
  }
}

/* —— 커머스 목록·카테고리 공통 (헤더 스타일은 home.css) —— */
body.page-listing--commerce {
  margin: 0;
  background: #080c11;
  color: rgba(255, 255, 255, 0.92);
}

body.page-listing--commerce main#main:not(.container-wide) {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 56px;
}

body.page-listing--commerce .listing-inner {
  width: min(1440px, calc(100% - 32px));
  margin: 0 auto;
  padding-top: 4px;
}

body.page-listing--commerce .browse-hero--shop {
  width: 100%;
  max-width: none;
  margin: 12px 0 22px;
  padding: 22px 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.075) 0%, rgba(10, 18, 34, 0.65) 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.38);
}

body.page-listing--commerce .browse-hero--shop .browse-sub {
  color: rgba(255, 255, 255, 0.66);
  max-width: 78ch;
}

body.page-listing--commerce .shop-filter-sticky {
  padding: 20px 18px;
  border-radius: 16px;
}

body.page-listing--commerce .shop-filter-check {
  padding: 8px 10px;
  margin: 0 -6px;
  border-radius: 10px;
  line-height: 1.45;
}

body.page-listing--commerce .shop-filter-check:hover {
  background: rgba(255, 255, 255, 0.05);
}

body.page-listing--commerce .shop-filter-check input {
  margin-top: 0;
  flex-shrink: 0;
}

body.page-listing--commerce .shop-filter-check span {
  flex: 1;
  min-width: 0;
  word-break: keep-all;
  overflow-wrap: normal;
  line-break: strict;
}

body.page-listing--commerce .shop-filter-brands {
  gap: 2px 0;
}

body.page-listing--commerce .browse-grid--shop {
  grid-template-columns: repeat(auto-fill, minmax(268px, 1fr));
  gap: 20px;
}

body.page-listing--commerce .browse-catalog--shop .empty:not([hidden]) {
  padding: 52px 28px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.52);
  border-radius: 16px;
  border: 1px dashed rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
}

body.page-listing--commerce .shop-toolbar {
  padding: 14px 18px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
}

@media (min-width: 1200px) {
  body.page-listing--commerce .shop-layout {
    grid-template-columns: minmax(300px, 380px) minmax(0, 1fr);
    gap: 32px;
    width: min(1480px, calc(100% - 32px));
  }
}

@media (max-width: 980px) {
  body.page-listing--commerce .browse-grid--shop {
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
  }

  body.page-listing--commerce .shop-filter-sticky {
    padding: 16px 14px;
  }
}
