* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --bg: #f8f7f4;
  --white: #ffffff;
  --text: #181818;
  --muted: #666;
  --line: #e6e2da;
  --primary: #1c1c1c;
  --accent: #b89564;
  --soft: #f1ede6;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  --radius: 20px;
  --max: 1200px;
}

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

@media (max-width: 768px) {
  html {
    scroll-padding-top: 54px;
  }
}

body {
  font-family: "Pretendard", "Noto Sans KR", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  object-fit: cover;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: min(100% - 40px, var(--max));
  margin: 0 auto;
}

.narrow {
  width: min(100% - 40px, 900px);
  margin: 0 auto;
}

.section {
  padding: 100px 0;
}

.soft-bg {
  background: var(--soft);
}

.center {
  text-align: center;
}

.section-title {
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.25;
  margin-bottom: 16px;
  word-break: keep-all;
}

.section-title p {
  color: var(--muted);
  max-width: 700px;
}

.section-title.center p {
  margin: 0 auto;
}

.section-label,
.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(248, 247, 244, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

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

.logo {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.nav {
  display: flex;
  gap: 24px;
  align-items: center;
}

.nav a {
  color: #333;
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--accent);
}

.menu-btn {
  display: none;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 18px 20px 24px;
  border-top: 1px solid var(--line);
  background: var(--bg);
}

.mobile-menu.active {
  display: flex;
}

.hero {
  padding: 80px 0 70px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  word-break: keep-all;
  line-break: strict;
}

.hero-desc {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 640px;
  margin-bottom: 28px;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-points {
  list-style: none;
  display: grid;
  gap: 10px;
}

.hero-points li {
  position: relative;
  padding-left: 22px;
  color: #444;
}

.hero-points li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: bold;
}

/* ===== 상단 before / after 슬라이더 ===== */
.hero-image.review-slider {
  position: relative;
  transform: translateY(-70px);
  min-height: 520px;
  border-radius: 28px;
  overflow: hidden;
  background: #f2eee8;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.review-slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 520px;
}

.review-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.02);
  transition:
    opacity 0.85s ease,
    transform 0.85s ease,
    visibility 0.85s ease;
}

.review-slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.review-slide img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 28px;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;

  width: 52px;
  height: 52px;

  border: none;
  border-radius: 50%;

  cursor: pointer;

  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);

  display: flex;
  align-items: center;
  justify-content: center;

  transition: all 0.25s ease;
}

.slider-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

/* 위치 (핵심) */
.slider-btn-prev {
  left: 18px;
}

.slider-btn-next {
  right: 18px;
}

/* 화살표 만들기 */
.arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}

/* 방향 */
.slider-btn-prev .arrow {
  transform: rotate(135deg);
}

.slider-btn-next .arrow {
  transform: rotate(-45deg);
}

.slider-dots {
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
}

.slider-dot.is-active {
  background: #fff;
}

/* ===== 문제 제기 섹션 수정 ===== */
.problem-title-only {
  margin-bottom: 26px;
}

.problem-title-only .section-label {
  font-size: clamp(2.3rem, 5vw, 4.3rem);
  line-height: 1.15;
  margin-bottom: 18px;
  letter-spacing: -0.03em;
  word-break: keep-all;
  line-break: strict;

  color: #8d8d8d; /* 회색 유지 */
  font-weight: 800;
}

.mini-product-grid,
.problem-grid,
.service-grid,
.review-grid,
.contact-grid,
.price-grid {
  display: grid;
  gap: 24px;
}

.mini-product-grid {
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 28px;
}

.mini-product-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 28px;
}

.mini-product-card.featured {
  border: 1.5px solid #dcc39e;
}

.mini-product-label {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.mini-product-card h3 {
  font-size: 1.35rem;
  line-height: 1.35;
  margin-bottom: 10px;
  word-break: keep-all;
}

.mini-product-price {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 12px;
}

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

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

.card,
.service-card,
.review-card,
.contact-card,
.price-card,
.step,
.apply-form,
.apply-info,
.policy-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

.card,
.service-card,
.contact-card,
.policy-box,
.step,
.apply-info {
  padding: 28px;
}

.card h3,
.service-card h3,
.contact-card h3,
.policy-box h3 {
  margin-bottom: 10px;
  font-size: 1.2rem;
}

.card p,
.service-card p,
.contact-card p,
.policy-box p {
  color: var(--muted);
}

.service-grid {
  grid-template-columns: repeat(3, 1fr);
  margin-bottom: 30px;
}

.badge {
  display: inline-block;
  background: #f7f1e8;
  color: #8a6a3e;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.process-wrap {
  margin-top: 40px;
}

.process-title {
  font-size: 1.6rem;
  margin-bottom: 22px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.step span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  color: #fff;
  font-weight: 700;
  margin-bottom: 16px;
}

.step h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.step p {
  color: var(--muted);
  font-size: 0.95rem;
}

.price-grid {
  grid-template-columns: 1.1fr 0.9fr;
  align-items: stretch;
  margin-bottom: 26px;
}

.price-card {
  padding: 34px;
}

.price-card.featured {
  border: 2px solid #dcc39e;
}

.price-top {
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 12px;
}

.price-card h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.price {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 18px;
}

.price-card ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.price-card li {
  position: relative;
  padding-left: 22px;
  color: #444;
}

.price-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
  font-weight: 700;
}

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

.review-card {
  overflow: hidden;
}

.review-card img {
  height: 240px;
}

.review-body {
  padding: 22px;
}

.review-body h3 {
  margin-bottom: 10px;
}

.review-body p {
  color: var(--muted);
}

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

.faq-item {
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  border: none;
  background: #fff;
  padding: 22px 24px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}

.faq-answer {
  display: none;
  padding: 0 24px 22px;
  color: var(--muted);
}

.faq-item.active .faq-answer {
  display: block;
}

.apply-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 24px;
  align-items: start;
}

.apply-info ul {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 20px 0 26px;
}

.apply-info li {
  position: relative;
  padding-left: 22px;
  color: #444;
}

.apply-info li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.apply-form {
  padding: 30px;
}

.form-group {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
}

.form-group label {
  font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}

.form-note {
  color: var(--muted);
  margin-top: 14px;
  font-size: 0.92rem;
}

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

.sns-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.sns-links a {
  color: var(--accent);
  font-weight: 700;
}

.bottom-cta {
  padding: 70px 0;
  background: #151515;
  color: #fff;
}

.bottom-cta-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.bottom-cta h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1.3;
}

.bottom-cta-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.footer {
  padding: 34px 0;
  background: #0f0f0f;
  color: #bbb;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-dark {
  background: #111;
  color: #fff;
}

.btn-light {
  background: #fff;
  color: #111;
  border: 1px solid #ddd;
}

.full {
  width: 100%;
}

.top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: #111;
  color: #fff;
  cursor: pointer;
  display: none;
  box-shadow: var(--shadow);
}

.top-btn.show {
  display: block;
}

.desktop-only {
  display: inline-flex;
}

@media (max-width: 1100px) {
  .hero-grid,
  .apply-grid,
  .price-grid,
  .bottom-cta-inner {
    grid-template-columns: 1fr;
  }

  .service-grid,
  .problem-grid,
  .review-grid,
  .contact-grid,
  .process-grid,
  .mini-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-image.review-slider,
  .review-slider-track,
  .review-slide img {
    min-height: 380px;
  }

  .bottom-cta-inner {
    display: grid;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 75px 0;
  }

  .desktop-only,
  .menu-btn,
  .mobile-menu {
    display: none !important;
  }

  .header-inner {
    height: 72px;
    justify-content: flex-start;
    gap: 14px;
    overflow: hidden;
  }

  .logo {
    flex: 0 0 auto;
    font-size: 1rem;
    white-space: nowrap;
  }

  .nav {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    gap: 14px;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    flex: 0 0 auto;
    font-size: 0.82rem;
  }

  .hero {
    padding-top: 40px;
  }

  .hero-text h1 {
    font-size: 2.2rem;
  }

  .service-grid,
  .problem-grid,
  .review-grid,
  .contact-grid,
  .process-grid,
  .mini-product-grid {
    grid-template-columns: 1fr;
  }

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

  .price-card,
  .apply-form,
  .apply-info,
  .card,
  .service-card,
  .contact-card,
  .policy-box,
  .step,
  .mini-product-card {
    padding: 22px;
  }

  .footer-inner {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-buttons,
  .bottom-cta-buttons {
    flex-direction: column;
  }

  .hero-image.review-slider,
  .review-slider-track,
  .review-slide img {
    min-height: 300px;
  }

  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 1.45rem;
  }

  .problem-title-only .section-label {
    font-size: 2rem;
  }
}

/* =========================
   서비스 소개 섹션 - 아트라상 스타일 배치
   색상/배경은 기존 톤 유지
========================= */

.service-intro .service-intro__container {
  max-width: 1120px;
}

.service-intro__title {
  margin-bottom: 46px;
}

.service-intro__title .section-label {
  margin-bottom: 12px;
}

.service-intro__title h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: 0;
  word-break: keep-all;
}

.service-intro__title p {
  display: none;
}

.service-story {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.service-story__row {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  padding: 52px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  align-items: start;
}

.service-story__left h3 {
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  line-height: 1.35;
  letter-spacing: -0.03em;
  font-weight: 700;
  word-break: keep-all;
}

.service-story__left h3 span {
  display: inline-block;
  color: var(--accent);
}

.service-story__right {
  max-width: 640px;
}

.service-story__right p {
  font-size: 1.02rem;
  line-height: 1.95;
  color: #444;
  margin-bottom: 18px;
  word-break: keep-all;
}

.service-story__right p:last-child {
  margin-bottom: 0;
}

.service-story__highlight {
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text) !important;
}

.service-inline-products {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  margin-top: 26px;
}

.service-inline-product {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.05);
  border-radius: 18px;
  padding: 24px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.04);
}

.service-inline-product__label {
  font-size: 0.88rem !important;
  line-height: 1.4 !important;
  color: var(--accent) !important;
  font-weight: 700;
  margin-bottom: 8px !important;
}

.service-inline-product h4 {
  font-size: 1.18rem;
  line-height: 1.45;
  margin-bottom: 10px;
  word-break: keep-all;
}

.service-inline-product strong {
  display: block;
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 800;
  color: var(--text);
}

.service-process-wrap {
  margin-top: 52px;
}

.service-process-wrap .process-title {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  line-height: 1.3;
  margin-bottom: 26px;
}

@media (max-width: 1100px) {
  .service-story__row {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 42px 0;
  }

  .service-story__right {
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .service-intro__title {
    margin-bottom: 28px;
  }

  .service-intro__title h2 {
    font-size: 2rem;
    line-height: 1.25;
  }

  .service-story__row {
    padding: 34px 0;
    gap: 16px;
  }

  .service-story__left h3 {
    font-size: 1.5rem;
    line-height: 1.4;
  }

  .service-story__right p {
    font-size: 0.98rem;
    line-height: 1.85;
    margin-bottom: 14px;
  }

  .service-inline-products {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 18px;
  }

  .service-inline-product {
    padding: 20px;
  }

  .service-inline-product h4 {
    font-size: 1.08rem;
  }

  .service-inline-product strong {
    font-size: 1.28rem;
  }
}

/* =========================
   가격 안내 추가 수정
========================= */

.price-note-box {
  margin-top: 8px;
}

.price-note-box p + p {
  margin-top: 6px;
}

/* =========================
   FAQ 링크형 스타일
========================= */

.faq-link-list {
  display: grid;
  gap: 14px;
}

.faq-link-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.04);
  padding: 22px 24px;
  transition: 0.25s ease;
}

.faq-link-item:hover {
  transform: translateY(-2px);
}

.faq-link-item span {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  word-break: keep-all;
}

.faq-link-item strong {
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* =========================
   후기 / 사례 - 페이지형 슬라이더
========================= */

.reviews-section-container {
  width: min(100% - 40px, 1380px);
  margin: 0 auto;
}

.reviews-topbar {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 18px;
}

.reviews-page-controls {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #9b948b;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.reviews-page-arrow {
  border: none;
  background: transparent;
  color: #b7afa6;
  font-size: 1.35rem;
  line-height: 1;
  cursor: pointer;
  padding: 0;
  transition: 0.2s ease;
}

.reviews-page-arrow:hover {
  color: #6f675e;
}

.reviews-page-arrow:disabled {
  opacity: 0.35;
  cursor: default;
}

.reviews-page-indicator {
  min-width: 52px;
  text-align: center;
}

.reviews-paged-slider {
  width: 100%;
  touch-action: pan-y;
  cursor: grab;
  user-select: none;
}

.reviews-paged-slider.is-dragging {
  cursor: grabbing;
}

.reviews-paged-viewport {
  overflow: hidden;
  width: 100%;
}

.reviews-paged-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.reviews-mini-card {
  flex: 0 0 calc((100% - 72px) / 5);
  min-width: 0;
}

.reviews-mini-card__thumb {
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  margin-bottom: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

.reviews-mini-card__thumb img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.reviews-mini-card__body h3 {
  font-size: 1rem;
  line-height: 1.45;
  margin-bottom: 8px;
  word-break: keep-all;
}

.reviews-mini-card__body p {
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--muted);
  word-break: keep-all;
}

/* 기존 후기 카드 스타일 영향 방지 */
#reviews .review-card,
#reviews .review-body {
  all: unset;
}

/* =========================
   반응형
========================= */

  @media (max-width: 1200px) {
  .reviews-mini-card {
    flex: 0 0 calc((100% - 54px) / 4);
  }
}

@media (max-width: 768px) {
  .reviews-section-container {
    width: min(100% - 20px, 100%);
  }

  .reviews-topbar {
    margin-bottom: 14px;
  }

  .reviews-page-controls {
    gap: 8px;
    font-size: 0.92rem;
  }

  .reviews-page-arrow {
    font-size: 1.2rem;
  }

  .reviews-paged-track {
    gap: 8px;
  }

  .reviews-mini-card {
    flex: 0 0 calc((100% - 24px) / 4);
  }

  .reviews-mini-card__thumb {
    border-radius: 8px;
    margin-bottom: 8px;
  }

  .reviews-mini-card__body h3 {
    font-size: 0.82rem;
    line-height: 1.35;
    margin-bottom: 5px;
  }

  .reviews-mini-card__body p {
    font-size: 0.74rem;
    line-height: 1.45;
  }

  .faq-link-item {
    padding: 18px 18px;
  }

  .faq-link-item span {
    font-size: 0.96rem;
    line-height: 1.5;
  }
}

/* =========================
   HIGH WAY 문구/상품 수정 추가 스타일
========================= */

.hero-desc + .hero-desc {
  margin-top: -12px;
}

.recommendation-card {
  min-height: 128px;
  display: flex;
  align-items: center;
}

.recommendation-card h3 {
  line-height: 1.55;
  word-break: keep-all;
}

.service-story__subtitle {
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.55;
  margin-bottom: 20px;
  color: var(--text);
  word-break: keep-all;
}

.service-inline-product__price-before {
  font-size: 0.92rem !important;
  line-height: 1.4 !important;
  color: #9b948b !important;
  text-decoration: line-through;
  margin: 4px 0 6px !important;
}

.service-inline-product__discount {
  display: inline-block;
  margin-top: 8px !important;
  padding: 5px 9px;
  border-radius: 999px;
  background: #fff3f1;
  color: #d9342b !important;
  font-size: 0.82rem !important;
  line-height: 1.3 !important;
  font-weight: 800;
}

.price-display {
  margin-bottom: 20px;
}

.price-before {
  font-size: 0.98rem;
  color: #9b948b;
  text-decoration: line-through;
  margin-bottom: 6px;
  font-weight: 600;
}

.price-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
  line-height: 1;
  flex-wrap: wrap;
}

.price-discount {
  font-size: clamp(1.35rem, 2vw, 1.9rem);
  font-weight: 900;
  color: #ff3b30;
  letter-spacing: -0.03em;
}

.price-main strong {
  font-size: clamp(2rem, 3vw, 2.6rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.04em;
}

.important-day-note {
  margin-top: 30px;
}

.important-day-note h3 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
  line-height: 1.35;
  margin-bottom: 18px;
}

.important-day-note p {
  line-height: 1.85;
  word-break: keep-all;
}

.step p + p {
  margin-top: 8px;
}

.reviews-paged-slider {
  overflow: hidden;
}

.reviews-paged-track {
  pointer-events: none;
}

@media (max-width: 768px) {
  .recommendation-card {
    min-height: auto;
  }

  .price-main {
    gap: 8px;
  }
}

/* 후기 슬라이더 모바일 터치/드래그 안정화 */
.reviews-paged-slider,
.reviews-paged-viewport,
.reviews-paged-track,
.reviews-mini-card {
  touch-action: pan-y;
}

.reviews-paged-slider {
  overflow: hidden;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.reviews-paged-slider.is-dragging {
  cursor: grabbing;
}

.reviews-mini-card img {
  pointer-events: none;
  user-select: none;
  -webkit-user-select: none;
  -webkit-user-drag: none;
}
