/* ===== 기본 리셋 및 폰트 ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== 조선100년체 (로컬 폰트) ===== */
@font-face {
  font-family: 'ChosunCentennial';
  src: url('fonts/ChosunCentennial.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* ===== 떠오르는 애니메이션 ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.animate-in.delay-1 {
  animation-delay: 0.1s;
}

.animate-in.delay-2 {
  animation-delay: 0.25s;
}

.animate-in.delay-3 {
  animation-delay: 0.4s;
}

.animate-in.delay-4 {
  animation-delay: 0.55s;
}

.animate-in.delay-5 {
  animation-delay: 0.7s;
}

.animate-in.delay-6 {
  animation-delay: 0.85s;
}

.animate-in.delay-7 {
  animation-delay: 1.0s;
}

:root {
  /* ── 브랜드 V2: 목탄 + 앰버 + 골드 ── */
  --bg-primary: #2D2926;
  --bg-secondary: #231f1c;
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-button: rgba(255, 255, 255, 0.06);
  --bg-button-hover: rgba(255, 255, 255, 0.1);
  --text-primary: #F5EDD8;
  --text-secondary: rgba(245, 237, 216, 0.82);
  --text-muted: rgba(220, 207, 185, 0.6);
  --ember: #C4501A;
  --ember-light: #B8922B;
  --ember-glow: rgba(196, 80, 26, 0.28);
  --border-subtle: rgba(184, 146, 43, 0.3);
  --border-hover: rgba(184, 146, 43, 0.5);
  --gradient-ember: linear-gradient(134deg, #a83e10 0%, #C4501A 55%, #d4611f 100%);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --shadow-soft: 0 20px 36px rgba(8, 6, 4, 0.4);
  --shadow-strong: 0 34px 70px rgba(6, 4, 2, 0.5);
  --font-display-ko: 'Noto Serif KR', serif;
  --font-brand-ko: 'ChosunCentennial', 'Noto Serif KR', serif;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Pretendard Variable', 'Apple SD Gothic Neo', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  min-height: 100dvh;
  position: relative;
  overflow-x: hidden;
  font-weight: 500;
  line-height: 1.55;
  background-image:
    radial-gradient(110% 65% at 100% 0%, rgba(196, 80, 26, 0.18) 0%, transparent 60%),
    radial-gradient(80% 52% at -12% 14%, rgba(196, 80, 26, 0.12) 0%, transparent 68%),
    linear-gradient(160deg, #2D2926 0%, #251f1c 44%, #231d1a 100%);
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  z-index: 0;
  background-image:
    radial-gradient(circle at 24% 20%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 35%, rgba(255, 255, 255, 0.05) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
}

body::after {
  content: '';
  position: fixed;
  inset: -40% -20% auto auto;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(56px);
  opacity: 0.25;
  background: radial-gradient(circle at center, rgba(196, 80, 26, 0.55), transparent 68%);
}

:where(h1, h2, h3, p, span, a, strong, em) {
  word-break: keep-all;
}

/* ===== 페이지 컨테이너 ===== */
.page-container {
  max-width: 472px;
  margin: 0 auto;
  padding: 0 16px;
  padding-bottom: 56px;
  position: relative;
  z-index: 1;
}

/* ===== 히어로 섹션 ===== */
.hero {
  text-align: center;
  padding-bottom: 20px;
}

.hero-image-wrapper {
  position: relative;
  width: calc(100% + 32px);
  margin-left: -16px;
  margin-bottom: 26px;
  overflow: hidden;
  border-radius: 0 0 30px 30px;
  box-shadow: var(--shadow-strong);
}

.hero-image {
  width: 100%;
  height: clamp(340px, 56vh, 460px);
  object-fit: cover;
  display: block;
  filter: brightness(0.66) saturate(0.95) contrast(1.02);
}

.hero-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom,
      rgba(6, 5, 4, 0.08) 0%,
      rgba(20, 16, 12, 0.22) 28%,
      rgba(30, 22, 16, 0.45) 56%,
      rgba(45, 41, 38, 0.97) 100%);
}

.hero-content {
  padding: 0 8px;
  position: relative;
  z-index: 2;
  margin-top: -134px;
}

@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

.hero-subtitle {
  display: block;
  text-align: center;
  font-family: 'Outfit', 'Pretendard Variable', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 3.2px;
  font-weight: 400;
  margin-bottom: 14px;
  text-transform: uppercase;
  line-height: 1.9;
  background: linear-gradient(
    90deg,
    #a07830 0%,
    #e8c97a 30%,
    #f5e6b0 50%,
    #e8c97a 70%,
    #a07830 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 4s linear infinite;
}

.fire-icon {
  font-size: 0.85rem;
}

.hero-title {
  font-family: var(--font-brand-ko);
  font-weight: 800;
  font-size: clamp(2.4rem, 7.6vw, 3.35rem);
  margin-bottom: 9px;
  letter-spacing: -0.045em;
  line-height: 1.02;
  text-wrap: balance;
  /* 금빛 그라데이션 (톤다운) */
  background: linear-gradient(
    135deg,
    #c9a84c 0%,
    #dfc06a 40%,
    #a87c35 70%,
    #c9a84c 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 1px 8px rgba(180, 130, 40, 0.30));
}

.hero-desc {
  font-size: 0.92rem;
  color: var(--text-secondary);
  font-weight: 500;
  max-width: 34ch;
  margin: 0 auto;
  line-height: 1.65;
}

/* ===== 경주 동선 컨텍스트 ===== */
.city-context {
  margin: -2px 0 8px;
  padding: 14px 16px;
  border-radius: 14px;
  border: 1px solid rgba(184, 146, 43, 0.3);
  background: linear-gradient(135deg, rgba(64, 45, 36, 0.45), rgba(44, 31, 26, 0.35));
  text-align: center;
}

.city-context-bluf {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 10px;
}

.city-context-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.city-context-desc {
  font-size: 0.79rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* ===== 구분선 ===== */
.divider {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 22px 0 20px;
}

.divider-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, transparent 5%, rgba(184, 146, 43, 0.5), transparent 95%);
}

.divider-icon {
  font-size: 0.7rem;
  opacity: 0.6;
}

/* ===== 매장 카드 ===== */
.store-card {
  margin-bottom: 16px;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(184, 146, 43, 0.28);
  background:
    linear-gradient(152deg, rgba(57, 41, 33, 0.6), rgba(39, 28, 22, 0.5)),
    radial-gradient(circle at 20% 15%, rgba(255, 220, 180, 0.08), transparent 52%);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(4px);
  position: relative;
  overflow: hidden;
}

.store-card > * {
  position: relative;
  z-index: 1;
}

.store-card::before {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  border-radius: 999px;
  top: -56px;
  right: -36px;
  background: radial-gradient(circle, rgba(196, 80, 26, 0.18) 0%, transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.store-card::after {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    radial-gradient(circle at 22% 24%, rgba(255, 255, 255, 0.08) 0 1px, transparent 1px),
    radial-gradient(circle at 76% 74%, rgba(255, 255, 255, 0.07) 0 1px, transparent 1px);
  background-size: 4px 4px, 6px 6px;
  z-index: 0;
}

.store-card:nth-of-type(even)::before {
  right: auto;
  left: -46px;
  top: auto;
  bottom: -62px;
}

/* ===== 이미지 슬라이더 ===== */
.slider {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: 20px;
  background: var(--bg-secondary);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 40px rgba(10, 10, 10, 0.35);
}

.store-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(18, 15, 13, 0.85);
  border: 1px solid rgba(184, 146, 43, 0.55);
  color: #e8c875;
  font-family: 'Outfit', 'Pretendard Variable', sans-serif;
  font-size: 0.67rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slide.active {
  opacity: 1;
}

.slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-label {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0, 0, 0, 0.6);
  color: var(--text-primary);
  font-size: 0.72rem;
  padding: 4px 10px;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.store-name-overlay {
  position: absolute;
  bottom: 16px;
  left: 20px;
  font-family: var(--font-brand-ko);
  font-weight: 700;
  font-size: 1.42rem;
  letter-spacing: -0.02em;
  color: var(--text-primary);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  z-index: 2;
  text-wrap: balance;
}

.slider-dots {
  position: absolute;
  bottom: 16px;
  right: 20px;
  display: flex;
  gap: 6px;
  z-index: 2;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.28);
  border: none;
  cursor: pointer;
  padding: 8px;
  box-sizing: content-box;
  transition: background 0.3s ease;
}

.dot.active {
  background: var(--ember-light);
}

/* ===== 매장 정보 ===== */
.store-info {
  padding: 4px 8px 18px;
}

.info-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: var(--text-secondary);
  font-size: 0.92rem;
  line-height: 1.55;
}

.info-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  color: var(--ember);
}

.store-hours {
  font-size: 0.81rem;
  color: var(--text-muted);
  padding-left: 28px;
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}

.store-intro {
  font-size: 0.81rem;
  color: var(--text-secondary);
  line-height: 1.75;
  padding-left: 28px;
  margin-top: 11px;
  max-width: 65ch;
}

.store-intro + .store-intro {
  margin-top: 6px;
}

.store-intro-sub {
  color: var(--text-muted);
}

.store-cert {
  font-size: 0.78rem;
  color: var(--ember);
  padding-left: 28px;
  margin-top: 6px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.info-detail {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== 버튼 공통 ===== */
.store-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 0 10px;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: var(--text-primary);
  border-radius: var(--radius-md);
  transition: all 0.34s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: pointer;
  font-family: 'Pretendard Variable', sans-serif;
  font-weight: 500;
}

/* 메인 버튼 (전화걸기, 네이버예약) */
.btn-primary {
  background: var(--gradient-ember);
  padding: 15px 24px;
  font-size: 1.07rem;
  border: none;
  box-shadow: 0 10px 30px var(--ember-glow);
  position: relative;
  overflow: hidden;
  letter-spacing: -0.01em;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-1px) scale(1.018);
  box-shadow: 0 16px 34px rgba(196, 80, 26, 0.44);
}

.btn-primary:active {
  transform: scale(0.987);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.btn-label {
  font-size: 1.04rem;
  font-weight: 600;
}

.btn-sub {
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 400;
  margin-top: 0;
  line-height: 1.2;
}

/* 보조 버튼 (위치, 메뉴, 리뷰 등) */
.btn-secondary {
  flex-direction: row;
  background: var(--bg-button);
  padding: 14px 16px;
  font-size: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  gap: 8px;
}

.btn-secondary:hover {
  background: var(--bg-button-hover);
  border-color: var(--border-hover);
  transform: translateY(-1px) scale(1.014);
  box-shadow: 0 10px 20px rgba(16, 16, 16, 0.33);
}

.btn-secondary:active {
  transform: scale(0.985);
}

.btn-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.btn-grid-single {
  grid-template-columns: 1fr;
}

.review-btn {
  width: 100%;
}

.btn-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.btn-secondary .btn-icon,
.btn-secondary .info-icon {
  width: 24px;
  height: 24px;
  color: var(--text-secondary);
}

/* ===== 안내 카드 ===== */
.notice-card {
  margin: 38px 0 10px;
  padding: 22px;
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-soft);
}

.notice-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
}

.notice-icon {
  font-size: 0.85rem;
}

.notice-title {
  font-family: var(--font-display-ko);
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: -0.02em;
  color: var(--ember-light);
}

.notice-body {
  margin-bottom: 12px;
}

.notice-body p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 400;
  max-width: 65ch;
}

.notice-body strong {
  color: var(--text-primary);
  font-weight: 500;
}

.notice-highlight {
  margin-top: 6px;
  color: var(--text-muted) !important;
  font-size: 0.75rem !important;
}

.notice-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(184, 146, 43, 0.2), transparent);
  margin: 12px 0;
}

.notice-since {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding-top: 8px;
}

.notice-since span {
  font-size: 0.72rem;
  color: var(--text-muted);
  font-weight: 400;
}

.notice-since em {
  font-style: italic;
  color: var(--ember);
  font-weight: 400;
}

/* ===== 푸터 ===== */
.footer {
  text-align: center;
  padding: 38px 0 20px;
}

.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: all 0.32s cubic-bezier(0.16, 1, 0.3, 1);
}

.instagram-link:hover {
  color: var(--text-secondary);
  transform: translateY(-1px);
}

.instagram-icon {
  width: 20px;
  height: 20px;
}

.footer-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.08), transparent);
  margin: 24px 0;
}

.copyright {
  font-size: 0.75rem;
  color: var(--text-muted);
  font-weight: 400;
}

/* ===== 반응형 ===== */
@media (max-width: 480px) {
  .page-container {
    max-width: 100%;
    padding: 0 16px;
  }

  .hero-image {
    height: 320px;
  }

  .hero-title {
    font-size: 2.08rem;
  }

  .hero-content {
    margin-top: -120px;
  }

  .store-card {
    padding: 12px;
  }

  .slider-track {
    height: 200px;
  }

  
}

@media (min-width: 481px) {
  .page-container {
    max-width: 520px;
    padding: 0 22px;
  }

  .hero-image-wrapper {
    width: calc(100% + 44px);
    margin-left: -22px;
    border-radius: 0 0 32px 32px;
  }

  .slider-track {
    height: 290px;
  }

  
}

/* ===== 터치 스와이프 힌트 ===== */
.slider-track {
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
}

.slider-track:active {
  cursor: grabbing;
}

/* ===== 스크롤바 숨기기 ===== */
::-webkit-scrollbar {
  display: none;
}

body {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

/* ===== FAQ 섹션 ===== */
.faq-section {
  margin: 8px 0 16px;
  padding: 20px 16px;
  border-radius: 20px;
  background: linear-gradient(135deg, rgba(64, 45, 36, 0.45), rgba(44, 31, 26, 0.35));
  border: 1px solid rgba(184, 146, 43, 0.28);
}

.faq-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 14px;
  text-align: center;
  letter-spacing: -0.01em;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.faq-item {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(0, 0, 0, 0.2);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 13px 14px;
  text-align: left;
  color: var(--text-primary);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  line-height: 1.5;
}

.faq-chevron {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
  opacity: 0.6;
}

.faq-chevron::before,
.faq-chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 7px;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.25s ease;
}

.faq-chevron::before {
  left: 1px;
  transform: translateY(-50%) rotate(45deg);
}

.faq-chevron::after {
  right: 1px;
  transform: translateY(-50%) rotate(-45deg);
}

.faq-question[aria-expanded="true"] .faq-chevron::before {
  transform: translateY(-50%) rotate(-45deg);
}

.faq-question[aria-expanded="true"] .faq-chevron::after {
  transform: translateY(-50%) rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-answer.open {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 14px 13px;
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.75;
}

/* ===== FAQ 카테고리 탭 ===== */
.faq-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.faq-tab {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px;
  color: var(--text-secondary);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 6px 12px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
  min-height: 32px;
}

.faq-tab:hover {
  background: rgba(184,146,43,0.2);
  border-color: rgba(184,146,43,0.4);
  color: var(--text-primary);
}

.faq-tab.active {
  background: rgba(184,146,43,0.3);
  border-color: rgba(184,146,43,0.6);
  color: #f0c040;
}

.faq-item[hidden] {
  display: none;
}

/* ===== 하단 고정 CTA 바 ===== */
.cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  display: flex;
  gap: 0;
  background: #1a1209;
  border-top: 1px solid rgba(184,146,43,0.35);
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.cta-bar-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 12px 4px;
  min-height: 52px;
  font-size: 0.72rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s;
  text-align: center;
  line-height: 1.3;
}

.cta-bar-call {
  background: rgba(184,146,43,0.15);
  color: #f0c040;
  border-right: 1px solid rgba(184,146,43,0.2);
}

.cta-bar-call:hover,
.cta-bar-call:active {
  background: rgba(184,146,43,0.28);
}

.cta-bar-booking {
  background: rgba(184,146,43,0.15);
  color: #f0c040;
}

.cta-bar-booking:hover,
.cta-bar-booking:active {
  background: rgba(184,146,43,0.28);
}

/* 본문이 CTA 바에 가리지 않도록 여백 추가 */
body {
  padding-bottom: calc(60px + env(safe-area-inset-bottom, 0));
}

/* ===== 맨 위로 버튼 ===== */
.back-to-top {
  position: fixed;
  bottom: calc(68px + env(safe-area-inset-bottom, 0));
  right: 16px;
  z-index: 999;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(30,20,10,0.85);
  border: 1px solid rgba(184,146,43,0.45);
  color: #f0c040;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  backdrop-filter: blur(4px);
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: rgba(184,146,43,0.25);
}

/* ===== 공유 버튼 ===== */
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 10px 18px;
  border-radius: 24px;
  border: 1px solid rgba(184,146,43,0.5);
  background: rgba(184,146,43,0.12);
  color: #f0c040;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  min-height: 44px;
}

.share-btn:hover {
  background: rgba(184,146,43,0.24);
  border-color: rgba(184,146,43,0.75);
}
