:root {
  --ink: #111111;
  --muted: #555555;
  --paper: #ffffff;
  --paper-2: #f7f7f7;
  --line: #dddddd;
  --accent: #346aff;
  --accent-2: #ae0000;
  --dark: #111111;
  --white: #ffffff;
  --shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
  --rocket-blue: #008cff;
  --fresh-green: #00a66c;
  --sale-red: #e7223d;
  --price-red: #ae0000;
  --gold: #f5a623;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  letter-spacing: 0;
  word-break: keep-all;
  overflow-wrap: break-word;
  -webkit-tap-highlight-color: rgba(34, 111, 100, 0.18);
}

a {
  color: inherit;
  text-decoration: none;
}

:focus-visible {
  outline: 3px solid rgba(166, 64, 45, 0.72);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  border: 1px solid var(--ink);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid var(--line);
  background: #fff;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

.nav {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  width: 30px;
  height: 30px;
  border: 1px solid #999;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  padding: 4px;
  gap: 3px;
  background: var(--white);
}

.brand-mark span {
  background: var(--ink);
}

.brand-mark span:nth-child(2) {
  background: var(--accent);
}

.brand-mark span:nth-child(3) {
  background: var(--accent-2);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.menu-toggle {
  display: none;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(37, 35, 31, 0.3);
  border-radius: 6px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  touch-action: manipulation;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  touch-action: manipulation;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] {
  color: var(--accent);
  background: transparent;
  box-shadow: inset 0 -2px 0 var(--accent);
}

.commerce-topbar {
  border-bottom: 1px solid #eeeeee;
  background: #f7f7f7;
  color: #555;
  font-size: 12px;
}

.commerce-topbar .wrap,
.commerce-mainbar,
.commerce-shortcuts {
  width: min(1200px, calc(100% - 32px));
  margin: 0 auto;
}

.commerce-topbar .wrap {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  min-height: 32px;
  align-items: center;
}

.commerce-mainbar {
  display: grid;
  grid-template-columns: auto 110px minmax(280px, 1fr) auto;
  gap: 12px;
  align-items: center;
  min-height: 72px;
}

.category-entry {
  height: 40px;
  display: grid;
  place-items: center;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.site-search {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) 52px;
  height: 40px;
  border: 2px solid var(--accent);
  background: #fff;
}

.site-search span,
.site-search input,
.site-search button {
  border: 0;
  font: inherit;
}

.site-search span {
  display: grid;
  place-items: center;
  border-right: 1px solid var(--line);
  background: #f7f7f7;
  color: #555;
  font-size: 13px;
}

.site-search input {
  min-width: 0;
  padding: 0 12px;
  outline: 0;
}

.site-search button {
  background: var(--accent);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.cart-chip {
  min-width: 86px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  text-align: center;
}

.commerce-shortcut-row {
  border-top: 1px solid #eeeeee;
  background: #fff;
}

.commerce-shortcuts {
  display: flex;
  gap: 4px;
  min-height: 38px;
  align-items: center;
  overflow-x: auto;
}

.commerce-shortcuts a {
  padding: 8px 10px;
  white-space: nowrap;
  color: #111;
  font-size: 13px;
}

.commerce-shortcuts a[aria-current="page"],
.commerce-shortcuts a:hover {
  color: var(--accent);
  box-shadow: inset 0 -2px 0 var(--accent);
}

.wrap {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(420px, 0.78fr);
  gap: 42px;
  align-items: start;
  padding: 64px 0 46px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 2px;
  background: var(--accent);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 24px;
  max-width: 820px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(54px, 8vw, 112px);
  line-height: 0.94;
  font-weight: 500;
}

.lead {
  max-width: 680px;
  color: #3f3b33;
  font-size: clamp(18px, 2.2vw, 26px);
  line-height: 1.58;
  font-weight: 500;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 34px;
}

.metric-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 640px;
  margin-top: 30px;
}

.metric-strip span,
.metric-strip a {
  min-height: 78px;
  padding: 13px;
  border: 1px solid rgba(37, 35, 31, 0.2);
  background: rgba(255, 250, 240, 0.66);
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.metric-strip strong,
.metric-strip a strong {
  display: block;
  margin-bottom: 5px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(24px, 3vw, 30px);
  line-height: 1;
}

.metric-strip a:hover {
  border-color: var(--accent);
  background: rgba(34, 111, 100, 0.08);
}

.proof-board {
  display: grid;
  gap: 12px;
  padding: 18px;
  width: min(100%, 540px);
  justify-self: end;
  border: 1px solid var(--ink);
  background:
    linear-gradient(rgba(23, 23, 20, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 20, 0.035) 1px, transparent 1px),
    rgba(255, 250, 240, 0.82);
  background-size: 22px 22px;
  box-shadow: var(--shadow);
}

.proof-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 2px 0 8px;
  border-bottom: 1px solid rgba(37, 35, 31, 0.22);
}

.proof-head span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-head strong {
  font-size: 13px;
}

.proof-item {
  position: relative;
  min-height: 104px;
  padding: 18px;
  border: 1px solid rgba(37, 35, 31, 0.28);
  background: var(--white);
  overflow: hidden;
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
}

.proof-item.primary {
  min-height: 0;
  background: linear-gradient(135deg, var(--white), #ece4d5);
}

.proof-item:hover,
.proof-item:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent);
  background: #fffdf6;
  box-shadow: 7px 7px 0 rgba(34, 111, 100, 0.16);
}

.proof-item strong {
  display: block;
  margin: 8px 0;
  font-size: clamp(22px, 3vw, 34px);
  line-height: 1.1;
}

.proof-item small,
.updated {
  display: block;
  color: var(--muted);
  line-height: 1.55;
}

.proof-kicker {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.proof-shot {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  max-height: 280px;
  margin-top: 18px;
  border: 1px solid rgba(37, 35, 31, 0.24);
  object-fit: cover;
  object-position: top left;
}

.card-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 12px;
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
}

.card-action::after {
  content: "->";
}

.section.compact {
  padding: 48px 0;
}

.path-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.path-grid a {
  min-height: 132px;
  padding: 18px;
  border: 1px solid rgba(37, 35, 31, 0.2);
  background: rgba(255, 250, 240, 0.72);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.path-grid a:hover,
.path-grid a:focus-visible {
  transform: translateY(-2px);
  border-color: var(--accent-2);
  background: rgba(255, 250, 240, 0.96);
}

.path-grid strong {
  display: block;
  margin-bottom: 12px;
  color: var(--accent-2);
  font-size: 20px;
}

.path-grid span {
  color: var(--muted);
  line-height: 1.55;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--accent);
  border-radius: 4px;
  background: var(--accent);
  color: var(--white);
  font-weight: 800;
  box-shadow: none;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease;
  touch-action: manipulation;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
}

.button.secondary {
  background: var(--white);
  color: var(--accent);
  box-shadow: none;
}

.button.secondary:hover,
.button.secondary:focus-visible {
  background: #eaf1ff;
}

.lab-visual {
  position: relative;
  min-height: 580px;
  border: 1px solid var(--ink);
  background:
    radial-gradient(circle at 20% 20%, rgba(166, 64, 45, 0.18), transparent 24%),
    linear-gradient(135deg, rgba(255, 250, 240, 0.9), rgba(235, 228, 215, 0.72));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.lab-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px dashed rgba(37, 35, 31, 0.24);
}

.node {
  position: absolute;
  width: 42%;
  min-height: 96px;
  padding: 16px;
  border: 1px solid var(--ink);
  background: var(--white);
  box-shadow: 8px 8px 0 rgba(37, 35, 31, 0.08);
}

.node strong {
  display: block;
  margin-bottom: 10px;
  font-size: 17px;
}

.node span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.node.one {
  top: 52px;
  left: 42px;
}

.node.two {
  top: 168px;
  right: 46px;
}

.node.three {
  left: 58px;
  bottom: 136px;
}

.node.four {
  right: 56px;
  bottom: 52px;
}

.route-line {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 20%, rgba(34, 111, 100, 0.7) 20% 21%, transparent 21%),
    linear-gradient(180deg, transparent 34%, rgba(166, 64, 45, 0.65) 34% 35%, transparent 35%),
    linear-gradient(135deg, transparent 43%, rgba(37, 35, 31, 0.45) 43% 43.4%, transparent 43.4%);
}

.section {
  padding: 74px 0;
  border-top: 1px solid rgba(37, 35, 31, 0.14);
}

.section.dark {
  color: var(--white);
  background: var(--dark);
}

.featured-section {
  background:
    linear-gradient(90deg, rgba(34, 111, 100, 0.08), transparent 44%),
    rgba(255, 250, 240, 0.46);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 32px;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 62px);
  line-height: 1;
  font-weight: 500;
}

.section-head p,
.page-intro p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.dark .section-head p,
.dark .muted {
  color: rgba(255, 250, 240, 0.68);
}

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

.output-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card,
.output-card {
  min-height: 214px;
  padding: 22px;
  border: 1px solid rgba(37, 35, 31, 0.2);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.68);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.card:hover,
.output-card:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 111, 100, 0.42);
  background: rgba(255, 250, 240, 0.92);
}

.dark .card {
  border-color: rgba(255, 250, 240, 0.18);
  background: rgba(255, 250, 240, 0.06);
}

.card .meta,
.output-card .meta {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 24px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.dark .card .meta {
  color: #7bc5b8;
}

.card h3,
.output-card h3 {
  margin-bottom: 12px;
  font-size: 22px;
}

.card h3 a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.card h3 a:hover,
.card h3 a:focus-visible {
  color: var(--accent);
  text-decoration: underline;
}

.card p,
.output-card p,
.list-row p {
  color: var(--muted);
  line-height: 1.65;
}

.output-visual {
  min-height: 190px;
  margin: -4px -4px 20px;
  padding: 16px;
  border: 1px solid rgba(37, 35, 31, 0.22);
  background: var(--paper-2);
}

.output-visual span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  border: 1px solid rgba(37, 35, 31, 0.24);
  background: var(--white);
  color: var(--ink);
  font-size: 13px;
  font-weight: 850;
}

.output-visual.planner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  align-content: center;
}

.output-visual.content {
  display: grid;
  gap: 10px;
  align-content: center;
  background:
    linear-gradient(90deg, rgba(166, 64, 45, 0.12) 0 34%, transparent 34%),
    var(--paper-2);
}

.output-visual.automation {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.output-visual.automation i {
  flex: 1;
  height: 2px;
  background: var(--accent);
}

.output-shot,
.card-shot,
.article-shot {
  display: block;
  width: 100%;
  border: 1px solid rgba(37, 35, 31, 0.2);
  object-fit: cover;
  object-position: top left;
  background: var(--paper-2);
}

.output-shot {
  width: calc(100% + 8px);
  height: 190px;
  margin: -4px -4px 20px;
}

.card-shot {
  height: 150px;
  margin-bottom: 18px;
}

.article-shot {
  max-height: 520px;
  margin-bottom: 24px;
}

.project-facts,
.article-facts {
  margin: 18px 0 0;
  padding: 14px;
  border: 1px solid rgba(37, 35, 31, 0.16);
  background: rgba(255, 250, 240, 0.58);
}

.project-facts {
  display: grid;
  gap: 8px;
}

.project-facts dt {
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.project-facts dd {
  margin: -4px 0 5px;
  color: #3f3b33;
  line-height: 1.55;
}

.article-facts {
  display: grid;
  gap: 10px;
  margin-bottom: 28px;
}

.article-facts p {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 12px;
  margin: 0;
}

.article-facts strong {
  color: var(--accent);
}

.text-link {
  display: inline-flex;
  margin-top: 16px;
  color: var(--accent);
  font-weight: 900;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--accent-2);
}

.dark .card p {
  color: rgba(255, 250, 240, 0.72);
}

.split {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 40px;
  align-items: start;
}

.quote {
  padding: 30px;
  border-left: 5px solid var(--accent-2);
  background: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(26px, 3.8vw, 44px);
  line-height: 1.18;
}

.list {
  display: grid;
  gap: 12px;
}

.list-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(37, 35, 31, 0.16);
}

.list-row strong {
  color: var(--accent-2);
}

.page-hero {
  padding: 84px 0 46px;
}

.product-detail-hero {
  padding: 42px 0 20px;
}

.product-detail-hero .page-intro {
  align-items: end;
}

.product-detail-hero .page-intro h1 {
  max-width: 640px;
  font-size: clamp(44px, 6vw, 76px);
}

.product-detail-section {
  padding-top: 26px;
}

.page-intro {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 42px;
  align-items: end;
}

.page-intro h1 {
  font-family: "Pretendard", "Apple SD Gothic Neo", "Noto Sans KR", sans-serif;
  font-size: clamp(48px, 7vw, 88px);
  line-height: 1.08;
  font-weight: 850;
}

.index-table {
  border-top: 1px solid var(--line);
}

.index-table.cover-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  border-top: 0;
}

.index-item {
  display: grid;
  grid-template-columns: 160px 1fr 160px;
  gap: 20px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}

.index-table.cover-list > .index-item.with-cover {
  grid-template-columns: 1fr;
  gap: 14px;
  min-height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(37, 35, 31, 0.18);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.7);
  transition: transform 160ms ease, border-color 160ms ease, background-color 160ms ease;
}

.index-table.cover-list > .index-item.with-cover:hover {
  transform: translateY(-2px);
  border-color: rgba(34, 111, 100, 0.42);
  background: rgba(255, 250, 240, 0.94);
}

.index-table.cover-list > .index-item.with-cover .type {
  padding: 0 18px;
  order: 2;
}

.index-cover {
  display: block;
  overflow: hidden;
  border-bottom: 1px solid rgba(37, 35, 31, 0.16);
  background: var(--paper-2);
}

.index-cover img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform 180ms ease;
}

.index-table.cover-list > .index-item.with-cover > div {
  padding: 0 18px 20px;
  order: 3;
}

.index-table.cover-list > .index-item.with-cover h2 {
  font-size: 21px;
}

.index-table.cover-list > .index-item.with-cover p {
  margin-bottom: 0;
}

.index-cover:hover img,
.index-cover:focus-visible img {
  transform: scale(1.025);
}

.index-item .type {
  color: var(--accent);
  font-weight: 900;
}

.index-item h2 {
  margin-bottom: 10px;
  font-family: inherit;
  font-size: 26px;
  line-height: 1.25;
  font-weight: 850;
}

.status {
  justify-self: end;
  padding: 7px 10px;
  border: 1px solid rgba(37, 35, 31, 0.22);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.footer {
  padding: 24px 0;
  border-top: 1px solid var(--line);
  background: #f8f8f8;
  color: var(--muted);
}

.footer .wrap {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand,
.footer-business {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
}

.footer-brand {
  font-weight: 800;
}

.footer-brand strong {
  color: var(--ink);
}

.footer-business {
  max-width: 760px;
  justify-content: flex-end;
  font-style: normal;
  font-size: 13px;
  line-height: 1.5;
}

.footer-business a {
  color: var(--accent);
  font-weight: 800;
}

.article-body {
  max-width: 820px;
  color: #3f3b33;
  font-size: 18px;
  line-height: 1.8;
}

.article-body h2 {
  margin: 42px 0 14px;
  font-family: inherit;
  font-size: 28px;
  line-height: 1.3;
  font-weight: 850;
}

.product-market {
  padding-top: 20px;
}

.product-shell {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.product-filters {
  position: sticky;
  top: 92px;
  padding: 22px;
  border: 1px solid rgba(37, 35, 31, 0.18);
  background: rgba(255, 250, 240, 0.76);
}

.product-filters h2 {
  margin: 0 0 18px;
  font-size: 20px;
}

.filter-block {
  display: grid;
  gap: 10px;
  padding: 16px 0;
  border-top: 1px solid rgba(37, 35, 31, 0.14);
}

.filter-block strong {
  color: var(--ink);
  font-size: 14px;
}

.filter-block label,
.filter-note {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.filter-block label {
  display: flex;
  gap: 8px;
  align-items: center;
}

.product-results {
  display: grid;
  gap: 14px;
}

.product-toolbar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid rgba(37, 35, 31, 0.14);
  background: rgba(255, 250, 240, 0.7);
}

.product-toolbar div,
.product-toolbar nav {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.product-toolbar span,
.product-toolbar a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.product-toolbar a[aria-current="page"] {
  color: var(--accent);
}

.commerce-list {
  display: grid;
  gap: 16px;
}

.commerce-card {
  position: relative;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 190px;
  gap: 22px;
  padding: 22px;
  border: 1px solid transparent;
  background: #fff;
  box-shadow: none;
}

.commerce-card:hover {
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.rank-ribbon {
  position: absolute;
  top: 0;
  left: 18px;
  width: 32px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--sale-red);
  color: var(--white);
  font-weight: 900;
}

.rank-ribbon::after {
  content: "";
  position: absolute;
  bottom: -8px;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 8px solid var(--sale-red);
}

.product-thumb {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 180px;
  border: 1px solid var(--line);
  background: #fafafa;
  background-size: 18px 18px;
  color: var(--accent);
}

.product-thumb span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 58px;
  line-height: 1;
}

.product-thumb small {
  color: #555;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-thumb.ebook {
  background: #f3efe5;
  color: var(--accent);
}

.product-thumb.ebook span {
  font-size: 44px;
}

.product-info {
  min-width: 0;
}

.product-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}

.product-meta span,
.product-rating {
  padding: 5px 8px;
  border: 1px solid rgba(37, 35, 31, 0.16);
  background: rgba(245, 240, 231, 0.9);
  color: var(--accent);
  font-size: 12px;
  font-weight: 900;
}

.product-info h2 {
  margin: 0 0 10px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
}

.product-info p {
  max-width: 680px;
  color: #3f3b33;
  line-height: 1.58;
}

.product-info ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 14px 0;
  list-style: none;
}

.product-info li {
  padding: 7px 9px;
  border: 1px solid rgba(34, 111, 100, 0.2);
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.product-tech {
  color: var(--muted);
}

.buy-panel {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: stretch;
}

.product-status {
  color: var(--accent-2);
  font-size: 13px;
  font-weight: 900;
}

.buy-panel strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  line-height: 1;
  color: var(--price-red);
}

.tax-note {
  color: var(--muted);
  font-size: 13px;
}

.sales-detail {
  display: grid;
  gap: 28px;
}

.sales-top {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: stretch;
}

.sales-cover {
  min-height: 520px;
  display: grid;
  place-items: center;
  padding: 34px;
  border: 1px solid var(--ink);
  background:
    linear-gradient(rgba(23, 23, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 23, 20, 0.035) 1px, transparent 1px),
    #f0eadf;
  background-size: 24px 24px;
}

.sales-cover.image-cover {
  padding: 0;
  overflow: hidden;
  background: var(--white);
}

.sales-cover.image-cover img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ebook-cover {
  width: min(100%, 330px);
  aspect-ratio: 0.72;
  display: grid;
  align-content: space-between;
  padding: 30px;
  border: 1px solid rgba(37, 35, 31, 0.45);
  background: #151713;
  color: var(--white);
  box-shadow: 18px 18px 0 rgba(34, 111, 100, 0.16);
}

.ebook-cover span {
  color: #f7d766;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ebook-cover strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 0.95;
}

.ebook-cover small {
  color: rgba(255, 250, 240, 0.76);
  font-weight: 800;
}

.sales-buybox {
  padding: 28px;
  border: 1px solid rgba(37, 35, 31, 0.22);
  background: rgba(255, 250, 240, 0.92);
}

.sales-buybox h2 {
  margin: 8px 0 14px;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.02;
}

.sales-price {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  margin: 22px 0;
}

.sales-price strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
  line-height: 1;
  color: var(--price-red);
}

.sales-specs {
  display: grid;
  gap: 10px;
  padding: 18px 0;
  border-top: 1px solid rgba(37, 35, 31, 0.16);
  border-bottom: 1px solid rgba(37, 35, 31, 0.16);
}

.sales-specs p {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 0;
  color: var(--muted);
}

.sales-specs strong {
  color: var(--ink);
}

.sales-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.detail-panel {
  padding: 34px;
  border: 1px solid rgba(37, 35, 31, 0.16);
  background: rgba(255, 250, 240, 0.78);
}

.detail-panel h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 4vw, 44px);
}

.benefit-grid,
.curriculum-grid,
.target-grid {
  display: grid;
  gap: 12px;
}

.benefit-grid {
  grid-template-columns: repeat(3, 1fr);
}

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

.target-grid {
  grid-template-columns: repeat(3, 1fr);
}

.detail-tile {
  min-height: 150px;
  padding: 20px;
  border: 1px solid rgba(37, 35, 31, 0.18);
  background: var(--white);
}

.detail-tile strong {
  display: block;
  margin-bottom: 10px;
  font-size: 20px;
}

.detail-tile p,
.detail-table td {
  color: #3f3b33;
  line-height: 1.58;
}

.detail-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.detail-table th,
.detail-table td {
  padding: 15px;
  border: 1px solid rgba(37, 35, 31, 0.16);
  text-align: left;
  vertical-align: top;
}

.detail-table th {
  width: 210px;
  color: var(--accent);
}

.sales-image-stack {
  display: grid;
  gap: 18px;
}

.sales-image-stack img {
  display: block;
  width: 100%;
  border: 1px solid rgba(37, 35, 31, 0.18);
  background: var(--white);
}

.review-list {
  display: grid;
  gap: 10px;
}

.review-item {
  padding: 16px;
  border: 1px solid rgba(37, 35, 31, 0.16);
  background: var(--white);
}

.review-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--accent-2);
}

.article-body p,
.article-body li {
  color: #3f3b33;
}

.article-body a {
  color: var(--accent);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.article-body .button {
  color: var(--white);
  text-decoration: none;
}

.contact-band {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 34px;
  align-items: start;
}

.contact-band h2 {
  margin: 12px 0 18px;
}

.contact-band p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.contact-actions {
  display: grid;
  gap: 10px;
}

.contact-actions span {
  padding: 15px;
  border: 1px solid rgba(37, 35, 31, 0.18);
  background: rgba(255, 250, 240, 0.72);
  color: #3f3b33;
  font-weight: 800;
}

.contact-actions .button {
  margin-top: 8px;
  justify-self: start;
}

@media (max-width: 860px) {
  .nav {
    align-items: center;
    flex-direction: row;
    padding: 14px 0;
    flex-wrap: wrap;
  }

  .menu-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
  }

  .nav-links {
    display: none;
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    justify-content: stretch;
  }

  .nav-links.is-open {
    display: grid;
  }

  .nav-links a {
    background: rgba(255, 250, 240, 0.72);
  }

  .hero,
  .section-head,
  .split,
  .page-intro,
  .contact-band {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 48px;
  }

  .proof-board {
    width: 100%;
    justify-self: stretch;
  }

  .lab-visual {
    min-height: 520px;
  }

  .grid,
  .output-grid,
  .path-grid {
    grid-template-columns: 1fr;
  }

  .product-shell,
  .commerce-card {
    grid-template-columns: 1fr;
  }

  .product-filters {
    position: static;
  }

  .product-toolbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px;
  }

  .sales-top,
  .benefit-grid,
  .curriculum-grid,
  .target-grid {
    grid-template-columns: 1fr;
  }

  .sales-cover {
    min-height: 360px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .index-item {
    grid-template-columns: 1fr;
  }

  .index-item.with-cover {
    grid-template-columns: 1fr;
  }

  .footer-business {
    justify-content: flex-start;
  }

  .index-cover {
    max-width: none;
  }

  .index-table.cover-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .status {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .index-table.cover-list {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

@media (max-width: 560px) {
  .wrap,
  .nav {
    width: min(100% - 22px, 1180px);
  }

  h1 {
    font-size: 46px;
  }

  .page-intro h1 {
    font-size: 38px;
    line-height: 1.14;
   }

  .lab-visual {
    min-height: 640px;
  }

  .node {
    position: relative;
    width: auto;
    top: auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 18px;
  }

  .node.one,
  .node.two,
  .node.three,
  .node.four {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
  }

  .route-line {
    display: none;
  }

  .list-row {
    grid-template-columns: 1fr;
  }
}

/* design.md commerce theme: site-wide final pass */
:where(html, body) {
  background: #ffffff;
}

body,
button,
input,
textarea,
select,
:where(h1, h2, h3, h4, h5, h6, p, a, li, span, strong, small, label),
:where(.hero h1, .page-intro h1, .product-thumb span, .buy-panel strong, .ebook-cover strong, .sales-price strong, .quote) {
  font-family: Arial, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  letter-spacing: 0;
}

:root {
  --paper: #ffffff;
  --paper-2: #f7f7f7;
  --line: #dddddd;
  --accent: #346aff;
  --accent-2: #ae0000;
  --ink: #111111;
  --muted: #555555;
  --soft: #f3f4f6;
  --price-red: #ae0000;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.site-header,
.commerce-topbar,
.commerce-shortcut-row,
.commerce-mainbar,
.nav {
  background: #ffffff;
}

.site-header {
  border-bottom: 1px solid #dddddd;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.commerce-topbar {
  background: #f7f7f7;
  color: #555555;
  font-size: 12px;
}

.category-entry,
.site-search button,
.button,
.cta,
.buy-panel .button,
.sales-buybox .button {
  border-radius: 2px;
  background: #346aff;
  color: #ffffff;
  box-shadow: none;
}

.button.secondary,
.button.ghost {
  border: 1px solid #346aff;
  background: #ffffff;
  color: #346aff;
}

.site-search {
  border: 2px solid #346aff;
  border-radius: 0;
}

.site-search span {
  background: #f7f7f7;
  color: #333333;
}

.commerce-shortcuts a,
.nav-links a {
  border-radius: 2px;
  color: #333333;
  font-weight: 800;
}

.commerce-shortcuts a[aria-current="page"],
.commerce-shortcuts a:hover,
.nav-links a[aria-current="page"],
.nav-links a:hover {
  color: #346aff;
  background: #ffffff;
  box-shadow: inset 0 -2px 0 #346aff;
}

.hero,
.page-intro,
.section,
.article-body,
.sales-detail,
.product-shell,
.products-page {
  background: #ffffff;
}

.hero h1,
.page-intro h1 {
  max-width: 760px;
  font-size: clamp(38px, 5.2vw, 72px);
  line-height: 1.04;
  font-weight: 900;
}

h1,
h2,
h3,
.sales-buybox h2 {
  color: #111111;
  font-weight: 900;
}

h2,
.sales-buybox h2 {
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.12;
}

.card,
.metric,
.note,
.project-card,
.experiment-card,
.article-card,
.article-body blockquote,
.sales-buybox,
.sales-detail-card,
.sales-info-table,
.commerce-card,
.product-thumb,
.buy-panel,
.feature-card,
.list-row {
  border: 1px solid #dddddd;
  border-radius: 4px;
  background: #ffffff;
  box-shadow: none;
}

.card:hover,
.project-card:hover,
.experiment-card:hover,
.article-card:hover,
.commerce-card:hover,
.feature-card:hover {
  transform: none;
  border-color: #b8c7ea;
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.muted,
.article-body p,
.article-body li,
.card p,
.project-card p,
.experiment-card p,
.commerce-card p,
.sales-buybox p {
  color: #555555;
}

.tag,
.eyebrow,
.kicker,
.meta,
.product-category,
.sales-badge {
  color: #0073e9;
  background: #ffffff;
  border-color: #dddddd;
  border-radius: 2px;
}

.price,
.sales-price strong,
.buy-panel strong,
.commerce-card .price,
.product-price {
  color: #ae0000;
  font-weight: 900;
}

.dark,
.strip,
.canvas-preview,
.device-frame,
.lab-visual,
.index-cover,
.footer {
  background: #f7f7f7;
  color: #111111;
}

.dark p,
.dark .muted,
.dark .section-head p,
.footer p,
.footer a {
  color: #555555;
}

.product-shell,
.page-intro {
  padding-top: 48px;
}

.product-grid,
.commerce-list,
.index-table {
  gap: 12px;
}

img {
  background: #ffffff;
}

/* Header category menu: underline only on interaction */
.commerce-shortcuts a,
.commerce-shortcuts a[aria-current="page"],
.nav-links a,
.nav-links a[aria-current="page"] {
  box-shadow: none !important;
}

.commerce-shortcuts a[aria-current="page"],
.nav-links a[aria-current="page"] {
  color: #333333 !important;
  background: transparent !important;
}

.commerce-shortcuts a:hover,
.commerce-shortcuts a:focus-visible,
.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--accent) !important;
  box-shadow: inset 0 -2px 0 var(--accent) !important;
}

/* Coupang-like product search list */
.product-hero {
  display: none;
}

.product-market {
  padding: 0;
  border-top: 1px solid #dfe3ea;
  background: #ffffff;
}

.product-shell.coupang-search {
  display: grid;
  width: min(100%, 1688px);
  grid-template-columns: 276px minmax(0, 1fr) 128px;
  gap: 24px;
  padding: 0 18px 56px;
}

.product-filters {
  position: sticky;
  top: 146px;
  align-self: start;
  min-height: calc(100vh - 170px);
  padding: 22px 24px;
  border: 0;
  border-right: 1px solid #e4e7ed;
  border-radius: 0;
  background: #ffffff;
}

.product-filters h2 {
  margin: 0 0 24px;
  font-size: 24px;
  line-height: 1;
}

.filter-block {
  padding: 18px 0;
  border-top: 1px solid #e4e7ed;
}

.filter-block strong {
  display: block;
  margin-bottom: 14px;
  font-size: 20px;
}

.filter-block label {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 30px;
  color: #555555;
  font-size: 14px;
}

.filter-block input {
  width: 18px;
  height: 18px;
  accent-color: #346aff;
}

.price-filter {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto;
  gap: 6px;
  align-items: center;
}

.price-filter input {
  min-width: 0;
  height: 30px;
  border: 1px solid #d8dce5;
}

.price-filter button {
  height: 32px;
  padding: 0 12px;
  border: 0;
  background: #346aff;
  color: #ffffff;
  font-weight: 900;
}

.filter-note {
  margin-top: 18px;
  padding: 14px 0;
  border-top: 1px solid #e4e7ed;
  color: #333333;
  font-size: 14px;
}

.product-results {
  padding-top: 26px;
  min-width: 0;
}

.search-summary {
  margin-bottom: 18px;
}

.search-summary h1 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.25;
}

.search-summary a {
  color: #346aff;
  font-size: 18px;
  font-weight: 800;
  text-decoration: underline;
}

.product-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 28px;
  min-height: 44px;
  padding: 9px 18px;
  border: 0;
  border-radius: 0;
  background: #fafafa;
}

.product-toolbar nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.product-toolbar a {
  padding: 0 16px;
  border-right: 1px solid #d8dce5;
  color: #333333;
  font-size: 14px;
  font-weight: 700;
}

.product-toolbar a[aria-current="page"] {
  color: #346aff;
  box-shadow: none;
}

.shipping-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #333333;
  font-size: 14px;
  font-weight: 800;
}

.shipping-toggle::before {
  content: "";
  width: 48px;
  height: 26px;
  border-radius: 99px;
  background: linear-gradient(90deg, #9aa8ba 50%, #d9dee7 50%);
}

.commerce-list.coupang-grid {
  display: grid;
  grid-template-columns: repeat(4, 224px);
  justify-content: space-between;
  gap: 38px 26px;
}

.commerce-list.coupang-grid .commerce-card {
  position: relative;
  display: block;
  width: 224px;
  min-width: 224px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.commerce-list.coupang-grid .commerce-card:hover {
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.14);
}

.rank-ribbon {
  position: absolute;
  z-index: 2;
  top: -4px;
  left: -8px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 48px;
  background: #e60012;
  color: #ffffff;
  font-size: 22px;
  font-weight: 900;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 82%, 0 100%);
}

.commerce-list.coupang-grid .product-thumb {
  display: grid;
  place-items: center;
  width: 224px;
  height: 224px;
  margin-bottom: 14px;
  border: 0;
  border-radius: 0;
  background: #f7f7f7;
  overflow: hidden;
}

.commerce-list.coupang-grid .product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.commerce-list.coupang-grid .product-thumb span {
  font-size: 58px;
  color: #346aff;
}

.commerce-list.coupang-grid .product-info h2 {
  min-height: 50px;
  margin: 0 0 6px;
  font-size: 18px;
  line-height: 1.34;
  font-weight: 500;
}

.commerce-list.coupang-grid .product-info h2 a {
  color: #0051c7;
  text-decoration: underline;
}

.commerce-list.coupang-grid .product-summary {
  display: none;
}

.commerce-list.coupang-grid .product-meta,
.commerce-list.coupang-grid .product-tech,
.commerce-list.coupang-grid .buy-panel .button,
.commerce-list.coupang-grid .buy-panel .button.secondary,
.commerce-list.coupang-grid .tax-note {
  display: none;
}

.commerce-list.coupang-grid .buy-panel {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
}

.commerce-list.coupang-grid .product-status {
  display: block;
  margin-bottom: 3px;
  color: #ae0000;
  font-size: 14px;
  font-weight: 800;
}

.commerce-list.coupang-grid .buy-panel strong {
  display: inline;
  color: #ae0000;
  font-size: 28px;
  line-height: 1.08;
}

.commerce-list.coupang-grid .delivery-line,
.commerce-list.coupang-grid .review-line,
.commerce-list.coupang-grid .reward-line {
  display: block;
  margin-top: 7px;
  color: #00891a;
  font-size: 14px;
  font-weight: 700;
}

.commerce-list.coupang-grid .review-line {
  color: #333333;
}

.commerce-list.coupang-grid .reward-line {
  color: #555555;
}

.commerce-list.coupang-grid .review-line,
.cp-rating {
  color: #ff9600 !important;
}

.commerce-list.coupang-grid .review-line::first-letter {
  color: #ff9600;
}

.commerce-list.coupang-grid .rocket-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 4px 7px;
  border-radius: 3px;
  background: #d7efff;
  color: #174d74;
  font-size: 13px;
  font-weight: 900;
}

.recent-panel {
  position: sticky;
  top: 146px;
  align-self: start;
  margin-top: 16px;
  border: 1px solid #d8dce5;
  background: #ffffff;
}

.recent-panel h2 {
  margin: 0;
  padding: 12px 10px;
  background: #29324a;
  color: #ffffff;
  font-size: 14px;
}

.recent-panel a {
  display: block;
  padding: 10px;
  border-top: 1px solid #e4e7ed;
}

.recent-panel img,
.recent-panel span {
  display: grid;
  place-items: center;
  width: 80px;
  height: 80px;
  margin: 0 auto;
  background: #f7f7f7;
  color: #346aff;
  font-size: 24px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .product-shell.coupang-search {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .recent-panel {
    display: none;
  }

  .commerce-list.coupang-grid {
    grid-template-columns: repeat(3, 224px);
    justify-content: space-between;
  }
}

@media (max-width: 820px) {
  .product-shell.coupang-search {
    grid-template-columns: 1fr;
    padding: 0 14px 40px;
  }

  .product-filters {
    position: static;
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid #e4e7ed;
  }

  .commerce-list.coupang-grid {
    grid-template-columns: repeat(2, minmax(140px, 1fr));
    gap: 28px 18px;
  }

  .commerce-list.coupang-grid .commerce-card,
  .commerce-list.coupang-grid .product-thumb {
    width: 100%;
    min-width: 0;
  }

  .commerce-list.coupang-grid .product-thumb {
    height: auto;
    aspect-ratio: 1 / 1;
  }
}

/* Coupang font match: Windows Chrome priority */
body,
button,
input,
textarea,
select,
:where(h1, h2, h3, h4, h5, h6, p, a, li, span, strong, small, label),
:where(.hero h1, .page-intro h1, .product-thumb span, .buy-panel strong, .ebook-cover strong, .sales-price strong, .quote) {
  font-family: "Malgun Gothic", "맑은 고딕", "Apple SD Gothic Neo", Dotum, Arial, sans-serif;
  letter-spacing: 0;
}

.commerce-mainbar,
.commerce-shortcuts,
.product-shell.coupang-search,
.product-shell.coupang-search * {
  font-family: "Malgun Gothic", "맑은 고딕", "Apple SD Gothic Neo", Dotum, Arial, sans-serif;
}

.search-summary h1 {
  font-size: 22px;
  font-weight: 700;
}

.product-toolbar,
.product-toolbar a,
.shipping-toggle {
  font-size: 14px;
  font-weight: 400;
}

.product-filters h2 {
  font-size: 24px;
  font-weight: 700;
}

.filter-block strong {
  font-size: 20px;
  font-weight: 700;
}

.filter-block label {
  font-size: 14px;
  font-weight: 400;
}

.commerce-list.coupang-grid .product-info h2 {
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0;
}

.commerce-list.coupang-grid .product-info h2 a {
  font-weight: 400;
}

.commerce-list.coupang-grid .buy-panel strong {
  font-family: Tahoma, "Malgun Gothic", "맑은 고딕", Arial, sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.commerce-list.coupang-grid .product-status,
.commerce-list.coupang-grid .delivery-line,
.commerce-list.coupang-grid .review-line,
.commerce-list.coupang-grid .reward-line,
.commerce-list.coupang-grid .rocket-badge {
  font-size: 14px;
}

/* Coupang newsroom style for AI work notes */
.systems-news {
  padding: 54px 0 70px;
  background: #ffffff;
}

.news-wrap {
  max-width: 1180px;
}

.news-head {
  margin-bottom: 34px;
}

.news-head h1 {
  margin: 0 0 28px;
  color: #111111;
  font-size: 38px;
  font-weight: 800;
  line-height: 1.2;
}

.news-head nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 22px;
}

.news-head nav a {
  color: #333333;
  font-size: 17px;
  font-weight: 700;
}

.news-head nav a[aria-current="page"],
.news-head nav a:hover {
  color: #346aff;
}

.news-list {
  display: grid;
  gap: 0;
}

.news-row {
  display: grid;
  grid-template-columns: 320px minmax(0, 1fr);
  gap: 34px;
  padding: 26px 0;
  border-bottom: 1px solid #e5e5e5;
}

.news-thumb {
  display: grid;
  place-items: end start;
  min-height: 180px;
  padding: 22px;
  background:
    linear-gradient(135deg, rgba(52, 106, 255, 0.12), rgba(255, 255, 255, 0.4)),
    #f3f6fb;
  color: #174d74;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.25;
}

.news-copy {
  align-self: center;
}

.news-copy p {
  margin: 0 0 12px;
  color: #346aff;
  font-size: 15px;
  font-weight: 800;
}

.news-copy h2 {
  margin: 0 0 18px;
  font-size: 30px;
  line-height: 1.28;
  font-weight: 800;
}

.news-copy h2 a {
  color: #111111;
}

.news-copy h2 a:hover {
  color: #346aff;
}

.news-copy time {
  color: #777777;
  font-size: 15px;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 34px 0 58px;
}

.news-pagination a,
.news-pagination span {
  display: grid;
  place-items: center;
  min-width: 34px;
  height: 34px;
  color: #333333;
  font-size: 16px;
  font-weight: 700;
}

.news-pagination a[aria-current="page"] {
  border: 1px solid #346aff;
  color: #346aff;
}

.news-stats {
  padding: 48px 0;
  border-top: 1px solid #e5e5e5;
}

.news-stats h2,
.newsletter-box h2 {
  margin: 0 0 28px;
  font-size: 32px;
  line-height: 1.2;
}

.news-stats > div {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.news-stats article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid #e5e5e5;
  background: #ffffff;
}

.news-stats p {
  margin: 0 0 16px;
  color: #333333;
  font-size: 17px;
  font-weight: 800;
}

.news-stats strong {
  color: #346aff;
  font-size: 54px;
  line-height: 1;
  font-weight: 900;
}

.news-stats span {
  margin-left: 5px;
  color: #111111;
  font-size: 24px;
  font-weight: 800;
}

.news-stats small {
  display: block;
  margin-top: 18px;
  color: #777777;
  font-size: 15px;
  font-weight: 700;
}

.newsletter-box {
  padding: 46px 0 0;
  border-top: 1px solid #e5e5e5;
}

.newsletter-box label {
  display: block;
  margin-bottom: 16px;
}

.newsletter-box label span {
  display: block;
  margin-bottom: 8px;
  color: #333333;
  font-size: 17px;
  font-weight: 800;
}

.newsletter-box input[type="email"] {
  width: min(520px, 100%);
  height: 48px;
  padding: 0 14px;
  border: 1px solid #cccccc;
  font-size: 16px;
}

.newsletter-box .consent {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #333333;
  font-size: 15px;
}

.newsletter-box .terms {
  max-width: 760px;
  margin: 14px 0 24px;
  color: #666666;
  font-size: 14px;
  line-height: 1.7;
}

.newsletter-box .terms p {
  margin: 0;
}

.newsletter-box button {
  height: 48px;
  min-width: 140px;
  border: 0;
  background: #346aff;
  color: #ffffff;
  font-size: 16px;
  font-weight: 900;
}

@media (max-width: 860px) {
  .news-row {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .news-stats > div {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .news-head h1 {
    font-size: 30px;
  }

  .news-copy h2 {
    font-size: 24px;
  }

  .news-stats > div {
    grid-template-columns: 1fr;
  }
}

/* Final product list sizing pass */
.product-shell.coupang-search,
.product-shell.coupang-search * {
  font-family: "Malgun Gothic", "맑은 고딕", Dotum, Arial, sans-serif;
}

.product-shell.coupang-search {
  font-size: 14px;
}

.search-summary h1 {
  color: #111111;
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.search-summary a {
  font-size: 18px;
  font-weight: 700;
}

.product-toolbar a,
.product-toolbar strong,
.shipping-toggle {
  font-size: 14px;
  font-weight: 400;
}

.product-filters h2 {
  font-size: 24px;
  font-weight: 700;
}

.filter-block strong {
  font-size: 20px;
  font-weight: 700;
}

.filter-block label,
.filter-note {
  font-size: 14px;
  font-weight: 400;
}

.commerce-list.coupang-grid .product-info h2,
.commerce-list.coupang-grid .product-info h2 a {
  color: #111111;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.15px;
  text-decoration: none;
}

.commerce-list.coupang-grid .product-info h2 a:hover {
  color: #0051c7;
  text-decoration: underline;
}

.commerce-list.coupang-grid .product-status {
  color: #ae0000;
  font-size: 14px;
  font-weight: 400;
}

.commerce-list.coupang-grid .buy-panel strong {
  font-family: Tahoma, "Malgun Gothic", "맑은 고딕", Dotum, Arial, sans-serif;
  color: #ae0000;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -1px;
}

.commerce-list.coupang-grid .rocket-badge {
  margin-top: 9px;
  font-size: 14px;
  line-height: 1;
}

.commerce-list.coupang-grid .delivery-line,
.commerce-list.coupang-grid .review-line,
.commerce-list.coupang-grid .reward-line {
  font-size: 14px;
  line-height: 1.25;
}

/* Product list hard match pass */
.product-shell.coupang-search {
  width: calc(100% - 40px) !important;
  max-width: 1500px !important;
  grid-template-columns: 260px minmax(920px, 1fr) 112px !important;
  gap: 22px !important;
  margin: 0 auto !important;
}

.product-filters {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.product-results {
  overflow: visible !important;
}

.commerce-list.coupang-grid {
  grid-template-columns: repeat(4, 210px) !important;
  justify-content: space-between !important;
  column-gap: 24px !important;
  row-gap: 38px !important;
}

.commerce-list.coupang-grid .commerce-card {
  width: 210px !important;
  min-width: 210px !important;
}

.commerce-list.coupang-grid .product-thumb {
  width: 210px !important;
  height: 210px !important;
  margin-bottom: 13px !important;
}

.commerce-list.coupang-grid .product-thumb span {
  font-size: 50px !important;
}

.commerce-list.coupang-grid .product-info h2,
.commerce-list.coupang-grid .product-info h2 a {
  min-height: 48px !important;
  font-size: 17px !important;
  line-height: 1.34 !important;
  font-weight: 400 !important;
}

.commerce-list.coupang-grid .product-status {
  font-size: 13px !important;
  font-weight: 400 !important;
}

.commerce-list.coupang-grid .buy-panel strong {
  font-size: 26px !important;
  line-height: 1.08 !important;
  font-weight: 700 !important;
}

.commerce-list.coupang-grid .rocket-badge,
.commerce-list.coupang-grid .delivery-line,
.commerce-list.coupang-grid .review-line,
.commerce-list.coupang-grid .reward-line {
  font-size: 13px !important;
}

.recent-panel {
  width: 112px !important;
}

.recent-panel img,
.recent-panel span {
  width: 76px !important;
  height: 76px !important;
}

@media (max-width: 1280px) {
  .product-shell.coupang-search {
    grid-template-columns: 230px minmax(0, 1fr) !important;
  }

  .commerce-list.coupang-grid {
    grid-template-columns: repeat(3, 210px) !important;
  }
}

/* Product list compact font pass */
.product-shell.coupang-search {
  grid-template-columns: 252px minmax(880px, 1fr) 108px !important;
}

.commerce-list.coupang-grid {
  grid-template-columns: repeat(4, 200px) !important;
  column-gap: 22px !important;
}

.commerce-list.coupang-grid .commerce-card {
  width: 200px !important;
  min-width: 200px !important;
}

.commerce-list.coupang-grid .product-thumb {
  width: 200px !important;
  height: 200px !important;
}

.commerce-list.coupang-grid .product-thumb span {
  font-size: 46px !important;
}

.commerce-list.coupang-grid .product-info h2,
.commerce-list.coupang-grid .product-info h2 a {
  min-height: 43px !important;
  font-size: 16px !important;
  line-height: 1.34 !important;
}

.commerce-list.coupang-grid .product-status {
  font-size: 12px !important;
}

.commerce-list.coupang-grid .buy-panel strong {
  font-size: 24px !important;
  letter-spacing: -0.8px !important;
}

.commerce-list.coupang-grid .rocket-badge,
.commerce-list.coupang-grid .delivery-line,
.commerce-list.coupang-grid .review-line,
.commerce-list.coupang-grid .reward-line {
  font-size: 12px !important;
}

.filter-block label,
.filter-note,
.price-filter input,
.price-filter button {
  font-size: 13px !important;
}

.recent-panel {
  width: 108px !important;
}

.recent-panel img,
.recent-panel span {
  width: 72px !important;
  height: 72px !important;
}

@media (max-width: 1280px) {
  .commerce-list.coupang-grid {
    grid-template-columns: repeat(3, 200px) !important;
  }
}

/* Coupang-like product detail */
.cp-detail {
  background: #ffffff;
  color: #111111;
  font-family: "Malgun Gothic", "맑은 고딕", Dotum, Arial, sans-serif;
}

.cp-breadcrumb {
  max-width: 1640px;
  padding: 18px 26px 10px;
  color: #555555;
  font-size: 13px;
}

.cp-detail-grid {
  display: grid;
  max-width: 1640px;
  grid-template-columns: minmax(560px, 720px) minmax(520px, 1fr) 122px;
  gap: 28px;
  align-items: start;
  padding: 16px 26px 34px;
}

.cp-gallery {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 24px;
  position: sticky;
  top: 142px;
}

.cp-thumbs {
  display: grid;
  gap: 14px;
}

.cp-thumbs a {
  display: grid;
  place-items: center;
  width: 88px;
  height: 88px;
  border: 1px solid #dddddd;
  background: #ffffff;
  overflow: hidden;
}

.cp-thumbs a[aria-current="page"] {
  border: 2px solid #346aff;
}

.cp-thumbs img,
.cp-main-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cp-thumbs span,
.cp-main-image span,
.cp-side-cart span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
  color: #346aff;
  font-weight: 800;
}

.cp-main-image {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 600px;
  background: #ffffff;
}

.cp-main-image > span {
  width: min(520px, 100%);
  height: 520px;
  font-size: 86px;
}

.cp-main-image > img {
  max-width: 94%;
  max-height: 600px;
}

.cp-main-image button {
  position: absolute;
  right: 12px;
  width: 48px;
  height: 48px;
  border: 1px solid #dddddd;
  border-radius: 50%;
  background: #ffffff;
  color: #333333;
  font-size: 28px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.cp-main-image button:first-of-type {
  top: 18px;
}

.cp-main-image button:last-of-type {
  top: 76px;
}

.cp-buy {
  padding-top: 2px;
}

.cp-buy h1 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.35;
  font-weight: 700;
}

.cp-sub {
  margin: 0 0 8px;
  color: #555555;
  font-size: 16px;
}

.cp-rating {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  color: #ff9600;
  font-size: 14px;
}

.cp-rating a {
  color: #0065ff;
  font-size: 15px;
}

.cp-rating span {
  color: #333333;
  font-size: 15px;
}

.cp-rating strong {
  color: #e65f00;
}

.cp-line {
  height: 1px;
  margin: 16px 0 20px;
  background: #dddddd;
}

.cp-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 18px;
}

.cp-price strong {
  color: #ae0000;
  font-family: Tahoma, "Malgun Gothic", "맑은 고딕", Dotum, Arial, sans-serif;
  font-size: 30px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -1px;
}

.cp-price span {
  color: #ae0000;
  font-size: 14px;
}

.cp-price em {
  color: #00891a;
  font-size: 14px;
  font-style: normal;
  font-weight: 800;
}

.cp-wow {
  margin: 0 0 8px;
  color: #333333;
  font-size: 16px;
}

.cp-wow::before {
  content: "WOW";
  display: inline-block;
  margin-right: 8px;
  padding: 2px 7px;
  border-radius: 10px;
  background: #5b8fe8;
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
}

.cp-free {
  display: inline-block;
  margin-bottom: 28px;
  padding: 5px 12px;
  background: #168600;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
}

.cp-options {
  border-top: 1px solid #dddddd;
}

.cp-options p {
  margin: 18px 0;
  color: #333333;
  font-size: 16px;
}

.cp-options label {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr) auto;
  align-items: center;
  min-height: 58px;
  border-bottom: 1px solid #e2e2e2;
  color: #111111;
  font-size: 18px;
}

.cp-options input {
  width: 20px;
  height: 20px;
  accent-color: #346aff;
}

.cp-options strong {
  font-size: 18px;
}

.cp-more {
  width: 100%;
  height: 50px;
  margin: 18px 0;
  border: 1px solid #346aff;
  background: #ffffff;
  color: #346aff;
  font-size: 16px;
  font-weight: 700;
}

.cp-delivery,
.cp-reward {
  padding: 14px 0;
  border-top: 1px solid #dddddd;
  font-size: 15px;
}

.cp-delivery p,
.cp-reward p {
  margin: 0 0 6px;
}

.cp-delivery strong {
  color: #00891a;
}

.cp-delivery span {
  color: #555555;
}

.cp-reward {
  display: flex;
  gap: 34px;
  align-items: center;
}

.cp-actions {
  display: grid;
  grid-template-columns: 104px 1fr 1fr;
  gap: 8px;
  margin: 18px 0;
}

.cp-actions select,
.cp-actions a {
  height: 52px;
  border: 1px solid #346aff;
  font-size: 20px;
  font-weight: 800;
}

.cp-actions select {
  text-align: center;
  padding-left: 32px;
  background: #ffffff;
}

.cp-actions a {
  display: grid;
  place-items: center;
}

.cp-cart {
  color: #346aff;
  background: #ffffff;
}

.cp-buy-now {
  color: #ffffff;
  background: #346aff;
}

.cp-notes {
  margin: 0;
  padding-left: 20px;
  color: #111111;
  font-size: 14px;
  line-height: 1.55;
}

.cp-side-cart {
  position: sticky;
  top: 142px;
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid #346aff;
  background: #ffffff;
}

.cp-side-cart strong {
  text-align: center;
  font-size: 16px;
  line-height: 1.5;
}

.cp-side-cart a {
  display: grid;
  place-items: center;
  height: 34px;
  border: 1px solid #346aff;
  color: #346aff;
  font-size: 14px;
  font-weight: 800;
}

.cp-side-cart div {
  display: grid;
  gap: 12px;
}

.cp-side-cart span {
  width: 78px;
  height: 78px;
  margin: 0 auto;
  font-size: 24px;
}

.cp-detail-content {
  max-width: 980px;
  margin: 20px auto 80px;
  padding-top: 30px;
  border-top: 1px solid #dddddd;
}

.cp-detail-content h2 {
  margin: 0 0 24px;
  font-size: 26px;
}

.cp-detail-text {
  border: 1px solid #dddddd;
  padding: 28px;
  font-size: 17px;
  line-height: 1.7;
}

@media (max-width: 1200px) {
  .cp-detail-grid {
    grid-template-columns: 1fr;
  }

  .cp-gallery,
  .cp-side-cart {
    position: static;
  }

  .cp-side-cart {
    display: none;
  }
}

/* Coupang detail font hard pass */
.cp-detail,
.cp-detail * {
  font-family: "Malgun Gothic", "맑은 고딕", Dotum, Arial, sans-serif !important;
  letter-spacing: 0 !important;
}

.cp-breadcrumb {
  font-size: 13px !important;
}

.cp-buy h1 {
  font-size: 18px !important;
  line-height: 1.45 !important;
  font-weight: 700 !important;
}

.cp-sub,
.cp-rating,
.cp-rating a,
.cp-rating span {
  font-size: 14px !important;
}

.cp-price strong {
  font-family: Tahoma, "Malgun Gothic", "맑은 고딕", Dotum, Arial, sans-serif !important;
  font-size: 28px !important;
  font-weight: 700 !important;
  letter-spacing: -1px !important;
}

.cp-price span,
.cp-price em {
  font-size: 13px !important;
}

.cp-wow {
  font-size: 15px !important;
}

.cp-free {
  font-size: 14px !important;
}

.cp-options p {
  font-size: 15px !important;
}

.cp-options label {
  min-height: 56px !important;
  font-size: 16px !important;
}

.cp-options strong {
  font-size: 16px !important;
}

.cp-more {
  font-size: 15px !important;
}

.cp-delivery,
.cp-reward {
  font-size: 14px !important;
}

.cp-actions select,
.cp-actions a {
  font-size: 18px !important;
}

.cp-notes {
  font-size: 13px !important;
}

.cp-side-cart strong,
.cp-side-cart a {
  font-size: 13px !important;
}

/* Newsroom grid page for AI work notes */
.systems-news.newsroom-grid-page {
  min-height: 900px;
  padding: 62px 0 96px;
  background: #ffffff;
}

.newsroom-grid-page .news-wrap {
  width: 640px;
  max-width: calc(100% - 32px);
}

.newsroom-grid-page .news-head {
  margin-bottom: 24px;
}

.newsroom-grid-page .news-head h1 {
  margin: 0 0 28px;
  color: #111111;
  font-family: "Malgun Gothic", "맑은 고딕", Dotum, Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
}

.newsroom-grid-page .news-head nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  border: 0;
}

.newsroom-grid-page .news-head nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 26px;
  padding: 0 13px;
  border: 1px solid #d7dce2;
  border-radius: 999px;
  background: #ffffff;
  color: #555555;
  font-size: 11px;
  font-weight: 700;
  white-space: nowrap;
}

.newsroom-grid-page .news-head nav a[aria-current="page"] {
  border-color: #0879e8;
  background: #0879e8;
  color: #ffffff;
}

.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px 20px;
}

.news-card {
  min-width: 0;
  background: #f7f7f7;
}

.news-card-image {
  display: grid;
  place-items: center;
  height: 145px;
  overflow: hidden;
  background: #dfe7ef;
}

.news-card-image span {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  color: #ffffff;
  text-align: center;
  font-size: 17px;
  line-height: 1.25;
  font-weight: 900;
}

.news-card-image.tone-1 span {
  background: linear-gradient(135deg, #27364a, #9aa8b6);
}

.news-card-image.tone-2 span {
  background: linear-gradient(135deg, #85a98f, #e7d9b8);
}

.news-card-image.tone-3 span {
  background: linear-gradient(135deg, #0f6b4b, #92c6a0);
}

.news-card-image.tone-4 span {
  background: linear-gradient(135deg, #cc7d2f, #f2d06b);
}

.news-card-image.tone-5 span {
  background: linear-gradient(135deg, #7f8fb3, #f1d0bb);
}

.news-card-image.tone-6 span {
  background: linear-gradient(135deg, #dfe7ef, #7aa0c4);
  color: #123;
}

.news-card > div {
  min-height: 126px;
  padding: 13px 12px 16px;
  background: #f6f6f6;
}

.news-card p {
  margin: 0 0 8px;
  color: #555555;
  font-size: 10px;
  line-height: 1.3;
  font-weight: 700;
}

.news-card h2 {
  margin: 0 0 18px;
  color: #111111;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 800;
}

.news-card h2 a {
  color: inherit;
}

.news-card time {
  color: #777777;
  font-size: 10px;
  font-weight: 600;
}

.news-pagination.compact {
  gap: 14px;
  padding: 42px 0 0;
}

.news-pagination.compact a,
.news-pagination.compact span {
  min-width: auto;
  height: auto;
  border: 0;
  color: #555555;
  font-size: 10px;
  font-weight: 700;
}

.news-pagination.compact a[aria-current="page"] {
  border: 0;
  color: #0879e8;
}

.systems-news.newsroom-grid-page + .footer,
body:has(.newsroom-grid-page) .footer {
  background: #edf3f6;
}

body:has(.newsroom-grid-page) .footer .wrap {
  max-width: 640px;
  padding-top: 44px;
  padding-bottom: 44px;
}

@media (max-width: 760px) {
  .newsroom-grid-page .news-wrap {
    width: min(100% - 28px, 640px);
  }

  .news-card-grid {
    grid-template-columns: 1fr;
  }

  .news-card-image {
    height: 180px;
  }
}

/* Newsroom scale match pass */
.systems-news.newsroom-grid-page {
  padding: 86px 0 110px !important;
}

.newsroom-grid-page .news-wrap {
  width: min(1450px, calc(100% - 180px)) !important;
  max-width: none !important;
}

.newsroom-grid-page .news-head {
  margin-bottom: 42px !important;
}

.newsroom-grid-page .news-head h1 {
  margin-bottom: 36px !important;
  font-size: 26px !important;
}

.newsroom-grid-page .news-head nav {
  gap: 12px !important;
}

.newsroom-grid-page .news-head nav a {
  height: 34px !important;
  padding: 0 18px !important;
  font-size: 14px !important;
}

.news-card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 52px 54px !important;
}

.news-card {
  background: #f4f4f4 !important;
}

.news-card-image {
  height: 340px !important;
}

.news-card-image span {
  font-size: 34px !important;
  line-height: 1.18 !important;
}

.news-card > div {
  min-height: 230px !important;
  padding: 30px 30px 34px !important;
}

.news-card p {
  margin-bottom: 16px !important;
  color: #536b80 !important;
  font-size: 18px !important;
}

.news-card h2 {
  margin-bottom: 46px !important;
  font-size: 25px !important;
  line-height: 1.42 !important;
  font-weight: 800 !important;
}

.news-card time {
  font-size: 18px !important;
}

.news-pagination.compact {
  padding-top: 72px !important;
}

.news-pagination.compact a,
.news-pagination.compact span {
  font-size: 14px !important;
}

body:has(.newsroom-grid-page) .footer .wrap {
  max-width: 1450px !important;
}

@media (max-width: 1100px) {
  .newsroom-grid-page .news-wrap {
    width: min(100% - 40px, 900px) !important;
  }

  .news-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 680px) {
  .newsroom-grid-page .news-wrap {
    width: min(100% - 28px, 520px) !important;
  }

  .news-card-grid {
    grid-template-columns: 1fr !important;
  }

  .news-card-image {
    height: 260px !important;
  }
}

/* Final rating color */
.commerce-list.coupang-grid .review-line,
.cp-rating {
  color: #ff9600 !important;
}

/* App-style product icons for items without screenshots */
.commerce-list.coupang-grid .product-thumb.app-product {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #10141f 0%, #1c2438 100%) !important;
  border: 0 !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08) !important;
}

.product-thumb.app-product:has(img) {
  background: #ffffff !important;
  box-shadow: none !important;
}

.app-icon {
  position: relative;
  display: grid !important;
  place-items: center !important;
  width: min(74%, 148px) !important;
  height: auto !important;
  aspect-ratio: 1 / 1;
  border-radius: 22px;
  overflow: hidden;
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow:
    0 18px 38px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  isolation: isolate;
}

.app-icon::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, 0.28), transparent 25%),
    linear-gradient(135deg, #162033 0%, #2563eb 100%);
  z-index: -1;
}

.commerce-list.coupang-grid .product-thumb .app-icon,
.cp-main-image > .app-icon,
.cp-thumbs .app-icon,
.cp-side-cart .app-icon {
  font-family: Arial, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif !important;
  color: #ffffff !important;
}

.app-icon b {
  position: relative;
  z-index: 1;
  font-family: Arial, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif !important;
  font-size: 52px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  letter-spacing: -3px !important;
  color: #ffffff !important;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.28);
}

.app-icon small {
  position: absolute;
  z-index: 1;
  left: 14px;
  right: 14px;
  bottom: 12px;
  display: block;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.78) !important;
  font-family: Arial, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif !important;
  font-size: 11px !important;
  font-weight: 800 !important;
  line-height: 1.2 !important;
  letter-spacing: 0 !important;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.product-thumb.typecast-voice-bench .app-icon::before,
.app-icon.typecast-voice-bench::before {
  background:
    radial-gradient(circle at 28% 18%, rgba(154, 230, 255, 0.42), transparent 27%),
    linear-gradient(135deg, #07111f 0%, #0b4fd8 52%, #14d5ff 100%);
}

.product-thumb.typecast-voice-bench-local .app-icon::before,
.app-icon.typecast-voice-bench-local::before {
  background:
    radial-gradient(circle at 25% 18%, rgba(187, 255, 220, 0.42), transparent 28%),
    linear-gradient(135deg, #062018 0%, #007f73 54%, #61f2a4 100%);
}

.product-thumb.video-planner-browser .app-icon::before,
.app-icon.video-planner-browser::before {
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 236, 170, 0.48), transparent 28%),
    linear-gradient(135deg, #23110b 0%, #cf2e2e 48%, #f8c832 100%);
}

.product-thumb.image-cli-batch-console .app-icon::before,
.app-icon.image-cli-batch-console::before {
  background:
    radial-gradient(circle at 28% 18%, rgba(221, 214, 255, 0.44), transparent 28%),
    linear-gradient(135deg, #111827 0%, #5b21b6 48%, #38bdf8 100%);
}

.product-thumb.comment-signal-lab .app-icon::before,
.app-icon.comment-signal-lab::before {
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 218, 185, 0.42), transparent 28%),
    linear-gradient(135deg, #151515 0%, #8f1d1d 50%, #ff8a00 100%);
}

.product-thumb.trial-error-newsletter .app-icon::before,
.app-icon.trial-error-newsletter::before {
  background:
    radial-gradient(circle at 26% 18%, rgba(255, 255, 255, 0.38), transparent 28%),
    linear-gradient(135deg, #1f2937 0%, #0f766e 48%, #facc15 100%);
}

.product-thumb.custom-automation-build .app-icon::before,
.app-icon.custom-automation-build::before {
  background:
    radial-gradient(circle at 26% 18%, rgba(226, 232, 240, 0.44), transparent 28%),
    linear-gradient(135deg, #020617 0%, #334155 42%, #22c55e 100%);
}

.product-thumb.ai-career-job-report .app-icon::before,
.app-icon.ai-career-job-report::before {
  background:
    radial-gradient(circle at 28% 18%, rgba(219, 234, 254, 0.46), transparent 28%),
    linear-gradient(135deg, #111827 0%, #2563eb 46%, #a855f7 100%);
}

.app-icon.mini {
  width: 64px !important;
  border-radius: 14px;
}

.app-icon.mini b {
  font-size: 24px !important;
  letter-spacing: -1px !important;
}

.app-icon.mini small,
.cp-thumbs .app-icon small,
.cp-side-cart .app-icon small {
  display: none !important;
}

.cp-thumbs .app-icon,
.cp-side-cart .app-icon {
  width: 64px !important;
  border-radius: 14px;
}

.cp-thumbs .app-icon b,
.cp-side-cart .app-icon b {
  font-size: 24px !important;
  letter-spacing: -1px !important;
}

.cp-main-image > .app-icon {
  width: min(360px, 70%) !important;
  height: auto !important;
  border-radius: 34px;
}

.cp-main-image > .app-icon b {
  font-size: 112px !important;
  letter-spacing: -7px !important;
}

.cp-main-image > .app-icon small {
  bottom: 28px;
  font-size: 15px !important;
}

.product-long-body {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #e5e7eb;
}

.product-long-body h2 {
  margin: 28px 0 10px;
  font-size: 24px;
  line-height: 1.3;
}

.product-long-body p {
  margin: 0 0 16px;
  color: #333333;
  font-size: 17px;
  line-height: 1.8;
}

/* Footer final alignment */
.footer .wrap {
  display: grid !important;
  grid-template-columns: 1fr !important;
  justify-items: center !important;
  gap: 20px !important;
  max-width: 1200px !important;
  text-align: center !important;
}

.footer-brand {
  display: flex !important;
  flex-wrap: wrap !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 16px 22px !important;
  width: 100% !important;
  font-size: 20px !important;
  line-height: 1.45 !important;
}

.footer-brand strong {
  font-size: 22px !important;
  line-height: 1.2 !important;
}

.footer-brand span {
  white-space: normal !important;
}

.footer-business {
  display: flex !important;
  flex-wrap: wrap !important;
  justify-content: center !important;
  gap: 10px 20px !important;
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  font-size: 15px !important;
  line-height: 1.6 !important;
  text-align: center !important;
}

.footer-business a {
  width: 100% !important;
}

@media (max-width: 640px) {
  .footer-brand {
    flex-direction: column !important;
    gap: 8px !important;
    font-size: 17px !important;
  }

  .footer-business {
    flex-direction: column !important;
    gap: 6px !important;
    font-size: 14px !important;
  }
}

/* Mobile commerce layout */
@media (max-width: 820px) {
  html,
  body {
    max-width: 100%;
    overflow-x: hidden;
  }

  .commerce-topbar .wrap {
    width: calc(100% - 28px) !important;
    gap: 16px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
  }

  .commerce-mainbar {
    width: calc(100% - 28px) !important;
    grid-template-columns: minmax(0, auto) minmax(108px, 1fr) !important;
    gap: 10px !important;
    padding: 18px 0 14px !important;
  }

  .commerce-mainbar .brand {
    min-width: 0 !important;
    font-size: 24px !important;
    line-height: 1.05 !important;
  }

  .commerce-mainbar .brand > span:last-child {
    max-width: 116px !important;
    white-space: normal !important;
  }

  .category-entry {
    min-height: 58px !important;
    padding: 0 18px !important;
    justify-content: center !important;
    font-size: 22px !important;
  }

  .site-search {
    grid-column: 1 / -1 !important;
    display: grid !important;
    grid-template-columns: 92px minmax(0, 1fr) 68px !important;
    width: 100% !important;
    min-width: 0 !important;
  }

  .site-search input {
    min-width: 0 !important;
    width: 100% !important;
    font-size: 17px !important;
  }

  .cart-chip {
    display: none !important;
  }

  .commerce-shortcut-row {
    overflow: hidden !important;
  }

  .commerce-shortcut-row .menu-toggle {
    display: none !important;
  }

  .commerce-shortcuts {
    width: 100% !important;
    min-height: 52px !important;
    padding: 0 14px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    justify-content: flex-start !important;
    gap: 22px !important;
    scrollbar-width: none;
  }

  .commerce-shortcuts::-webkit-scrollbar {
    display: none;
  }

  .commerce-shortcuts a {
    flex: 0 0 auto !important;
    padding: 14px 0 12px !important;
    font-size: 20px !important;
  }

  .product-shell.coupang-search {
    width: 100% !important;
    max-width: 100% !important;
    grid-template-columns: 1fr !important;
    padding: 0 14px 44px !important;
    gap: 18px !important;
    box-sizing: border-box !important;
  }

  .product-filters,
  .recent-panel {
    display: none !important;
  }

  .product-results {
    width: 100% !important;
    min-width: 0 !important;
    padding-top: 18px !important;
    overflow: visible !important;
  }

  .search-summary {
    padding: 0 0 12px !important;
  }

  .search-summary h1 {
    font-size: 20px !important;
    line-height: 1.35 !important;
  }

  .search-summary a,
  .product-toolbar {
    display: none !important;
  }

  .commerce-list.coupang-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    justify-content: stretch !important;
    column-gap: 16px !important;
    row-gap: 32px !important;
    width: 100% !important;
  }

  .commerce-list.coupang-grid .commerce-card {
    width: 100% !important;
    min-width: 0 !important;
  }

  .commerce-list.coupang-grid .product-thumb {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 1 / 1 !important;
    margin-bottom: 10px !important;
  }

  .commerce-list.coupang-grid .product-info h2,
  .commerce-list.coupang-grid .product-info h2 a {
    min-height: 42px !important;
    font-size: 16px !important;
    line-height: 1.32 !important;
  }

  .commerce-list.coupang-grid .product-status,
  .commerce-list.coupang-grid .delivery-line,
  .commerce-list.coupang-grid .review-line,
  .commerce-list.coupang-grid .reward-line,
  .commerce-list.coupang-grid .rocket-badge {
    font-size: 12px !important;
  }

  .commerce-list.coupang-grid .buy-panel strong {
    display: block !important;
    font-size: 23px !important;
    line-height: 1.1 !important;
    letter-spacing: 0 !important;
  }
}

@media (max-width: 380px) {
  .commerce-list.coupang-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Mobile commerce hard stop: prevent header and tabs from overflowing */
@media (max-width: 820px) {
  .site-header,
  .commerce-topbar,
  .commerce-mainbar,
  .commerce-shortcut-row,
  .product-shell.coupang-search,
  .product-results,
  .commerce-list.coupang-grid {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  .commerce-mainbar {
    width: 100% !important;
    grid-template-columns: 1fr !important;
    padding: 18px 24px 16px !important;
    gap: 14px !important;
  }

  .commerce-mainbar .brand {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 30px !important;
  }

  .commerce-mainbar .brand > span:last-child {
    max-width: none !important;
  }

  .category-entry {
    display: none !important;
  }

  .site-search {
    grid-column: auto !important;
    width: 100% !important;
    height: 58px !important;
    grid-template-columns: 84px minmax(0, 1fr) 66px !important;
  }

  .site-search span,
  .site-search input,
  .site-search button {
    font-size: 18px !important;
  }

  .commerce-shortcut-row {
    width: 100% !important;
    border-top: 1px solid #eeeeee !important;
    border-bottom: 1px solid #d8d8d8 !important;
  }

  .commerce-shortcuts {
    width: 100% !important;
    padding: 0 24px !important;
    gap: 26px !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
  }

  .commerce-shortcuts a {
    font-size: 23px !important;
    line-height: 1 !important;
  }

  .product-shell.coupang-search {
    padding: 0 24px 44px !important;
  }

  .search-summary h1 {
    font-size: 24px !important;
    line-height: 1.35 !important;
    word-break: keep-all !important;
  }

  .commerce-list.coupang-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 30px 18px !important;
  }
}

/* Mobile commerce version */
@media (max-width: 820px) {
  body {
    background: #f5f6f8 !important;
  }

  .site-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 20 !important;
    background: #ffffff !important;
  }

  .commerce-topbar .wrap {
    width: 100% !important;
    padding: 8px 16px !important;
    justify-content: space-between !important;
    font-size: 13px !important;
    color: #555555 !important;
    box-sizing: border-box !important;
  }

  .commerce-mainbar {
    padding: 16px 16px 14px !important;
    background: #ffffff !important;
  }

  .commerce-mainbar .brand {
    gap: 10px !important;
    font-size: 28px !important;
    letter-spacing: -0.6px !important;
  }

  .brand-mark {
    width: 34px !important;
    height: 34px !important;
    border-width: 1px !important;
  }

  .site-search {
    height: 50px !important;
    border-width: 2px !important;
    grid-template-columns: 70px minmax(0, 1fr) 58px !important;
  }

  .site-search span,
  .site-search input,
  .site-search button {
    font-size: 16px !important;
  }

  .site-search input::placeholder {
    font-size: 16px !important;
  }

  .commerce-shortcut-row {
    background: #ffffff !important;
  }

  .commerce-shortcuts {
    min-height: 48px !important;
    padding: 0 16px !important;
    gap: 24px !important;
  }

  .commerce-shortcuts a {
    padding: 15px 0 13px !important;
    font-size: 18px !important;
    font-weight: 800 !important;
    color: #222222 !important;
  }

  .commerce-shortcuts a[aria-current="page"] {
    color: #111111 !important;
    box-shadow: inset 0 -3px 0 #111111 !important;
  }

  .product-shell.coupang-search {
    width: 100% !important;
    padding: 0 !important;
    background: #ffffff !important;
  }

  .product-results {
    padding: 0 !important;
    background: #ffffff !important;
  }

  .search-summary {
    padding: 22px 16px 18px !important;
    border-bottom: 8px solid #f1f2f4 !important;
  }

  .search-summary h1 {
    margin: 0 !important;
    font-size: 22px !important;
    line-height: 1.32 !important;
    letter-spacing: -0.7px !important;
  }

  .commerce-list.coupang-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    width: 100% !important;
    padding: 0 !important;
  }

  .commerce-list.coupang-grid .commerce-card {
    display: grid !important;
    grid-template-columns: 116px minmax(0, 1fr) !important;
    gap: 14px !important;
    width: 100% !important;
    min-width: 0 !important;
    padding: 16px !important;
    border: 0 !important;
    border-bottom: 1px solid #eeeeee !important;
    box-shadow: none !important;
    background: #ffffff !important;
    box-sizing: border-box !important;
  }

  .commerce-list.coupang-grid .product-thumb {
    width: 116px !important;
    height: 116px !important;
    aspect-ratio: auto !important;
    margin: 0 !important;
    border: 1px solid #eeeeee !important;
    background: #f8f8f8 !important;
  }

  .commerce-list.coupang-grid .product-thumb .app-icon {
    width: 78px !important;
    height: 78px !important;
    border-radius: 18px !important;
    font-size: 34px !important;
  }

  .rank-ribbon {
    width: 28px !important;
    height: 40px !important;
    font-size: 18px !important;
  }

  .commerce-list.coupang-grid .product-info {
    min-width: 0 !important;
  }

  .commerce-list.coupang-grid .product-info h2,
  .commerce-list.coupang-grid .product-info h2 a {
    min-height: auto !important;
    margin: 0 0 10px !important;
    font-size: 18px !important;
    line-height: 1.34 !important;
    font-weight: 500 !important;
    color: #111111 !important;
    text-decoration: none !important;
  }

  .commerce-list.coupang-grid .product-status {
    margin: 0 0 2px !important;
    font-size: 13px !important;
    color: #ae0000 !important;
  }

  .commerce-list.coupang-grid .buy-panel strong {
    display: block !important;
    margin: 0 0 4px !important;
    font-size: 28px !important;
    line-height: 1.05 !important;
    color: #ae0000 !important;
  }

  .commerce-list.coupang-grid .rocket-badge {
    margin: 0 0 6px !important;
    padding: 3px 6px !important;
    font-size: 12px !important;
  }

  .commerce-list.coupang-grid .delivery-line,
  .commerce-list.coupang-grid .review-line,
  .commerce-list.coupang-grid .reward-line {
    margin-top: 5px !important;
    font-size: 12px !important;
    line-height: 1.25 !important;
  }

  .footer {
    margin-top: 0 !important;
    background: #f5f6f8 !important;
  }

  .footer .wrap {
    padding: 32px 18px !important;
  }

  .footer-brand strong {
    font-size: 22px !important;
  }

  .footer-brand span {
    font-size: 16px !important;
    line-height: 1.4 !important;
  }
}
