:root {
  --navy: #0a1d36;
  --navy-2: #132d4f;
  --blue: #1f4f9a;
  --gold: #e8b52e;
  --ink: #101826;
  --muted: #5c6674;
  --line: #e6eaf0;
  --white: #ffffff;
  --shadow: 0 16px 42px rgba(12, 31, 55, 0.10);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", "Malgun Gothic", "Noto Sans KR", sans-serif;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button, a { -webkit-tap-highlight-color: transparent; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: 84px;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid rgba(10,29,54,0.08);
  backdrop-filter: blur(14px);
}
.header-inner {
  width: min(1480px, calc(100% - 64px));
  height: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}
.brand { display: inline-flex; align-items: center; min-width: max-content; }
.brand-name {
  font-size: 29px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: -0.07em;
  color: var(--navy);
}
.brand-name::after {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-left: 7px;
  border-radius: 50%;
  background: var(--gold);
  vertical-align: 3px;
}
.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(18px, 2.3vw, 38px);
  white-space: nowrap;
}
.main-nav a {
  position: relative;
  padding: 31px 0 28px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #283443;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 18px;
  width: 0;
  height: 2px;
  transform: translateX(-50%);
  background: var(--gold);
  transition: width .18s ease;
}
.main-nav a:hover::after { width: 100%; }
.header-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 118px;
  height: 46px;
  padding: 0 19px;
  border-radius: 8px;
  background: var(--navy);
  color: white;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 9px 24px rgba(10,29,54,0.16);
}
.header-call svg { width: 17px; height: 17px; fill: currentColor; }
.menu-toggle { display: none; }

.hero {
  position: relative;
  min-height: 680px;
  overflow: hidden;
  background: #f5f3ef;
  border-bottom: 1px solid rgba(10,29,54,0.06);
}
.hero-picture,
.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-picture { display: block; margin: 0; }
.hero-image {
  object-fit: cover;
  object-position: 58% center;
}
.hero-shade {
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.98) 0%,
      rgba(255,255,255,.96) 24%,
      rgba(255,255,255,.80) 39%,
      rgba(255,255,255,.20) 56%,
      rgba(255,255,255,0) 72%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: min(1480px, calc(100% - 64px));
  min-height: 680px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  padding: 66px 0 58px;
}
.hero-copy { width: min(670px, 52%); transform: translateX(32px); }
.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--navy-2);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -.02em;
}
.hero-kicker span {
  display: inline-block;
  width: 35px;
  height: 2px;
  background: var(--gold);
}
.hero h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(46px, 4.5vw, 72px);
  line-height: 1.10;
  letter-spacing: -.065em;
  font-weight: 800;
}
.hero h1 strong { font-weight: 900; color: var(--blue); }
.hero-lead {
  margin: 28px 0 0;
  color: #4d5867;
  font-size: 18px;
  line-height: 1.75;
  letter-spacing: -.025em;
}
.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 34px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 188px;
  height: 58px;
  padding: 0 22px;
  border-radius: 9px;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -.03em;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--navy);
  color: white;
  box-shadow: 0 14px 28px rgba(10,29,54,.18);
}
.btn-primary:hover { background: #102a4a; }
.btn-secondary {
  border: 1px solid rgba(10,29,54,.34);
  background: rgba(255,255,255,.72);
  color: var(--navy);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover { box-shadow: 0 12px 24px rgba(10,29,54,.10); }
.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.hero-point {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 42px;
  padding: 8px 13px 8px 9px;
  border: 1px solid rgba(10,29,54,.08);
  border-radius: 10px;
  background: rgba(255,255,255,.80);
  box-shadow: 0 8px 25px rgba(10,29,54,.06);
  backdrop-filter: blur(8px);
  color: #46515e;
  font-size: 13px;
  letter-spacing: -.025em;
}
.hero-point b { color: var(--navy); font-weight: 800; }
.point-icon {
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 7px;
  background: #f7f2df;
  color: var(--navy);
}
.point-icon svg { width: 15px; height: 15px; fill: currentColor; }
.section-anchor { height: 1px; }

@media (max-width: 1180px) {
  .header-inner { width: min(100% - 40px, 1180px); gap: 22px; }
  .main-nav { gap: 18px; }
  .main-nav a { font-size: 14px; }
  .hero-inner { width: min(100% - 40px, 1180px); }
  .hero-copy { width: 56%; transform: translateX(22px); }
  .hero-image { object-position: 62% center; }
}

@media (max-width: 980px) {
  .site-header { height: 72px; }
  .header-inner {
    width: calc(100% - 32px);
    grid-template-columns: 1fr auto auto;
    gap: 12px;
  }
  .brand-name { font-size: 25px; }
  .header-call { height: 42px; min-width: 96px; padding: 0 14px; }
  .menu-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    width: 42px;
    height: 42px;
    padding: 0 10px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    cursor: pointer;
  }
  .menu-toggle span { width: 100%; height: 2px; background: var(--navy); border-radius: 5px; }
  .main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 20px 18px;
    background: white;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(10,29,54,.08);
  }
  .main-nav.is-open { display: flex; }
  .main-nav a { padding: 15px 4px; border-bottom: 1px solid #f1f3f6; }
  .main-nav a::after { display: none; }

  .hero { min-height: 760px; }
  .hero-inner { width: calc(100% - 40px); min-height: 760px; align-items: flex-start; padding-top: 72px; }
  .hero-copy { width: 64%; transform: translateX(12px); }
  .hero-image { object-position: 68% center; }
  .hero-shade { background: linear-gradient(90deg, rgba(255,255,255,.98) 0%, rgba(255,255,255,.93) 35%, rgba(255,255,255,.38) 64%, rgba(255,255,255,.05) 100%); }
  .hero h1 { font-size: clamp(44px, 6.2vw, 60px); }
}

@media (max-width: 720px) {
  .header-call span { display: none; }
  .header-call { min-width: 42px; width: 42px; padding: 0; }
  .hero {
    min-height: auto;
    padding-bottom: 0;
    background: #f7f7f5;
  }
  .hero-picture {
    position: relative;
    display: block;
    height: 330px;
    margin-top: 0;
    order: 2;
  }
  .hero-image {
    position: static;
    width: 100%;
    height: 330px;
    object-fit: cover;
    object-position: 69% center;
  }
  .hero-shade { display: none; }
  .hero-inner {
    width: 100%;
    min-height: 0;
    padding: 0;
    display: block;
  }
  .hero-copy {
    width: 100%;
    padding: 46px 20px 34px;
    background: white;
    transform: none;
  }
  .hero-kicker { margin-bottom: 16px; font-size: 13px; }
  .hero h1 { font-size: clamp(39px, 10.3vw, 50px); line-height: 1.12; }
  .hero-lead { margin-top: 20px; font-size: 15px; line-height: 1.7; }
  .desktop-only { display: none; }
  .hero-actions { gap: 8px; margin-top: 26px; }
  .btn { min-width: 0; flex: 1; height: 54px; padding: 0 13px; font-size: 14px; gap: 7px; }
  .btn svg { width: 17px; height: 17px; }
  .hero-points { margin-top: 22px; gap: 7px; }
  .hero-point { font-size: 12px; flex: 1 1 calc(50% - 7px); }
}

@media (max-width: 440px) {
  .header-inner { width: calc(100% - 24px); }
  .brand-name { font-size: 23px; }
  .hero-copy { padding-left: 16px; padding-right: 16px; }
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; }
  .hero-point { flex-basis: 100%; }
  .hero-picture,
  .hero-image { height: 285px; }
}


/* featured pick badge */
.featured-model-image,
.catalog-v2-image,
.model-card-image,
.product-card-image{
  position:relative;
}
.model-pick-badge{
  position:absolute;
  z-index:8;
  top:12px;
  left:12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:46px;
  height:26px;
  padding:0 10px;
  border-radius:999px;
  color:#fff;
  font-size:11px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.02em;
  box-shadow:0 6px 14px rgba(8,27,50,.16);
  pointer-events:none;
}
.model-pick-badge.is-recommended{background:#0b5ed7;}
.model-pick-badge.is-popular-model{background:#f04468;}
.detail-name-row .model-pick-badge.detail-model-pick{
  position:static;
  min-width:48px;
  height:28px;
  margin-left:8px;
  vertical-align:middle;
  box-shadow:none;
}
@media(max-width:640px){
  .model-pick-badge{top:9px;left:9px;min-width:42px;height:24px;padding:0 9px;font-size:10px;}
  .detail-name-row .model-pick-badge.detail-model-pick{height:26px;margin-left:6px;}
}

/* 2026-08-26: 추천/인기 배지 전체 비노출 */
.model-pick-badge,
.model-pick-badge.is-recommended,
.model-pick-badge.is-popular-model,
.detail-name-row .model-pick-badge.detail-model-pick{
  display:none !important;
}
