::selection {
  background: rgba(102, 169, 255, 0.22);
  color: #18212c;
}

:root {
  --bg: #eef3fb;
  --bg-deep: #e7edf8;
  --panel: rgba(255, 255, 255, 0.68);
  --panel-strong: rgba(255, 255, 255, 0.84);
  --panel-soft: rgba(247, 250, 255, 0.74);
  --line: rgba(120, 146, 184, 0.18);
  --line-strong: rgba(120, 146, 184, 0.24);
  --text: #17212d;
  --muted: #617086;
  --muted-strong: #45566f;
  --accent: #4f8cff;
  --accent-strong: #2a6dff;
  --accent-soft: rgba(79, 140, 255, 0.12);
  --green: #2dbb73;
  --green-soft: rgba(45, 187, 115, 0.14);
  --shadow: 0 24px 60px rgba(60, 90, 140, 0.12);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 12% 14%, rgba(119, 187, 255, 0.22), transparent 24%),
    radial-gradient(circle at 86% 10%, rgba(255, 176, 138, 0.18), transparent 20%),
    linear-gradient(180deg, #f6f9ff 0%, var(--bg) 48%, var(--bg-deep) 100%);
  color: var(--text);
  font-family: "Noto Sans KR", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0)),
    linear-gradient(180deg, transparent 0%, rgba(210, 223, 242, 0.25) 100%);
  pointer-events: none;
}

body::after {
  position: fixed;
  inset: 0;
  z-index: -1;
  content: "";
  background-image:
    linear-gradient(rgba(102, 130, 168, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 130, 168, 0.04) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.82), transparent 96%);
}

.page-shell {
  width: min(1220px, calc(100% - 36px));
  margin: 0 auto;
  padding: 30px 0 72px;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.9), rgba(247, 250, 255, 0.76)),
    linear-gradient(135deg, rgba(79, 140, 255, 0.08), rgba(255, 255, 255, 0));
  box-shadow: var(--shadow);
  backdrop-filter: blur(28px) saturate(140%);
}

.hero::before {
  position: absolute;
  left: -120px;
  top: -120px;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(79, 140, 255, 0.15), transparent 68%);
}

.hero::after {
  position: absolute;
  right: -90px;
  top: 22px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(255, 176, 138, 0.16), transparent 70%);
}

.hero-main,
.filter-dock,
.dashboard-layout {
  position: relative;
  z-index: 1;
}

.eyebrow,
.panel-kicker,
.coupon-badge,
.coupon-expiry,
.meta-chip,
.quick-filter-title,
.control-group label,
.notice {
  font-family: "Sora", sans-serif;
}

.hero-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  margin-top: 4px;
}

.hero-copy {
  display: grid;
  gap: 14px;
  align-content: start;
  max-width: 100%;
  padding: 12px 10px 10px 6px;
}

.eyebrow,
.panel-kicker {
  margin: 0;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1,
.panel-heading h2,
.side-heading h2,
.coupon-code {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.hero h1 {
  max-width: none;
  font-size: clamp(2.6rem, 5vw, 4.1rem);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -0.06em;
}

.hero-subcopy {
  max-width: 72ch;
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.97rem;
}

.hero-status {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  width: fit-content;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  color: var(--muted);
  font-size: 0.78rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 6px rgba(45, 187, 115, 0.12);
}

.status-divider {
  width: 1px;
  height: 12px;
  background: rgba(122, 142, 174, 0.28);
}

.filter-dock {
  position: sticky;
  top: 12px;
  z-index: 30;
  margin-top: 16px;
}

.hero-filter-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 14px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.58);
  box-shadow: 0 18px 44px rgba(77, 111, 166, 0.14);
  backdrop-filter: blur(24px) saturate(155%);
}

.quick-filter-wrap {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.quick-filter-title {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.quick-filter-bar {
  display: grid;
  gap: 8px;
}

.quick-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quick-filter-button,
.ghost-button {
  border: 1px solid transparent;
  font: inherit;
}

.quick-filter-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 13px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.68);
  color: var(--muted-strong);
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.66);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.quick-filter-button:hover,
.ghost-button:hover {
  transform: translateY(-1px);
}

.quick-filter-button.is-active {
  border-color: rgba(79, 140, 255, 0.32);
  background: linear-gradient(180deg, rgba(90, 146, 255, 0.94), rgba(63, 120, 237, 0.96));
  color: #f8fbff;
  box-shadow: 0 8px 18px rgba(79, 140, 255, 0.22);
}

.control-group {
  display: grid;
  gap: 6px;
  align-content: start;
}

.control-group label {
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.control-group select {
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  font: inherit;
  font-size: 0.8rem;
}

.control-group select option {
  color: #1b2532;
  background: #f6faff;
}

.content {
  margin-top: 18px;
}

.dashboard-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.58fr) minmax(280px, 0.78fr);
  gap: 18px;
  align-items: start;
}

.panel {
  position: relative;
  overflow: hidden;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px) saturate(155%);
}

.panel::before {
  position: absolute;
  right: -58px;
  top: -48px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(79, 140, 255, 0.08), transparent 72%);
  pointer-events: none;
}

.panel-heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.panel-heading h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.panel-meta {
  margin: 0;
  max-width: 32ch;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.9rem;
}

.list-panel {
  scroll-margin-top: 136px;
}

.notice-stack {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.notice {
  padding: 12px 14px;
  border: 1px solid rgba(135, 156, 192, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.56);
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.55;
}

.notice.warn {
  border-color: rgba(255, 149, 0, 0.22);
  color: #8f6428;
}

.coupon-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.coupon-card {
  position: relative;
  overflow: hidden;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(247, 250, 255, 0.82)),
    linear-gradient(135deg, rgba(79, 140, 255, 0.06), transparent 52%);
  box-shadow: 0 18px 34px rgba(85, 112, 156, 0.12);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.coupon-card::before {
  position: absolute;
  left: 0;
  top: 0;
  width: 3px;
  height: 100%;
  content: "";
  background: linear-gradient(180deg, var(--accent), transparent 76%);
}

.coupon-card::after {
  position: absolute;
  right: -32px;
  bottom: -36px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  content: "";
  background: radial-gradient(circle, rgba(79, 140, 255, 0.1), transparent 72%);
}

.coupon-card:hover {
  transform: translateY(-2px);
  border-color: rgba(79, 140, 255, 0.24);
  box-shadow: 0 20px 42px rgba(79, 140, 255, 0.16);
}

.coupon-topline {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.coupon-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--green-soft);
  color: var(--green);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.coupon-expiry {
  color: var(--muted);
  font-size: 0.7rem;
}

.coupon-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  margin-top: 16px;
}

.coupon-value {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 92px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(88, 146, 255, 0.16), rgba(255, 255, 255, 0.84));
  color: var(--accent-strong);
  font-family: "Sora", sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.05em;
  text-align: center;
}

.coupon-copy {
  min-width: 0;
}

.coupon-code {
  font-size: 1.42rem;
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.coupon-threshold {
  display: inline-flex;
  align-items: center;
  margin: 10px 0 0;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(79, 140, 255, 0.1);
  color: var(--accent-strong);
  font-size: 0.79rem;
  font-weight: 600;
  line-height: 1.4;
}

.coupon-title {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.68;
}

.coupon-meta {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted-strong);
  font-size: 0.68rem;
  font-weight: 700;
}

.coupon-actions {
  position: relative;
  z-index: 1;
  display: flex;
  gap: 10px;
  margin-top: 18px;
}

.coupon-actions > * {
  flex: 1;
}

.ghost-button {
  min-height: 38px;
  border-radius: 12px;
  background: linear-gradient(180deg, #68a5ff, #3d7dff);
  color: #f8fbff;
  font-size: 0.84rem;
  font-weight: 700;
  box-shadow: 0 10px 18px rgba(61, 125, 255, 0.18);
  cursor: pointer;
}

.side-rail {
  display: grid;
  gap: 16px;
}

.side-heading h2 {
  font-size: 1.38rem;
  font-weight: 700;
}

.rail-metrics {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.rail-item {
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.56);
}

.rail-item span {
  color: var(--muted);
  font-size: 0.76rem;
}

.rail-item strong {
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.guide-list {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.7;
  font-size: 0.88rem;
}

.empty-state {
  padding: 42px 18px;
  border: 1px dashed rgba(120, 146, 184, 0.18);
  border-radius: 20px;
  color: var(--muted);
  text-align: center;
}

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

.primary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(57, 111, 225, 0.26);
  border-radius: 14px;
  background: linear-gradient(180deg, rgba(90, 146, 255, 0.96), rgba(63, 120, 237, 0.98));
  color: #f8fbff;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 26px rgba(79, 140, 255, 0.22);
  cursor: pointer;
}

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

.hero-search-panel {
  display: grid;
  gap: 10px;
  margin-top: 10px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.5);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero-search-copy {
  display: grid;
  gap: 8px;
}

.hero-search-copy h2 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.3rem, 2vw, 1.8rem);
  letter-spacing: -0.04em;
}

.hero-search-copy p:last-child {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.hero-search-controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.hero-search-controls input {
  width: 100%;
  min-height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(122, 142, 174, 0.22);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--text);
  font: inherit;
}

.hero-search-controls input::placeholder {
  color: rgba(97, 112, 134, 0.74);
}

.hero-search-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-search-chips span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(79, 140, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 600;
}

.shop-suite {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  align-items: start;
}

.theme-grid,
.product-grid,
.combo-grid {
  position: relative;
  z-index: 1;
}

.theme-grid {
  display: grid;
  gap: 12px;
}

.theme-card {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(248, 250, 255, 0.7));
  color: inherit;
  text-decoration: none;
  box-shadow: 0 18px 28px rgba(87, 120, 172, 0.08);
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.theme-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 34px rgba(87, 120, 172, 0.12);
}

.theme-card.is-active {
  border-color: rgba(79, 140, 255, 0.34);
  box-shadow: 0 18px 34px rgba(79, 140, 255, 0.18);
}

.theme-card-kicker {
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.theme-card-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1.12rem;
  letter-spacing: -0.04em;
}

.theme-card-copy {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 0.88rem;
}

.theme-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.theme-card-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(79, 140, 255, 0.08);
  color: var(--muted-strong);
  font-size: 0.72rem;
  font-weight: 600;
}

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

.product-card {
  display: grid;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 20px 34px rgba(87, 120, 172, 0.1);
}

.product-visual {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(238, 243, 251, 0.9), rgba(227, 237, 248, 0.85));
}

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

.product-theme-badge {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
  padding: 2px 6px;
  margin-bottom: 2px;
  margin-right: 6px;
  border-radius: 4px;
  background: rgba(23, 33, 45, 0.85);
  color: #f8fbff;
  font-size: 0.7rem;
  font-weight: 700;
  vertical-align: middle;
}

.product-body {
  display: grid;
  gap: 8px;
}

.product-meta,
.product-coupon-note,
.combo-copy,
.combo-price {
  margin: 0;
  color: var(--muted);
}

.product-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 0.9rem;
  line-height: 1.5;
  letter-spacing: -0.03em;
}

.product-pricing {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px;
}

.product-price,
.combo-coupon {
  font-family: "Sora", sans-serif;
}

.product-price {
  font-size: 1rem;
  font-weight: 700;
}

.product-original-price {
  color: rgba(97, 112, 134, 0.78);
  font-size: 0.84rem;
  text-decoration: line-through;
}

.product-meta,
.product-coupon-note {
  font-size: 0.84rem;
  line-height: 1.6;
}

.product-coupon-note {
  color: var(--accent-strong);
  font-weight: 600;
}

.product-actions {
  display: flex;
  gap: 10px;
}

.product-actions .ghost-button,
.combo-link {
  text-decoration: none;
}

.product-actions .ghost-button,
.combo-link,
.product-copy-link {
  min-height: 40px;
}

.search-panel .panel-meta,
.combo-panel .panel-meta,
.theme-panel .panel-meta {
  max-width: 28ch;
}

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

.combo-card {
  display: grid;
  gap: 12px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.74);
}

.combo-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.combo-theme {
  color: var(--muted-strong);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.combo-coupon {
  color: var(--accent-strong);
  font-size: 0.82rem;
  font-weight: 700;
}

.combo-title {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
}

@media (max-width: 1080px) {
  .shop-suite,
  .hero-main,
  .dashboard-layout,
  .coupon-grid,
  .combo-grid {
    grid-template-columns: 1fr;
  }
  
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (max-width: 760px) {
  .page-shell {
    width: min(100% - 18px, 1220px);
    padding-top: 18px;
  }

  .hero,
  .panel {
    padding: 18px;
    border-radius: 24px;
  }

  .hero h1 {
    max-width: none;
    font-size: 2.15rem;
  }

  .hero-subcopy {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero-search-panel {
    padding: 12px;
    border-radius: 20px;
  }

  .hero-search-controls {
    grid-template-columns: 1fr;
  }

  .filter-dock {
    top: 8px;
    z-index: 40;
  }

  .hero-filter-panel {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 8px;
    border-radius: 18px;
  }

  .quick-filter-title,
  .control-group label {
    display: none;
  }

  .quick-filter-bar {
    gap: 4px;
  }

  .quick-filter-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 4px;
  }

  .quick-filter-button {
    width: 100%;
    min-height: 30px;
    min-width: 0;
    padding: 0 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    line-height: 1.1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-align: center;
  }

  .control-group {
    width: 100%;
  }

  .control-group select {
    width: 100%;
    min-height: 32px;
    padding: 0 10px;
    border-radius: 10px;
    font-size: 0.74rem;
  }

  .list-panel {
    scroll-margin-top: 136px;
  }

  .product-actions {
    flex-direction: column;
  }

  .theme-card,
  .product-card,
  .combo-card {
    padding: 16px;
  }

  .coupon-main {
    grid-template-columns: 1fr;
  }

  .coupon-value {
    min-height: 72px;
  }

  .coupon-actions {
    flex-direction: column;
  }
}
