:root {
  --bg: #f7f4ef;
  --bg-soft: #fcfaf7;
  --panel: #ffffff;
  --line: rgba(34, 34, 34, 0.08);
  --text: #1e1d1b;
  --muted: #6c675f;
  --accent: #6d533d;
  --accent-soft: #f1e5d8;
  --accent-strong: #2e241d;
  --shadow: 0 18px 44px rgba(40, 28, 18, 0.08);
  --shadow-strong: 0 26px 58px rgba(40, 28, 18, 0.12);
  --radius-xl: 30px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --container: 1240px;
  --section-v: 56px;
  --gutter: 20px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--text);
  font-family: "Inter", "Noto Sans KR", system-ui, sans-serif;
  background:
    radial-gradient(circle at top left, rgba(202, 177, 150, 0.12), transparent 22%),
    linear-gradient(180deg, #f9f7f3 0%, #f7f4ef 52%, #f2ede6 100%);
}

a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
.container { width: min(calc(100% - 40px), var(--container)); margin: 0 auto; }

.top-bar {
  background: #1f1a17;
  color: rgba(255, 255, 255, 0.84);
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.top-bar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px 28px;
  flex-wrap: wrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(249, 247, 243, 0.9);
  border-bottom: 1px solid rgba(34, 34, 34, 0.06);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.brand small {
  font-size: 0.72rem;
  color: var(--muted);
  margin-left: 6px;
}
.site-nav {
  display: flex;
  gap: 22px;
  color: var(--muted);
  font-size: 0.95rem;
}
.site-nav a:hover { color: var(--text); }

.header-cta,
.btn {
  min-height: 54px;
  padding: 0 24px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}
.header-cta,
.btn-primary {
  background: var(--accent-strong);
  color: #fff;
  box-shadow: 0 12px 24px rgba(46, 36, 29, 0.16);
}
.btn-secondary {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--text);
}
.header-cta:hover,
.btn:hover { transform: translateY(-1px); }

.hero { padding: 36px 0 var(--section-v); }
.hero-grid,
.intro-grid,
.trust-grid,
.footer-inner { display: grid; gap: 30px; }
.hero-grid-v63,
.hero-grid {
  grid-template-columns: minmax(0, 1.12fr) minmax(430px, 0.88fr);
  align-items: start;
  gap: clamp(20px, 2.5vw, 36px);
}

.hero-visual-block {
  display: grid;
  gap: 16px;
  align-content: start;
}
.hero-main-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}
.hero-main-card-v63 {
  background: linear-gradient(180deg, #fffdf9, #f8f2ea);
}
.hero-main-card-v63 img {
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.hero-badge {
  position: absolute;
  left: 18px;
  top: 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
}

.hero-desc-block {
  display: grid;
  gap: 16px;
}
.brand-intro-card-v63 {
  padding: 20px 22px 18px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(34, 34, 34, 0.08);
}

.feature-collage {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  padding: 10px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0 8px 18px rgba(40, 28, 18, 0.05);
}
.feature-collage img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 10px;
}

.hero-copy-v63 { display: grid; gap: 16px; align-content: start; }

.feature-collage-right {
  margin-bottom: 2px;
}

.feature-collage-right img {
  aspect-ratio: 1 / 1;
}

@media (min-width: 1181px) {
  .hero-copy-v63 {
    padding-top: 10px;
  }
}

.brand-kicker {
  display: inline-block;
  margin-bottom: 8px;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  color: var(--accent);
}
.eyebrow {
  margin: 0;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
h1, h2, p, ul { margin-top: 0; }
h1 {
  margin-bottom: 12px;
  font-size: clamp(2.2rem, 3.8vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
h2 {
  margin-bottom: 14px;
  font-size: clamp(1.8rem, 2.6vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.04em;
  white-space: pre-line;
}
p,
li,
summary,
span { line-height: 1.78; }
.subtitle {
  color: var(--muted);
  font-size: 1.01rem;
  margin-bottom: 0;
}

.rating-row,
.cta-group,
.note-row,
.price-line {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}
.rating-row { color: var(--muted); margin-bottom: 2px; }
.stars { letter-spacing: 0.12em; color: #d29d37; }

.price-panel-premium {
  padding: 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(248,242,234,0.96));
  border: 1px solid rgba(109, 83, 61, 0.14);
  box-shadow: var(--shadow-strong);
}
.price-panel-head {
  display: grid;
  gap: 6px;
  margin-bottom: 18px;
}
.price-panel-kicker {
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  color: var(--accent);
}
.price-panel-head strong {
  font-size: 1.25rem;
}
.price-panel-sub {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.price-card-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, 1fr);
}
.price-card {
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 18px 18px;
  box-shadow: 0 10px 22px rgba(40,28,18,0.05);
}
.price-card.featured {
  border-color: rgba(109,83,61,0.26);
  background: linear-gradient(180deg, #fffdf9, #fbf4eb);
}
.pack-label {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.price-line { justify-content: flex-start; }
.price-line del { color: #a59b91; font-size: 0.98rem; }
.price-line strong { font-size: 1.95rem; line-height: 1.1; color: var(--accent-strong); }
.price-card p { margin: 8px 0 0; color: var(--muted); }

.selling-points {
  padding-left: 18px;
  color: var(--muted);
  margin: 20px 0 0;
}

.cta-group { margin-top: 16px; }
.note-row { margin-top: 6px; color: var(--muted); font-size: 0.92rem; }

.trust-strip,
.section {
  padding: var(--section-v) 0;
}
.trust-strip {
  position: relative;
}
.trust-strip::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(109, 83, 61, 0.2), transparent);
}

.trust-grid {
  grid-template-columns: repeat(3, 1fr);
}
.trust-item,
.faq-item {
  background: rgba(255,255,255,0.84);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
.trust-item { padding: 24px; }
.trust-item strong { display: block; margin-bottom: 8px; }
.trust-item p { margin-bottom: 0; color: var(--muted); }

.intro-block {
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.35));
}

.intro-grid {
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 28px;
}
.section-head { margin-bottom: 22px; }
.centered { text-align: center; }

.detail-stack {
  display: grid;
  gap: 0;
  width: min(100%, 920px);
  margin: 0 auto;
}
.detail-card {
  overflow: hidden;
  padding: 0;
  margin: 0;
  border-radius: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  line-height: 0;
  font-size: 0;
}
.detail-card img {
  display: block;
  border-radius: 0;
  width: 100%;
  vertical-align: top;
}

.review-showcase {
  background: linear-gradient(180deg, rgba(255,255,255,0.22), rgba(255,255,255,0.4));
}

.version-corner-badge {
  width: fit-content;
  margin: 0 auto 18px;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #6d533d, #8d6a49);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  box-shadow: 0 12px 24px rgba(109,83,61,0.18);
}

.review-showcase-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  width: min(100%, 820px);
  margin: 0 auto;
}

.review-shot-card {
  margin: 0;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,0.94);
  box-shadow: var(--shadow);
  padding: 12px;
}

.review-shot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.review-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.review-stars {
  color: #d29d37;
  letter-spacing: 0.16em;
  font-size: 0.95rem;
  font-weight: 800;
  white-space: nowrap;
}

.review-shot-card img {
  width: 100%;
  max-width: 560px;
  height: 132px;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  display: block;
}

.review-shot-card figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.92rem;
}

.review-showcase-note {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.94rem;
}

.narrow { width: min(calc(100% - 40px), 860px); }
.faq-list { display: grid; gap: 14px; }
.faq-item { padding: 20px 22px; }
.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { margin: 10px 0 0; color: var(--muted); }

.site-footer {
  padding: 24px 0 36px;
  border-top: 1px solid rgba(34,34,34,0.06);
}
.footer-inner {
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
}
.footer-inner p { margin-bottom: 0; color: var(--muted); }

@media (max-width: 1180px) {
  .hero-grid-v63,
  .hero-grid,
  .intro-grid,
  .trust-grid,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .hero-main-card-v63 img {
    max-height: 460px;
  }

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

  .trust-strip,
  .section {
    padding: 48px 0;
  }
}

@media (max-width: 760px) {
  .site-header { position: static; }
  .header-inner {
    min-height: auto;
    padding: 14px 0;
    flex-wrap: wrap;
  }
  .site-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    gap: 16px;
  }

  .cta-group,
  .note-row {
    flex-direction: column;
    align-items: stretch;
  }

  .btn,
  .header-cta { width: 100%; }

  .hero-main-card-v63 img { max-height: 420px; }

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

  .review-showcase-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero { padding-top: 24px; }
  .hero-copy-v63 {
    gap: 14px;
  }
}

@media (max-width: 560px) {
  .container,
  .narrow { width: min(calc(100% - 28px), var(--container)); }

  .top-bar-inner { padding: 8px 0; gap: 8px 14px; }
  .price-card,
  .trust-item,
  .faq-item,
  .brand-intro-card-v63,
  .price-panel-premium { padding: 16px; }

  .feature-collage {
    grid-template-columns: 1fr 1fr;
  }
  h1 { font-size: 2.3rem; }
  h2 { font-size: 1.6rem; }
  .detail-stack { width: min(100%, 100%); }
  .hero-main-card-v63 img { max-height: 350px; }
  .review-shot-card img { height: 108px; }
  .review-shot-head { align-items: flex-start; flex-direction: column; }
}



/* V8.2 luxury polish without layout changes */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  background:
    radial-gradient(circle at top left, rgba(202, 177, 150, 0.10), transparent 22%),
    radial-gradient(circle at 82% 10%, rgba(214, 190, 160, 0.10), transparent 18%),
    linear-gradient(180deg, #fbf9f6 0%, #f7f4ef 48%, #f2ece4 100%);
}

.site-header {
  backdrop-filter: blur(18px);
  background: rgba(251, 248, 243, 0.82);
  border-bottom: 1px solid rgba(34, 34, 34, 0.05);
  box-shadow: 0 8px 24px rgba(40, 28, 18, 0.04);
}

.site-nav a {
  position: relative;
  padding: 8px 0;
  transition: color 0.22s ease, opacity 0.22s ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(109, 83, 61, 0.9), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.24s ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--text);
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a:target::after {
  transform: scaleX(1);
}

.header-cta,
.btn {
  letter-spacing: 0.02em;
  font-weight: 700;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease;
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #2c231d 0%, #5a4536 54%, #7c6149 100%);
  box-shadow: 0 16px 30px rgba(46, 36, 29, 0.16);
}

.header-cta:hover,
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(46, 36, 29, 0.20);
}

.btn-secondary {
  background: rgba(255,255,255,0.76);
  backdrop-filter: blur(10px);
}

.hero-main-card,
.brand-intro-card-v63,
.feature-collage,
.price-panel-premium,
.price-card,
.review-shot-card,
.trust-item,
.faq-item {
  position: relative;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease, background 0.24s ease;
}

.hero-main-card::after,
.brand-intro-card-v63::after,
.feature-collage::after,
.price-panel-premium::after,
.price-card::after,
.review-shot-card::after,
.trust-item::after,
.faq-item::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  border: 1px solid rgba(255,255,255,0.40);
}

.hero-main-card {
  box-shadow: 0 22px 54px rgba(40, 28, 18, 0.09);
}

.brand-intro-card-v63,
.feature-collage,
.trust-item,
.faq-item,
.review-shot-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.88), rgba(255,255,255,0.72));
  box-shadow: 0 14px 30px rgba(40, 28, 18, 0.06);
}

.rating-row {
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(109,83,61,0.10);
  box-shadow: 0 10px 24px rgba(40, 28, 18, 0.05);
}

.stars,
.review-stars {
  color: #c79b4d;
  text-shadow: 0 1px 0 rgba(255,255,255,0.35);
}

.price-panel-premium {
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(247,240,232,0.96));
  box-shadow: 0 28px 58px rgba(40, 28, 18, 0.12);
}

.price-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(251,247,242,0.90));
  box-shadow: 0 14px 24px rgba(40, 28, 18, 0.05);
}

.price-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 24px 38px rgba(40, 28, 18, 0.11);
  border-color: rgba(109,83,61,0.16);
}

.price-card.featured {
  background: linear-gradient(180deg, #fffdf9, #f6ede2);
  border-color: rgba(186, 145, 88, 0.26);
}

.pack-label,
.review-chip {
  background: linear-gradient(180deg, #f4e8dc, #eddcc9);
  color: #6b4f37;
}

.review-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at top center, rgba(214, 190, 160, 0.08), transparent 34%);
}

.review-showcase-note span,
.note-row span {
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.72);
  border: 1px solid rgba(109,83,61,0.10);
}

.section-head h2,
h1 {
  letter-spacing: -0.045em;
}

section[id],
div[id] {
  scroll-margin-top: 110px;
}


/* V8.3 interaction refinement */
.site-nav {
  gap: 24px;
}

.site-nav a {
  font-weight: 600;
  opacity: 0.88;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  opacity: 1;
}

.brand {
  letter-spacing: 0.14em;
}

.brand small {
  color: var(--accent);
  font-weight: 700;
}

.header-cta,
.btn-primary {
  position: relative;
  overflow: hidden;
}

.header-cta::before,
.btn-primary::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.18), transparent 42%);
  pointer-events: none;
}

.header-cta:hover,
.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

.btn-secondary:hover {
  border-color: rgba(109,83,61,0.16);
  box-shadow: 0 16px 28px rgba(40, 28, 18, 0.08);
  background: rgba(255,255,255,0.92);
}

.hero-badge,
.version-corner-badge {
  backdrop-filter: blur(10px);
}

.hero-main-card img,
.feature-collage img,
.review-shot-card img {
  transition: transform 0.4s ease, filter 0.3s ease;
}

.hero-main-card:hover img,
.feature-collage:hover img,
.review-shot-card:hover img {
  transform: scale(1.018);
}

.brand-intro-card-v63:hover,
.review-shot-card:hover,
.trust-item:hover,
.faq-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(40, 28, 18, 0.09);
}

.price-panel-head strong {
  letter-spacing: -0.03em;
}

.price-line strong {
  letter-spacing: -0.04em;
}

.price-card {
  overflow: hidden;
}

.price-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.20), transparent 36%);
  opacity: 0;
  transition: opacity 0.22s ease;
  pointer-events: none;
}

.price-card:hover::before {
  opacity: 1;
}

.price-card.featured {
  transform: translateY(-1px);
}

.price-card.featured:hover {
  transform: translateY(-6px);
}

.review-shot-card {
  backdrop-filter: blur(8px);
}

.review-showcase-note {
  margin-top: 20px;
}

.faq-item summary {
  transition: color 0.2s ease;
}

.faq-item:hover summary {
  color: var(--accent-strong);
}


/* V8.4 luxury finishing */
:root {
  --line-soft: rgba(109, 83, 61, 0.08);
  --panel-luxury: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,244,237,0.88));
}

.top-bar {
  background: linear-gradient(90deg, #181311, #241d19 48%, #181311);
  color: rgba(255,255,255,0.82);
}

.brand,
h1,
h2,
.price-panel-head strong,
.price-line strong {
  color: #1f1915;
}

.subtitle,
.price-panel-sub,
.price-card p,
.review-shot-card figcaption,
.faq-item p,
.trust-item p {
  color: #6f665d;
}

.hero-badge {
  background: rgba(255,255,255,0.84);
  color: #6c4f35;
  border: 1px solid rgba(109,83,61,0.10);
}

.brand-intro-card-v63,
.feature-collage,
.review-shot-card,
.trust-item,
.faq-item {
  border-color: var(--line-soft);
  background: var(--panel-luxury);
}

.price-panel-premium {
  border-color: rgba(109, 83, 61, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(245,238,230,0.97));
}

.price-card {
  border-color: var(--line-soft);
  background: linear-gradient(180deg, rgba(255,255,255,0.97), rgba(250,246,240,0.92));
}

.price-card.featured {
  background: linear-gradient(180deg, #fffdfb, #f4eadf);
  border-color: rgba(186, 145, 88, 0.24);
}

.pack-label,
.review-chip {
  background: linear-gradient(180deg, #f6ebdf, #efdfcf);
  color: #705239;
}

.note-row,
.review-showcase-note {
  color: #7a7167;
}

.note-row span,
.review-showcase-note span {
  border-color: var(--line-soft);
}

.header-cta,
.btn-primary {
  background: linear-gradient(135deg, #251d18 0%, #534032 54%, #775c46 100%);
}

.section-head p.eyebrow,
.brand-kicker,
.price-panel-kicker {
  color: #8f6c49;
}


/* V8.4.1 featured stamp */
.featured-stamp {
  position: absolute;
  top: 14px;
  right: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 98px;
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, #8f6841, #c59a61);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  box-shadow: 0 12px 22px rgba(143, 104, 65, 0.24);
  z-index: 2;
}

.price-card.featured {
  position: relative;
  padding-top: 48px;
}

@media (max-width: 560px) {
  .featured-stamp {
    top: 12px;
    right: 12px;
    min-width: 88px;
    height: 30px;
    font-size: 0.62rem;
  }

  .price-card.featured {
    padding-top: 44px;
  }
}
