/* 공통 커머스 헤더·브레드크럼·리스팅 탭 (고객 페이지) */

/* =========================================================
   Commerce chrome base styles (필수)
   - 일부 페이지는 home.css 없이도 동작해야 함
   - ul 기본 불릿/여백이 보이는 문제 방지
========================================================= */

.util-bar {
  width: 100%;
}

.util-bar-inner,
.header-main,
.nav-primary-inner,
.footer-commerce-inner {
  width: 100%;
}

/* Footer (all customer pages) */
.footer-commerce{
  margin-top: 26px;
  padding: 20px 0 26px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(0, 0, 0, 0.16);
  color: rgba(255, 255, 255, 0.86);
}

.footer-commerce b{font-weight:950}

.page-home .footer-commerce{
  background: var(--home-navy-950, #0a0f18);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-commerce-bottom{
  margin-top: 0;
  padding-top: 0;
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom-row{
  display: flex;
  justify-content: space-between;
  gap: 12px 18px;
  flex-wrap: wrap;
  align-items: flex-start;
}

.footer-biz{
  display: grid;
  gap: 6px;
  min-width: 260px;
}

.footer-biz-line{
  font-size: 12px;
  line-height: 1.55;
}

.footer-sep{
  opacity: 0.55;
  margin: 0 6px;
}

.footer-biz-link{
  color: rgba(255, 255, 255, 0.86);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-biz-link:hover{
  color: #fff;
  border-bottom-color: rgba(43, 142, 242, 0.45);
}

.footer-policy{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.footer-policy-link{
  display: inline-flex;
  align-items: center;
  height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 850;
  font-size: 12px;
  text-decoration: none;
}

.footer-policy-link:hover{
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(43, 142, 242, 0.35);
  color: #fff;
}

.footer-copy{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}

.util-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
}

.util-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.util-nav a {
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.commerce-header {
  /* 회색 막처럼 보이지 않도록 고정 다크 톤 */
  background: var(--home-navy-950, #0a0f18);
}

.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 14px 0;
}

.header-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.92);
  min-width: 0;
}

.header-logo-mark {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 950;
  background: rgba(0, 0, 0, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.header-logo-text {
  display: grid;
  line-height: 1.1;
}

.header-logo-name {
  font-weight: 950;
  letter-spacing: -0.03em;
}

.header-logo-tag {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.62);
}

.commerce-header .header-search {
  flex: 1 1 520px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.commerce-header .header-search input[type="search"] {
  flex: 1;
  height: 40px;
  border-radius: 14px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  background: rgba(255, 255, 255, 0.92);
  color: rgba(10, 12, 16, 0.92);
  padding: 0 12px;
  outline: none;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.commerce-header .header-search input[type="search"]:focus {
  border-color: rgba(43, 142, 242, 0.55);
  box-shadow: 0 0 0 3px rgba(43, 142, 242, 0.18);
}

.commerce-header .header-search input[type="search"]::placeholder {
  color: rgba(10, 12, 16, 0.45);
}

/* Chrome autofill에서 글자색이 날아가는 케이스 방지 */
.commerce-header .header-search input[type="search"]:-webkit-autofill,
.commerce-header .header-search input[type="search"]:-webkit-autofill:hover,
.commerce-header .header-search input[type="search"]:-webkit-autofill:focus {
  -webkit-text-fill-color: rgba(10, 12, 16, 0.92);
  transition: background-color 99999s ease-out 0s;
  box-shadow: 0 0 0px 1000px rgba(255, 255, 255, 0.92) inset;
}

.commerce-header .header-search-btn {
  height: 40px;
  border-radius: 14px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 800;
  cursor: pointer;
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.icon-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.22);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
  font-size: 13px;
  position: relative;
}

.icon-pill-badge{
  position:absolute;
  top:-6px;
  right:-6px;
  min-width:18px;
  height:18px;
  padding:0 6px;
  border-radius:999px;
  display:grid;
  place-items:center;
  background:rgba(43,142,242,.95);
  color:#fff;
  font-size:11px;
  font-weight:950;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 10px 22px rgba(0,0,0,.35);
}

.icon-pill:hover {
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
}

.icon-pill-glyph {
  opacity: 0.9;
}

.nav-primary-wrap {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-primary-inner {
  padding: 10px 0 12px;
}

.nav-primary {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.nav-primary__link {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 800;
  font-size: 13px;
}

.nav-primary__link:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

@media (max-width: 920px) {
  .header-main {
    flex-wrap: wrap;
  }
  .commerce-header .header-search {
    flex: 1 1 100%;
    order: 3;
    max-width: 760px;
    margin: 0 auto;
  }
}

.util-bar--commerce {
  background: var(--home-navy-950, #0a0f18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.util-bar--commerce .util-nav a {
  color: rgba(255, 255, 255, 0.78);
}

.util-bar--commerce .util-nav a:hover {
  color: #fff;
}

.commerce-header--global {
  border-bottom: 1px solid var(--home-border, #e8e8e8);
}

.nav-primary--flat {
  flex-wrap: wrap;
  gap: 4px 8px;
}

.nav-primary--flat .nav-primary__link.is-active {
  color: var(--home-blue, #2b8ef2);
  font-weight: 900;
}

/* Demo auth button */
.util-auth{
  border:1px solid rgba(255,255,255,.14);
  background:rgba(0,0,0,.18);
  color:rgba(255,255,255,.78);
  border-radius:999px;
  padding:6px 10px;
  font-weight:800;
  cursor:pointer;
}
.util-auth:hover{color:#fff;border-color:rgba(43,142,242,.35)}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  font-size: 13px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.55);
}

.page-listing--commerce .breadcrumb {
  color: rgba(255, 255, 255, 0.55);
}

.bc-item {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
}

.bc-item:hover {
  color: #fff;
  text-decoration: underline;
}

.bc-item--current {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 700;
}

.bc-sep {
  opacity: 0.4;
  user-select: none;
}

.listing-inner {
  padding-bottom: 80px;
}

.listing-hero {
  width: 100%;
  max-width: none;
  margin: 16px 0 0;
}

.listing-quicklinks {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.listing-quicklink {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  background: rgba(43, 142, 242, 0.12);
  border: 1px solid rgba(43, 142, 242, 0.28);
  color: #9fd0ff;
}

.listing-quicklink:hover {
  background: rgba(43, 142, 242, 0.22);
  color: #fff;
}

.listing-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 10px;
}

.listing-tab {
  padding: 10px 16px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
}

.listing-tab:hover {
  color: #fff;
  border-color: rgba(43, 142, 242, 0.4);
}

.listing-tab.is-active {
  border-color: rgba(43, 142, 242, 0.55);
  background: rgba(43, 142, 242, 0.18);
  color: #fff;
}

.listing-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.listing-chip {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.85);
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
}

.listing-chip.is-active {
  border-color: rgba(255, 196, 90, 0.45);
  background: rgba(255, 196, 90, 0.12);
  color: #ffe6b0;
}

.mixer-spotlight {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 8px 0 20px;
  padding: 18px 20px;
  border-radius: 14px;
  background: linear-gradient(120deg, rgba(43, 142, 242, 0.12), rgba(5, 10, 18, 0.5));
  border: 1px solid rgba(43, 142, 242, 0.22);
}

.mixer-spotlight-copy strong {
  display: block;
  font-size: 15px;
  color: #fff;
  margin-bottom: 6px;
}

.mixer-spotlight-copy p {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 56ch;
}

.brand-showcase {
  margin: 12px 0 0;
}

.brand-showcase-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
  padding: 20px 22px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(0, 0, 0, 0.25));
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.brand-showcase-mark {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 15px;
  background: rgba(43, 142, 242, 0.25);
  color: #fff;
}

.brand-showcase-title {
  margin: 0;
  font-size: 22px;
  font-weight: 950;
  color: #fff;
}

.brand-showcase-sub {
  margin: 6px 0 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
}

.shop-filter-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.shop-filter-row2 input,
.shop-filter-select {
  width: 100%;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(5, 10, 18, 0.55);
  color: #fff;
  font-size: 13px;
}

.page-listing--commerce {
  background: #0b0f14;
  min-height: 100vh;
}

.shop-layout--deals .browse-grid--shop .product-card--deal {
  border-color: rgba(255, 120, 80, 0.35);
  box-shadow: 0 8px 28px rgba(255, 90, 50, 0.08);
}

.deal-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 6px 10px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
  background: linear-gradient(135deg, #ff6b35, #f7931e);
  color: #fff;
}

.product-card--commerce .product-media {
  position: relative;
}

.product-best-blurb {
  margin: 0 0 10px;
  font-size: 12px;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.55);
}

/* 목록·카테고리: 라이트 카드(메인 베스트와 동일 톤) — home.css는 .page-home 전용 */
.page-listing--commerce .product-card--commerce {
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.38);
  transition:
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.28s ease,
    border-color 0.22s ease;
}

.page-listing--commerce .product-card--commerce:hover {
  transform: translateY(-5px);
  box-shadow: 0 26px 56px rgba(0, 0, 0, 0.48);
  border-color: rgba(43, 142, 242, 0.45);
}

.page-listing--commerce .product-card--commerce .product-brand {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--home-text-muted, #5c6570);
}

.page-listing--commerce .product-card--commerce .product-title {
  color: var(--home-navy-900, #0f172a);
  font-size: 17px;
  font-weight: 900;
  margin-top: 6px;
  letter-spacing: -0.02em;
}

.page-listing--commerce .product-card--commerce .product-tagline {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--home-text-muted, #5c6570);
}

.page-listing--commerce .product-card--commerce .product-body {
  padding: 16px 18px 18px;
}

.page-listing--commerce .product-card--commerce .product-bottom {
  margin-top: 14px;
  align-items: center;
}

.page-listing--commerce .product-card--commerce .price {
  color: var(--home-navy-900, #0f172a);
  font-size: 18px;
  font-weight: 900;
}

.page-listing--commerce .product-card--commerce .product-media {
  overflow: hidden;
}

.page-listing--commerce .product-card--commerce .media-ph {
  height: 200px;
  border: 0;
  border-radius: 0;
  background-color: #e8ecf2;
  background-image: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.06));
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-listing--commerce .product-card--commerce:hover .media-ph {
  transform: scale(1.04);
}

.page-listing--commerce .product-card--commerce .actions--commerce {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.page-listing--commerce .product-card--commerce .badge {
  background: rgba(255, 255, 255, 0.95);
  color: var(--home-navy-800, #0f2744);
  border-color: var(--home-border, #e2e6ed);
}

.page-listing--commerce .product-card--commerce .badge-muted {
  color: var(--home-text-muted, #5c6570);
}

.page-listing--commerce .product-card--commerce .badge-accent {
  background: rgba(43, 142, 242, 0.12);
  color: var(--home-blue, #1e6bb8);
  border-color: rgba(43, 142, 242, 0.28);
}

.page-listing--commerce .product-card--commerce .btn-mini {
  border-color: var(--home-border, #e2e6ed);
  background: #fff;
  color: var(--home-charcoal, #1c2430);
}

.page-listing--commerce .product-card--commerce .btn-mini:hover {
  border-color: var(--home-blue, #1e6bb8);
  color: var(--home-blue, #1e6bb8);
}

.page-listing--commerce .product-card--commerce .btn-cta-mini {
  background: var(--home-navy-800, #0f2744) !important;
  border-color: var(--home-navy-800, #0f2744) !important;
  color: #fff !important;
}

.page-listing--commerce .product-card--commerce .btn-cta-mini:hover {
  background: var(--home-navy-700, #14365a) !important;
}

.page-listing--commerce .product-card--commerce .product-best-blurb {
  color: #475569;
}

.brands-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin: 24px 0 80px;
}

.brands-hub-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition:
    border-color 0.2s,
    transform 0.2s;
}

.brands-hub-card:hover {
  border-color: rgba(43, 142, 242, 0.45);
  transform: translateY(-2px);
}

.brands-hub-logo {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-weight: 950;
  font-size: 14px;
  background: rgba(43, 142, 242, 0.2);
  color: #fff;
}

.brands-hub-name {
  font-size: 18px;
  font-weight: 950;
  color: #fff;
}

.brands-hub-range {
  font-size: 12px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.5);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.brands-hub-desc {
  font-size: 13px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.68);
  flex: 1;
}

.brands-hub-models {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--mono, ui-monospace, monospace);
}

.brands-hub-cta {
  margin-top: 4px;
  font-size: 13px;
  font-weight: 800;
  color: #7ec3ff;
}

.quote-landing {
  max-width: 920px;
  margin: 0 auto 80px;
  padding: 0 20px;
}

.quote-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 24px 0;
}

@media (max-width: 720px) {
  .quote-steps {
    grid-template-columns: 1fr;
  }
}

.quote-step {
  padding: 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.quote-step-num {
  font-size: 12px;
  font-weight: 800;
  color: #7ec3ff;
}

.quote-step h3 {
  margin: 8px 0 6px;
  font-size: 15px;
  color: #fff;
}

.quote-step p {
  margin: 0;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

.search-side {
  margin-top: 28px;
  padding: 18px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.search-side h3 {
  margin: 0 0 12px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.search-pill {
  display: inline-block;
  margin: 4px 6px 4px 0;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(43, 142, 242, 0.12);
  color: #9fd0ff;
  text-decoration: none;
}

.search-pill:hover {
  background: rgba(43, 142, 242, 0.22);
  color: #fff;
}

/* 브랜드 허브 */
.brands-hub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin: 28px 0 80px;
}

.brand-hub-card {
  padding: 22px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand-hub-mark {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 14px;
  background: rgba(43, 142, 242, 0.2);
  color: #cfe8ff;
  margin-bottom: 4px;
}

.brand-hub-name {
  margin: 0;
  font-size: 20px;
  color: #fff;
}

.brand-hub-lines {
  margin: 0;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.55);
}

.brand-hub-desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  flex: 1;
}

.brand-hub-models {
  margin: 8px 0 12px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.8);
}

.brand-hub-models-label {
  display: block;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 4px;
}

/* 통합 검색 */
.page-search .search-hero {
  margin-top: 16px;
}

.search-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 28px;
  align-items: start;
  margin-top: 20px;
  padding-bottom: 80px;
}

@media (max-width: 900px) {
  .search-layout {
    grid-template-columns: 1fr;
  }
}

.search-main-title {
  margin: 0 0 8px;
  font-size: 28px;
  color: #fff;
}

.search-main-lead {
  margin: 0 0 16px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.55;
}

.search-count {
  font-size: 14px;
  font-weight: 700;
  color: #7ec3ff;
  margin-bottom: 16px;
}

.search-side-link {
  display: block;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 14px;
}

.search-side-link:hover {
  color: #fff;
}

.search-chip {
  display: inline-block;
  margin: 4px 8px 4px 0;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  background: rgba(43, 142, 242, 0.18);
  color: #b8dcff;
  text-decoration: none;
}

.search-chip--soft {
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.75);
}

.search-chip:hover {
  filter: brightness(1.1);
}

.search-side-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* 특가 랜딩(리스트 위) */
.deals-landing-top {
  padding: 24px 0 8px;
}

.deals-hero-banner {
  border-radius: 16px;
  padding: 28px 32px;
  background: linear-gradient(120deg, #1a2744 0%, #2b1a3d 50%, #1e2a1e 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  margin-bottom: 22px;
}

.deals-hero-banner h2 {
  margin: 0 0 8px;
  font-size: 24px;
  color: #fff;
}

.deals-hero-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.deals-mini-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin-bottom: 20px;
}

.deals-mini-card {
  display: block;
  padding: 18px;
  border-radius: 12px;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #fff;
  transition: transform 0.15s ease, border-color 0.15s ease;
}

.deals-mini-card:hover {
  transform: translateY(-2px);
  border-color: rgba(43, 142, 242, 0.45);
}

.deals-mini-card strong {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
}

.deals-mini-card span {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
}

.deals-set-note {
  padding: 14px 18px;
  border-radius: 10px;
  background: rgba(255, 193, 7, 0.08);
  border: 1px dashed rgba(255, 193, 7, 0.35);
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  margin-bottom: 12px;
}

/* 베스트 배지(카드) */
.product-pill-best {
  display: inline-block;
  margin-right: 6px;
  margin-bottom: 6px;
  padding: 4px 8px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  background: linear-gradient(120deg, #ffb020, #ff7a18);
  color: #1a0f00;
}

/* 특가 기간 */
.deal-ends {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
}

/* 브랜드 상세 레일 */
.brand-rail {
  margin: 0 0 16px;
}

.brand-rail-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 20px;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
}

@media (max-width: 900px) {
  .brand-rail-inner {
    grid-template-columns: 1fr;
  }
}

.brand-rail-heading {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.brand-rail-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.brand-rail-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(0, 0, 0, 0.2);
}

.brand-rail-chip:hover {
  border-color: rgba(43, 142, 242, 0.5);
  color: #fff;
}

.brand-rail-count {
  font-size: 11px;
  font-weight: 800;
  color: #7ec3ff;
}

.brand-rail-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 10px;
}

.brand-rail-card {
  display: block;
  padding: 12px;
  border-radius: 12px;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.18);
  color: #fff;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.brand-rail-card:hover {
  border-color: rgba(43, 142, 242, 0.45);
  transform: translateY(-2px);
}

.brand-rail-card-meta {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 4px;
}

.brand-rail-card-title {
  font-size: 14px;
  font-weight: 900;
}

.brand-rail-card-sub {
  margin-top: 6px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.35;
}

/* 믹서 베스트 한줄 */
.mixer-best-strip {
  margin-top: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(43, 142, 242, 0.25);
  background: rgba(43, 142, 242, 0.08);
}

.mixer-best-strip-title {
  display: block;
  font-size: 13px;
  margin-bottom: 8px;
  color: #9fd0ff;
}

.mixer-best-strip-links {
  margin: 0 0 8px;
  line-height: 1.6;
}

.mixer-best-link {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  margin-right: 10px;
}

.mixer-best-link:hover {
  text-decoration: underline;
}

.mixer-best-strip-hint {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
}
