:root {
  --bg: #f7f8fa;
  --surface: #ffffff;
  --surface-soft: #f1f5f9;
  --text: #161d2d;
  --muted: #697386;
  --line: #e6e9ef;
  --orange: #f45112;
  --orange-soft: #fff1e8;
  --red: #ff2f45;
  --blue: #2489ff;
  --yellow: #f5b400;
  --green: #1eaa6b;
  --shadow: 0 10px 26px rgba(21, 31, 48, 0.1);
  --card-radius: 18px;
  font-family:
    Pretendard, "Noto Sans KR", Inter, "Apple SD Gothic Neo", "Malgun Gothic", system-ui,
    sans-serif;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

html {
  background: var(--bg);
  color: var(--text);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--bg);
  font-weight: 600;
  text-rendering: geometricPrecision;
}

button,
input,
select {
  font: inherit;
}

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

.app-shell {
  min-height: 100vh;
  padding-bottom: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  border-bottom: 1px solid rgba(226, 232, 240, 0.82);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(14px);
}

.header-inner,
.filter-bar,
.subcategory-scroller,
.main-content {
  width: min(100%, 1460px);
  margin: 0 auto;
  padding-inline: 18px;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  gap: 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(145deg, #ff351f, #ff8a00);
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(244, 81, 18, 0.28);
}

.brand strong {
  display: block;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.1;
}

.brand small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.header-actions {
  display: flex;
  gap: 8px;
}

.alert-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  border-radius: 999px;
  padding: 0 16px;
  color: #212529;
  font-size: 13px;
  font-weight: 950;
  box-shadow: 0 6px 14px rgba(21, 31, 48, 0.08);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.alert-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(21, 31, 48, 0.12);
}

.kakao-link {
  color: #1f2937;
  background: #fee500;
}

.kakao-link img,
.footer-kakao img,
.mobile-kakao-cta img {
  width: 18px;
  height: 18px;
  margin-right: 7px;
  object-fit: contain;
  flex: 0 0 auto;
}

.variant-back {
  color: #f45112;
  background: #fff1e8;
}

.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding-bottom: 12px;
  overflow: hidden;
}

.store-tabs {
  display: flex;
  gap: 8px;
  flex: 0 0 auto;
}

.category-scroller {
  display: flex;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  padding-bottom: 2px;
  scrollbar-width: none;
}

.category-scroller::-webkit-scrollbar {
  display: none;
}

.subcategory-scroller {
  display: flex;
  justify-content: center;
  gap: 7px;
  overflow-x: auto;
  padding: 0 0 12px;
  scrollbar-width: none;
}

.subcategory-scroller:empty {
  display: none;
}

.subcategory-scroller::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: 0 0 auto;
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 0 16px;
  color: #3d4656;
  background: #edf1f6;
  cursor: pointer;
  font-weight: 900;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease,
    color 160ms ease;
}

.chip:hover {
  transform: translateY(-1px);
  border-color: #d5dce8;
  background: #fff;
}

.chip.is-active {
  color: #fff;
  border-color: var(--orange);
  background: linear-gradient(135deg, #ff7a16, var(--orange));
  box-shadow: 0 6px 14px rgba(244, 81, 18, 0.18);
}

.favorite-chip:not(.is-active) {
  color: #d61f4d;
  background: #f3f5f8;
}

.store-coupang:not(.is-active) {
  color: var(--red);
  background: #fff3f4;
}

.subcategory-chip {
  min-height: 30px;
  padding: 0 12px;
  color: #657083;
  background: #fff;
  border-color: #dde3ec;
  font-size: 13px;
}

.subcategory-chip.is-active {
  color: #f45112;
  background: #fff5ee;
  border-color: #ffc9a8;
  box-shadow: none;
}

.disclosure {
  display: flex;
  justify-content: center;
  padding: 9px 18px;
  color: #5f6878;
  background: #eef1f5;
  font-size: 13px;
  text-align: center;
}

.main-content {
  padding-top: 32px;
}

.hero {
  display: grid;
  justify-items: center;
  gap: 10px;
  margin-bottom: 24px;
  text-align: center;
}

.hero-kicker {
  margin: 0;
  color: var(--orange);
  font-size: 15px;
  font-weight: 900;
}

.hero h1 {
  margin: 0;
  font-size: clamp(28px, 4vw, 42px);
  letter-spacing: 0;
  line-height: 1.2;
}

.hero-copy {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 16px;
}

.metric-strip {
  display: flex;
  justify-content: center;
  gap: 8px;
  width: min(100%, 620px);
  margin: 2px 0 8px;
}

.metric-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid #e1e7f0;
  border-radius: 999px;
  padding: 0 12px;
  color: #697386;
  background: #fff;
  font-size: 12px;
  font-weight: 850;
  box-shadow: 0 2px 8px rgba(21, 31, 48, 0.04);
}

.metric-strip strong {
  margin-right: 5px;
  color: #111827;
  font-weight: 950;
}

.top-picks {
  margin-bottom: 22px;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

.compact-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
}

.compact-heading p {
  margin: 0 0 4px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 950;
}

.compact-heading span {
  color: #7a4a2b;
  font-size: 12px;
  font-weight: 950;
}

.top-picks-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.search-box {
  display: flex;
  align-items: center;
  width: min(100%, 520px);
  min-height: 48px;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 18px;
  background: #fff;
  box-shadow: 0 2px 9px rgba(20, 25, 35, 0.04);
}

.search-box span {
  color: var(--blue);
  font-size: 0;
}

.search-box span::before {
  content: "⌕";
  font-size: 22px;
  font-weight: 900;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font-weight: 700;
}

.search-box input::placeholder {
  color: #99a2b2;
}

.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.result-count {
  margin: 0;
  color: #4d5668;
  font-weight: 900;
}

.sort-select {
  height: 42px;
  min-width: 154px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 36px 0 13px;
  color: #334155;
  background: #fff;
  font-weight: 800;
}

.section-heading {
  margin-bottom: 10px;
}

.section-heading h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 950;
}

.recent-section {
  margin-bottom: 22px;
}

.recent-list {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.recent-list::-webkit-scrollbar {
  display: none;
}

.recent-card {
  display: grid;
  width: 180px;
  flex: 0 0 180px;
  gap: 7px;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 10px;
  background: #fff;
  box-shadow: 0 3px 12px rgba(21, 31, 48, 0.05);
}

.recent-card img {
  width: 70px;
  height: 70px;
  object-fit: contain;
}

.recent-card strong {
  display: -webkit-box;
  overflow: hidden;
  color: #111827;
  font-size: 12px;
  line-height: 1.35;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.recent-card span {
  color: var(--orange);
  font-size: 14px;
  font-weight: 900;
}

.deals-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.deal-card {
  position: relative;
  display: flex;
  min-height: 202px;
  gap: 14px;
  border: 1px solid #e7ebf0;
  border-radius: 18px;
  padding: 15px;
  background: var(--surface);
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(21, 31, 48, 0.07);
  transition:
    transform 180ms cubic-bezier(0.2, 0.85, 0.25, 1.15),
    box-shadow 180ms ease,
    border-color 180ms ease,
    background-color 180ms ease;
}

.deal-card:hover,
.deal-card:has(a:hover),
.deal-card.is-hovered {
  transform: translateY(-6px) scale(1.018);
  border-color: #ffb178;
  background: #fffaf6;
  box-shadow: 0 16px 34px rgba(21, 31, 48, 0.13);
}

.deal-card:active,
.deal-card:has(a:active) {
  transform: translateY(-2px) scale(0.995);
}

.deal-media {
  position: relative;
  width: 142px;
  height: 142px;
  flex: 0 0 142px;
  align-self: center;
}

.favorite-button {
  position: absolute;
  top: -7px;
  right: -9px;
  z-index: 2;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: transparent;
  background:
    radial-gradient(circle at 32% 26%, rgba(255, 255, 255, 1), rgba(255, 255, 255, 0.9) 54%, rgba(246, 240, 255, 0.82)),
    #fff;
  cursor: pointer;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
  box-shadow:
    0 8px 18px rgba(21, 31, 48, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition:
    transform 160ms cubic-bezier(0.2, 0.85, 0.25, 1.18),
    background 160ms ease,
    box-shadow 160ms ease;
}

.favorite-button::before {
  content: "♥";
  background: linear-gradient(145deg, #fdf7ff 8%, #d8b8f6 46%, #a777d8 86%);
  background-clip: text;
  color: transparent;
  -webkit-background-clip: text;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.9)) drop-shadow(0 2px 3px rgba(113, 79, 145, 0.18));
  transform: translateY(1px);
}

.favorite-button:hover {
  transform: translateY(-2px) scale(1.06);
  box-shadow:
    0 12px 24px rgba(21, 31, 48, 0.17),
    0 0 0 3px rgba(167, 119, 216, 0.08);
}

.favorite-button.is-favorite {
  background:
    radial-gradient(circle at 32% 26%, #fff, #fff3f5 58%, #ffe7ec),
    #fff;
}

.favorite-button.is-favorite::before {
  background: linear-gradient(145deg, #ff8ca0 8%, #ff2f45 48%, #c9122f 88%);
  background-clip: text;
  -webkit-background-clip: text;
  filter: drop-shadow(0 1px 0 rgba(255, 255, 255, 0.9)) drop-shadow(0 2px 3px rgba(201, 18, 47, 0.22));
}

.favorite-button:active {
  transform: scale(0.92);
}

.deal-image-wrap {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 14px;
  background: #fff;
}

.deal-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: scale(1.08);
  transform-origin: center;
  transition: transform 180ms ease;
}

.deal-card:hover .deal-image-wrap img,
.deal-card:has(a:hover) .deal-image-wrap img,
.deal-card.is-hovered .deal-image-wrap img {
  transform: scale(1.13);
}

.deal-body {
  display: grid;
  min-width: 0;
  flex: 1;
  align-content: start;
  gap: 7px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 23px;
}

.badge {
  display: inline-flex;
  align-items: center;
  height: 24px;
  border-radius: 7px;
  padding: 0 8px;
  color: #fff;
  font-size: 11px;
  font-weight: 900;
}

.badge.coupang {
  background: var(--red);
}

.badge.rocket {
  background: var(--blue);
}

.badge.shipping {
  color: #116b48;
  background: #dff8eb;
}

.badge.enriched {
  color: #fff;
  background: #7c3aed;
}

.badge.promo {
  color: #7a2e0e;
  background: #fff0d6;
}

.badge.judge {
  color: #fff;
  background: #111827;
}

.badge.keyword {
  color: #6b4f00;
  background: #fff0b8;
}

.deal-title {
  display: -webkit-box;
  min-height: 50px;
  overflow: hidden;
  color: #101828;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.34;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  transition: color 180ms ease;
}

.price-line {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  min-height: 22px;
}

.original-price {
  color: #9aa3b2;
  font-size: 14px;
  font-weight: 800;
  text-decoration: line-through;
}

.discount {
  color: var(--red);
  font-size: 18px;
  font-weight: 900;
  transition: color 180ms ease;
}

.rating {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: #f3aa00;
  font-size: 14px;
  font-weight: 900;
}

.rating-star {
  color: #f5b400;
  font-size: 17px;
  line-height: 1;
  -webkit-text-stroke: 0.45px #d89800;
  text-shadow:
    0 0 0 #d89800,
    0 1px 0 rgba(152, 101, 0, 0.18);
}

.rating strong {
  color: #f0a800;
  font-weight: 900;
}

.rating em {
  color: #8791a4;
  font-style: normal;
  font-weight: 750;
}

.current-price {
  color: var(--orange);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.deal-card:hover .deal-title,
.deal-card:has(a:hover) .deal-title,
.deal-card.is-hovered .deal-title,
.deal-body:hover .deal-title,
.deal-title:hover {
  color: var(--orange);
}

.deal-card:hover .current-price,
.deal-card:has(a:hover) .current-price,
.deal-card.is-hovered .current-price,
.deal-body:hover .current-price {
  color: #e63f08;
  transform: translateX(2px);
}

.deal-card:hover .discount,
.deal-card:has(a:hover) .discount,
.deal-card.is-hovered .discount,
.deal-body:hover .discount {
  color: #ff2638;
}

.unit-line {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  padding: 4px 8px;
  color: #455065;
  background: #f3f5f8;
  font-size: 12px;
  font-weight: 950;
}

.verdict-line {
  margin: 0;
  color: #405069;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.deal-detail-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 26px;
}

.deal-detail-row > span:not(.unit-line) {
  display: inline-flex;
  border-radius: 999px;
  padding: 4px 8px;
  color: #647086;
  background: #f3f5f8;
  font-size: 12px;
  font-weight: 950;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  min-height: 21px;
}

.trust-tag {
  display: inline-flex;
  align-items: center;
  height: 21px;
  border: 1px solid #ffe1cf;
  border-radius: 999px;
  padding: 0 7px;
  color: #d9470f;
  background: #fff8f3;
  font-size: 11px;
  font-weight: 900;
}

.progress-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.progress-track {
  width: 104px;
  height: 9px;
  overflow: hidden;
  border-radius: 999px;
  background: #eff1f5;
}

.progress-fill {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--blue);
}

.progress-fill.hot {
  background: var(--orange);
}

.sell-rate {
  color: #657085;
  font-size: 13px;
  font-weight: 950;
}

.progress-row.is-placeholder .progress-fill {
  background: var(--blue);
}

.deal-card.is-compact {
  min-height: 202px;
  border-color: #ffd9c6;
  background: #fff;
}

.deal-card.is-compact:hover,
.deal-card.is-compact:has(a:hover),
.deal-card.is-compact.is-hovered {
  border-color: #ffb178;
  background: #fffaf6;
  box-shadow: 0 16px 34px rgba(21, 31, 48, 0.13);
}

.deal-card.is-compact .deal-media,
.deal-card.is-compact .deal-image-wrap {
  width: 142px;
  height: 142px;
  flex-basis: 142px;
}

.deal-card.is-compact .deal-title {
  min-height: 50px;
  font-size: 18px;
}

.deal-card.is-compact .current-price {
  font-size: 28px;
}

.numeric-variant .site-header {
  background: rgba(255, 255, 255, 0.94);
}

.numeric-variant .hero {
  margin-bottom: 28px;
}

.numeric-variant .hero-kicker,
.numeric-variant .compact-heading p {
  color: #d9470f;
}

.numeric-variant .hero h1 {
  max-width: 920px;
}

.numeric-variant .top-picks {
  border-color: #ffcba8;
  background: linear-gradient(180deg, #fff7f1, #fff);
}

.numeric-variant .deal-card {
  border-color: #dfe5ee;
  box-shadow: 0 3px 12px rgba(21, 31, 48, 0.07);
}

.numeric-variant .deal-card:hover {
  border-color: #ffb384;
}

.numeric-variant .current-price {
  font-size: 30px;
}

.numeric-variant .verdict-line {
  color: #253044;
  font-size: 13px;
}

.numeric-variant .trust-tag {
  color: #243047;
  border-color: #dfe5ee;
  background: #f7f9fc;
}

.numeric-variant .deal-detail-row > span:not(.unit-line),
.numeric-variant .unit-line {
  color: #566174;
  background: #eef2f7;
}

.empty-state {
  display: grid;
  place-items: center;
  min-height: 220px;
  border: 1px dashed #d6dce8;
  border-radius: 18px;
  color: var(--muted);
  background: #fff;
  text-align: center;
}

.empty-state strong {
  color: var(--text);
  font-size: 18px;
}

.alert-cta {
  display: grid;
  justify-items: center;
  gap: 12px;
  margin: 52px 0 72px;
  border-radius: 20px;
  padding: 42px 24px;
  color: #fff;
  background: linear-gradient(135deg, #ff6a00 0%, #ff3b21 54%, #ff2f45 100%);
  text-align: center;
  box-shadow: 0 16px 38px rgba(244, 81, 18, 0.2);
}

.alert-cta p {
  margin: 0;
  font-size: 16px;
  font-weight: 950;
}

.alert-cta h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 950;
  letter-spacing: 0;
}

.alert-cta span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  font-weight: 850;
}

.alert-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border-radius: 999px;
  padding: 0 28px;
  color: #1f2937;
  font-size: 16px;
  font-weight: 950;
  box-shadow: 0 10px 24px rgba(21, 31, 48, 0.18);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease;
}

.alert-cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(21, 31, 48, 0.22);
}

.site-footer {
  display: grid;
  justify-items: center;
  gap: 10px;
  border-top: 1px solid #e9edf3;
  padding: 40px 18px 56px;
  color: #6b7280;
  background: #f5f7fa;
  text-align: center;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #111827;
}

.footer-brand .brand-mark {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  font-size: 14px;
}

.footer-brand strong {
  font-size: 18px;
  font-weight: 950;
}

.site-footer p {
  margin: 0;
  font-weight: 850;
}

.footer-kakao {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #263238;
  font-weight: 950;
}

.site-footer small {
  width: min(100%, 1120px);
  border-top: 1px solid #dfe5ee;
  padding-top: 14px;
  font-size: 12px;
}

.mobile-kakao-cta {
  display: none;
}

@media (max-width: 1100px) {
  .deals-grid,
  .top-picks-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .deal-card {
    min-height: 214px;
    gap: 16px;
  }

  .deal-media,
  .deal-image-wrap {
    width: 150px;
    height: 150px;
    flex-basis: 150px;
  }

  .deal-title {
    min-height: 50px;
    font-size: 18px;
  }

  .current-price {
    font-size: 28px;
  }
}

@media (max-width: 760px) {
  .app-shell {
    padding-bottom: 76px;
  }

  .header-inner {
    min-height: 66px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    display: none;
  }

  .alert-link {
    min-height: 34px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .filter-bar {
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }

  .category-scroller {
    justify-content: center;
    width: 100%;
  }

  .subcategory-scroller {
    justify-content: center;
    padding-bottom: 10px;
  }

  .main-content {
    padding-top: 24px;
  }

  .hero {
    justify-items: stretch;
    text-align: left;
  }

  .numeric-variant .hero {
    justify-items: center;
    text-align: center;
  }

  .hero h1 {
    font-size: 27px;
  }

  .metric-strip {
    flex-wrap: wrap;
  }

  .search-box {
    width: 100%;
  }

  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .compact-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .sort-select {
    width: 100%;
  }

  .deals-grid,
  .top-picks-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(7px, 2vw, 10px);
  }

  .deal-card {
    flex-direction: column;
    min-height: 0;
    gap: 7px;
    border-radius: 14px;
    padding: clamp(6px, 2vw, 8px);
  }

  .favorite-button {
    top: -4px;
    right: -4px;
    width: clamp(23px, 6.4vw, 27px);
    height: clamp(23px, 6.4vw, 27px);
    font-size: clamp(13px, 3.8vw, 15px);
    box-shadow:
      0 6px 13px rgba(21, 31, 48, 0.13),
      inset 0 1px 0 rgba(255, 255, 255, 0.9);
  }

  .deal-media,
  .deal-image-wrap,
  .deal-card.is-compact .deal-image-wrap {
    width: 100%;
    height: auto;
    flex: 0 0 auto;
    align-self: stretch;
    aspect-ratio: 1 / 1;
  }

  .deal-image-wrap,
  .deal-card.is-compact .deal-image-wrap {
    border-radius: 10px;
  }

  .deal-body {
    gap: 4px;
  }

  .badges {
    gap: 3px;
    min-height: 18px;
  }

  .badge {
    height: 18px;
    border-radius: 5px;
    padding-inline: 4px;
    font-size: clamp(8px, 2.35vw, 9px);
  }

  .deal-title,
  .deal-card.is-compact .deal-title {
    min-height: 34px;
    font-size: clamp(11px, 3.25vw, 13px);
    line-height: 1.28;
  }

  .price-line {
    gap: 3px 4px;
    min-height: 18px;
  }

  .original-price {
    font-size: clamp(9px, 2.6vw, 11px);
  }

  .discount {
    font-size: clamp(11px, 3vw, 13px);
  }

  .rating {
    gap: 2px;
    font-size: clamp(9px, 2.6vw, 11px);
  }

  .rating-star {
    font-size: clamp(11px, 3vw, 13px);
    -webkit-text-stroke-width: 0.32px;
  }

  .rating em {
    display: none;
  }

  .current-price,
  .deal-card.is-compact .current-price {
    font-size: clamp(16px, 4.8vw, 20px);
    line-height: 1.1;
  }

  .deal-detail-row {
    gap: 4px;
  }

  .deal-detail-row > span:not(.unit-line) {
    display: none;
  }

  .unit-line,
  .sell-rate,
  .verdict-line {
    padding-inline: 5px;
    font-size: clamp(9px, 2.6vw, 11px);
  }

  .progress-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
    margin-top: 1px;
  }

  .progress-track {
    width: 100%;
    height: 7px;
  }

  .alert-cta {
    margin: 36px 0 48px;
    border-radius: 18px;
    padding: 30px 18px;
  }

  .alert-cta p {
    font-size: 14px;
  }

  .alert-cta span {
    font-size: 13px;
  }

  .alert-cta-button {
    width: 100%;
    min-height: 46px;
  }

  .mobile-kakao-cta {
    position: fixed;
    left: 14px;
    right: 14px;
    bottom: 14px;
    z-index: 30;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    border-radius: 999px;
    color: #1f2937;
    background: #fee500;
    font-size: 15px;
    font-weight: 950;
    box-shadow: 0 12px 26px rgba(21, 31, 48, 0.2);
  }
}

@media (max-width: 430px) {
  .header-inner,
  .filter-bar,
  .subcategory-scroller,
  .main-content {
    padding-inline: 12px;
  }

  .filter-bar {
    align-items: flex-start;
  }

  .category-scroller,
  .subcategory-scroller {
    justify-content: flex-start;
  }

  .deals-grid,
  .top-picks-list {
    gap: 7px;
  }
}
