/* Shared desktop chrome: top promo strip, headers, search field, footer. */

body {
  min-width: 1100px;
  background: #fff;
}

/* ── Whale promo strip ─────────────────────────────────────────── */
.whale-strip {
  position: relative;
  height: 40px;
  background: #fdf6e7;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  color: #4a4436;
}

.whale-strip .dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #e8453c;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
}

.whale-strip strong {
  font-weight: 700;
  color: #2b2721;
}

.whale-strip .dl {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  height: 22px;
  padding: 0 10px;
  margin-left: 4px;
  border-radius: var(--radius-pill);
  background: #1c1b18;
  color: #fff;
  font-size: 11px;
}

.whale-strip .close {
  position: absolute;
  right: 22px;
  top: 50%;
  transform: translateY(-50%);
}

/* ── naver.com home header ─────────────────────────────────────── */
.home-head {
  position: relative;
  padding: 14px 22px 0;
}

.home-head .corner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.home-head .corner-left,
.home-head .corner-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pay-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 22px;
  border: 1px solid #dcdcdc;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  color: #444;
  letter-spacing: -0.4px;
}

.search-shell {
  width: 490px;
  margin: 10px auto 0;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  padding: 0 8px 0 18px;
  border: 2px solid #cdeedd;
  border-radius: var(--radius-pill);
  background: #fff;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.search-box:focus-within {
  border-color: var(--naver-green);
}

.search-box .field {
  flex: 1;
  min-width: 0;
  height: 100%;
  border: 0;
  outline: 0;
  font-size: 16px;
  background: transparent;
}

.search-box .field::placeholder {
  color: #a9a9a9;
}

.search-box .kbd {
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  color: #9b9b9b;
  font-size: 13px;
}

.ai-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  height: 34px;
  padding: 0 14px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, #e9f3ff, #eaeaff);
  color: #2f6fed;
  font-size: 13px;
  font-weight: 700;
}

.search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
}

/* Service shortcut row under the home search box. */
.shortcut-row {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 22px 0 26px;
}

.shortcut {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 46px;
  font-size: 12px;
  color: #3d3d3d;
}

.shortcut .glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  font-size: 15px;
  font-weight: 800;
  color: #fff;
}

/* ── search.naver.com header ───────────────────────────────────── */
.srch-head {
  position: sticky;
  top: 0;
  z-index: 40;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.srch-head-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 1090px;
  margin: 0 auto;
  padding: 12px 0 0;
}

.srch-field {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  height: 44px;
  padding: 0 8px 0 14px;
  border: 2px solid var(--naver-green);
  border-radius: var(--radius-pill);
}

.srch-field input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  font-size: 16px;
  font-weight: 500;
  background: transparent;
}

.srch-tabs {
  display: flex;
  align-items: center;
  gap: 20px;
  width: 1090px;
  margin: 0 auto;
  padding: 12px 0 10px;
  font-size: 15px;
  color: #555;
}

.srch-tabs a.on {
  color: var(--text-strong);
  font-weight: 700;
}

.srch-tabs .ai-tab {
  position: relative;
  color: #2f6fed;
  font-weight: 700;
}

.srch-tabs .ai-tab sup {
  position: absolute;
  top: -4px;
  right: -9px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #e8453c;
  color: #fff;
  font-size: 8px;
  font-weight: 800;
  line-height: 12px;
  text-align: center;
}

/* ── footer ────────────────────────────────────────────────────── */
.nv-footer {
  padding: 26px 0 40px;
  border-top: 1px solid var(--line);
  text-align: center;
  color: var(--text-muted);
  font-size: 12px;
}

.nv-footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 10px;
}

.nv-footer-links .strong {
  color: #444;
  font-weight: 700;
}

.nv-copy {
  color: #999;
}

.nv-mirror-note {
  margin-top: 6px;
  color: #c4c4c4;
  font-size: 11px;
}

/* Logged-in profile chip in the search header. */
.me-chip { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: #333; }
.me-ava { display: inline-flex; align-items: center; justify-content: center; width: 24px; height: 24px; border-radius: 50%; background: #03c75a; }
.me-ava.lg { width: 44px; height: 44px; }
