/* ===========================
   한나웨딩 S-Day — 크림 & 그린 테마
   Pure CSS Design (No Images)
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,600&family=Noto+Sans+KR:wght@300;400;500;600;700;800&family=Noto+Serif+KR:wght@400;700;900&display=swap');

:root {
  --cream: #FAF7F2;
  --cream-dark: #F2EDE4;
  --cream-border: #E8E0D4;
  --green-dark: #2D4A3E;
  --green-mid: #4A7C6F;
  --green-light: #7BAE9F;
  --green-pale: #C8DDD8;
  --green-ultra-pale: #EBF3F0;
  --blue: #2196F3;
  --blue-dark: #1565C0;
  --blue-pale: #E3F2FD;
  --teal: #00897B;
  --gold: #C9A96E;
  --gold-light: #E8D5B0;
  --red: #E53935;
  --text-dark: #1C2B27;
  --text-mid: #4A5E58;
  --text-light: #8A9E98;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 12px rgba(45,74,62,0.08);
  --shadow-md: 0 8px 32px rgba(45,74,62,0.12);
  --shadow-lg: 0 16px 48px rgba(45,74,62,0.16);
  --shadow-blue: 0 8px 32px rgba(33,150,243,0.2);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
}

*{margin:0;padding:0;box-sizing:border-box;}
a{color:inherit;text-decoration:none;}
html{scroll-behavior:smooth;overflow-x:hidden;}
/* 고정 헤더 높이만큼 앵커 오프셋 */
section[id], div[id]{scroll-margin-top:80px;}
body{
  font-family:'Noto Sans KR',sans-serif;
  background:var(--cream);
  color:var(--text-dark);
  line-height:1.7;
  overflow-x:hidden;
}
::-webkit-scrollbar{width:6px;}
::-webkit-scrollbar-track{background:var(--cream-dark);}
::-webkit-scrollbar-thumb{background:var(--green-light);border-radius:3px;}

/* ===== HEADER ===== */
header{
  position:fixed;top:0;left:0;right:0;z-index:1000;
  padding:20px 48px;
  background:rgba(10,30,22,0.55);
  backdrop-filter:blur(8px);
  display:flex;align-items:center;justify-content:space-between;
  transition:all 0.4s ease;
}
header.scrolled{
  background:rgba(250,247,242,0.96);
  backdrop-filter:blur(12px);
  padding:14px 48px;
  box-shadow:var(--shadow-sm);
}
header.scrolled nav a{color:var(--text-mid);}
header.scrolled nav a:hover{color:var(--green-dark);}
.logo{display:flex;flex-direction:column;line-height:1.1;text-decoration:none;}
.logo-en{
  font-family:'Cormorant Garamond',serif;
  font-size:22px;font-weight:600;
  color:var(--green-dark);letter-spacing:3px;text-transform:uppercase;
}
.logo-ko{font-size:11px;font-weight:400;color:var(--text-light);letter-spacing:2px;}
/* 데스크탑 nav */
nav{display:flex;gap:32px;align-items:center;}
nav a{
  text-decoration:none;font-size:13px;font-weight:500;
  color:rgba(255,255,255,0.85);letter-spacing:0.5px;transition:color 0.3s;
  position:relative;
}
nav a::after{
  content:'';position:absolute;bottom:-4px;left:0;
  width:0;height:1px;background:var(--green-mid);transition:width 0.3s;
}
nav a:hover{color:#fff;}
nav a:hover::after{width:100%;}
.header-cta{
  background:var(--green-dark)!important;color:var(--white)!important;
  padding:10px 22px;border-radius:40px;font-size:12px!important;
  letter-spacing:1px;transition:all 0.3s!important;
}
.header-cta:hover{background:var(--green-mid)!important;transform:translateY(-1px);}
.header-cta::after{display:none!important;}
.home-btn,
.home-btn:link,
.home-btn:visited{
  display:inline-flex!important;align-items:center;gap:6px;
  background:linear-gradient(135deg,#C9A96E,#B8935A)!important;
  color:#fff!important;
  padding:9px 18px;border-radius:40px;
  font-size:13px!important;font-weight:700!important;
  letter-spacing:0.5px;transition:all 0.3s!important;
  border:none;white-space:nowrap;
  box-shadow:0 2px 10px rgba(201,169,110,0.4);
  text-decoration:none!important;
}
.home-btn:hover{
  background:linear-gradient(135deg,#B8935A,#A07840)!important;
  transform:translateY(-1px);
  box-shadow:0 3px 12px rgba(201,169,110,0.5);
}
.home-btn::after{display:none!important;}
.home-btn i{font-size:11px;}
.menu-toggle{
  display:none;flex-direction:column;gap:5px;
  cursor:pointer;background:none;border:none;padding:4px;z-index:1001;
}
.menu-toggle span{width:24px;height:2px;background:var(--green-dark);border-radius:2px;transition:all 0.3s;display:block;}

/* ===== HERO — 코엑스 스타일 좌우 분할 ===== */
/* ===== HERO — index.html 전용 중앙정렬 풀스크린 ===== */
/* fair.html은 section.fhero 로 별도 스타일 사용 */
#hero:not(.fhero):not(.sday-hero){
  min-height:100vh;
  background:linear-gradient(160deg,#020f09 0%,#031a12 40%,#042e23 70%,#064D3A 100%);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  position:relative;
  overflow:hidden;
  padding:120px 24px 80px;
}
.hero-overlay{
  position:absolute;inset:0;pointer-events:none;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(77,217,172,0.07) 0%, transparent 60%),
    radial-gradient(ellipse 60% 50% at 80% 70%, rgba(201,169,110,0.05) 0%, transparent 55%),
    radial-gradient(ellipse 40% 40% at 50% 90%, rgba(77,217,172,0.04) 0%, transparent 50%);
}
.hero-bg-shapes{position:absolute;inset:0;pointer-events:none;overflow:hidden;}
.hero-shape-1{
  position:absolute;top:-200px;right:-200px;
  width:600px;height:600px;border-radius:50%;
  background:radial-gradient(circle,rgba(77,217,172,0.06) 0%,transparent 70%);
}
.hero-shape-2{
  position:absolute;bottom:-150px;left:-150px;
  width:500px;height:500px;border-radius:50%;
  background:radial-gradient(circle,rgba(201,169,110,0.05) 0%,transparent 70%);
}
.hero-shape-3{
  position:absolute;top:40%;left:50%;transform:translate(-50%,-50%);
  width:800px;height:800px;border-radius:50%;
  background:radial-gradient(circle,rgba(77,217,172,0.03) 0%,transparent 60%);
}

/* ── 중앙 컨테이너 ── */
.hero-center{
  position:relative;z-index:2;
  display:flex;flex-direction:column;
  align-items:center;
  text-align:center;
  width:100%;max-width:860px;
}

/* 콜라보 배지 */
.hero-collab-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(77,217,172,0.3);
  color:rgba(255,255,255,0.75);
  font-size:12px;font-weight:600;letter-spacing:1.5px;
  padding:8px 20px;border-radius:40px;
  margin-bottom:28px;
  backdrop-filter:blur(8px);
}
.htb-dot{
  width:7px;height:7px;border-radius:50%;
  background:#4DD9AC;
  animation:htbPulse 2s infinite;
  flex-shrink:0;
}
.hcb-x{color:#4DD9AC;font-weight:700;}
@keyframes htbPulse{
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:.4;transform:scale(.6);}
}

/* ── 메인 타이틀 ── */
.hero-main-title{
  font-family:'Noto Sans KR',sans-serif;
  line-height:1.05;
  letter-spacing:-2px;
  margin-bottom:32px;
}
.hmt-sub{
  display:block;
  font-size:clamp(22px,3.5vw,38px);
  color:rgba(255,255,255,0.55);
  font-weight:400;
  letter-spacing:0px;
  margin-bottom:6px;
}
.hmt-bold{
  display:block;
  font-size:clamp(48px,8vw,96px);
  font-weight:900;
  color:#fff;
  letter-spacing:-4px;
  line-height:1.0;
}
/* 민트 언더라인 */
.hmt-bold::after{
  content:'';display:block;
  width:72px;height:4px;
  background:linear-gradient(90deg,#4DD9AC,transparent);
  border-radius:2px;
  margin:16px auto 0;
}

/* ── 이벤트 정보 pill 행 ── */
.hero-info-pills{
  display:flex;align-items:center;
  flex-wrap:wrap;
  justify-content:center;
  gap:8px 6px;
  margin-bottom:36px;
  padding:0 8px;
}
.hip-item{
  display:inline-flex;align-items:center;gap:7px;
  font-size:13px;font-weight:500;
  color:rgba(255,255,255,0.8);
  white-space:nowrap;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  padding:7px 14px;border-radius:30px;
}
.hip-item i{font-size:12px;color:#4DD9AC;}
.hip-item.fire{
  background:rgba(255,107,53,0.1);
  border-color:rgba(255,107,53,0.25);
}
.hip-item.fire i{color:#FF6B35;}
.hip-item strong{color:#fff;font-weight:700;}
.hip-divider{display:none;}

/* ── 혜택 카드 4개 ── */
.hero-cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  width:100%;
  margin-bottom:36px;
}
.hcard{
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px;
  padding:22px 16px;
  text-align:center;
  position:relative;
  backdrop-filter:blur(10px);
  transition:all .25s;
}
.hcard:hover{
  background:rgba(77,217,172,0.09);
  border-color:rgba(77,217,172,0.3);
  transform:translateY(-4px);
}
.hcard.accent{
  background:linear-gradient(145deg,rgba(77,217,172,0.14),rgba(6,77,58,0.6));
  border-color:rgba(77,217,172,0.4);
}
.hcard-badge{
  position:absolute;top:-10px;left:50%;transform:translateX(-50%);
  background:linear-gradient(135deg,#FFB300,#FF8F00);
  color:#fff;font-size:9px;font-weight:800;
  padding:3px 12px;border-radius:20px;letter-spacing:1.5px;
  white-space:nowrap;
}
.hcard-label{
  font-size:11px;font-weight:700;letter-spacing:1.5px;
  color:rgba(255,255,255,0.5);
  text-transform:uppercase;
  margin-bottom:10px;
}
.hcard-value{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(30px,3.5vw,46px);
  font-weight:700;
  color:#fff;
  line-height:1;
  margin-bottom:8px;
}
.hcard.accent .hcard-value{color:#4DD9AC;}
.hcard-unit{
  font-family:'Noto Sans KR',sans-serif;
  font-size:clamp(13px,1.4vw,16px);
  color:rgba(255,255,255,0.55);
  font-weight:500;
}
.hcard-desc{
  font-size:11px;
  color:rgba(255,255,255,0.45);
  line-height:1.5;
}

/* ── CTA 버튼 ── */
.hero-cta-wrap{
  display:flex;flex-direction:column;
  align-items:center;
  gap:16px;
}
.hero-cta-btn{
  display:inline-flex;align-items:center;gap:10px;
  background:linear-gradient(135deg,#FF6B35,#FF4500);
  color:#fff;
  padding:18px 48px;border-radius:60px;
  font-size:17px;font-weight:800;letter-spacing:1px;
  text-decoration:none;white-space:nowrap;
  box-shadow:0 8px 32px rgba(255,69,0,0.45);
  transition:all .3s;
  animation:heroCTApulse 2.2s ease-in-out infinite;
}
.hero-cta-btn:hover{
  transform:translateY(-3px) scale(1.02);
  box-shadow:0 12px 40px rgba(255,69,0,0.6);
  animation:none;
}
@keyframes heroCTApulse{
  0%,100%{box-shadow:0 8px 32px rgba(255,69,0,.45);}
  50%{box-shadow:0 8px 40px rgba(255,107,53,.7),0 0 0 10px rgba(255,107,53,.07);}
}
.hero-cta-sub{
  display:flex;align-items:center;gap:12px;
}
.hcs-link{
  display:inline-flex;align-items:center;gap:6px;
  color:rgba(255,255,255,0.55);
  font-size:13px;font-weight:500;
  text-decoration:none;
  transition:color .2s;
}
.hcs-link:hover{color:#fff;}
.hcs-sep{color:rgba(255,255,255,0.2);}
.hcs-map{
  background:none;border:none;
  color:rgba(255,255,255,0.55);
  font-size:13px;font-weight:500;
  cursor:pointer;padding:0;
  display:inline-flex;align-items:center;gap:6px;
  transition:color .2s;
  font-family:'Noto Sans KR',sans-serif;
}
.hcs-map:hover{color:#fff;}

/* 스크롤 인디케이터 */
.hero-scroll{
  position:absolute;bottom:28px;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:8px;
  z-index:3;
}

/* ── index.html 히어로 반응형 ── */
@media(max-width:1024px){
  #hero:not(.fhero){padding:110px 32px 70px;}
}
@media(max-width:768px){
  #hero:not(.fhero){padding:100px 20px 60px;}
}
@media(max-width:480px){
  #hero:not(.fhero){padding:88px 16px 56px;}
}

/* ── index.html 히어로 내부 요소 복원 ── */

/* S-Day 칩 */
.hero-sday-chip{
  display:inline-flex;align-items:center;gap:10px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  color:rgba(255,255,255,0.8);
  font-size:11px;font-weight:600;letter-spacing:3px;
  padding:8px 20px;border-radius:40px;
  margin-bottom:24px;
}
.hero-sday-chip span{
  width:6px;height:6px;border-radius:50%;
  background:var(--gold);
  animation:chipPulse 2s infinite;
  display:inline-block;
}
@keyframes chipPulse{
  0%,100%{opacity:1;}50%{opacity:0.3;}
}

/* 히어로 콘텐츠 래퍼 */
.hero-content{
  position:relative;z-index:2;
  display:flex;flex-direction:column;
  align-items:center;text-align:center;
  width:100%;max-width:860px;
}

/* 히어로 서브 타이틀 */
.hero-sub-title{
  font-size:clamp(22px,3.5vw,34px);
  color:rgba(255,255,255,0.9);
  font-weight:600;
  letter-spacing:2px;
  margin-bottom:8px;
}
.hero-sub-title .point{color:var(--gold);}

/* 영문 설명 */
.hero-desc-line{
  font-size:13px;
  color:rgba(255,255,255,0.4);
  letter-spacing:3px;
  margin-bottom:32px;
}

/* 뱃지 행 */
.hero-badges{
  display:flex;flex-wrap:wrap;
  justify-content:center;gap:10px;
  margin-bottom:28px;
}
.hero-badge-item{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,0.08);
  border:1px solid rgba(255,255,255,0.15);
  color:rgba(255,255,255,0.85);
  font-size:13px;font-weight:500;
  padding:9px 18px;border-radius:30px;
}
.hero-badge-item i{font-size:12px;}
.hero-badge-item.date i{color:var(--gold);}
.hero-badge-item.point i{color:#4DD9AC;}
.hero-badge-item.discount i{color:#FF6B35;}

/* 정보 바 */
.hero-info-bar{
  display:flex;flex-wrap:wrap;
  justify-content:center;align-items:center;
  gap:8px 0;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.1);
  border-radius:16px;
  padding:20px 24px;
  margin-bottom:32px;
  width:100%;max-width:680px;
  backdrop-filter:blur(8px);
}
.hero-info-item{
  display:flex;align-items:center;gap:8px;
  padding:0 16px;
}
.hero-info-item i{
  font-size:14px;color:#4DD9AC;flex-shrink:0;
}
.hero-info-label{
  font-size:10px;color:rgba(255,255,255,0.4);
  font-weight:600;letter-spacing:1px;
  margin-right:4px;
}
.hero-info-val{
  font-size:13px;font-weight:600;color:#fff;
  white-space:nowrap;
}
.hero-info-val em{
  font-style:normal;font-size:11px;
  color:rgba(255,255,255,0.4);margin-left:4px;
}
.hero-info-divider{
  width:1px;height:28px;
  background:rgba(255,255,255,0.15);
}

/* fair.html 전용 레거시 클래스 (빈 선언 유지) */
.hero-left,.hero-right,.hero-visual-card,.hero-trust-badge,
.hero-date-pills,.hero-benefit-list,.hero-cta-row,.hero-cta-primary,
.hero-cta-secondary,.hero-map-link,.hvc-top,.hvc-grid,.hvc-item,
.hvc-date-bar,.hdp-item,.hbl-num,.hbl-txt,.hmt-top,.hmt-main{}

/* 모바일 index.html 히어로 반응형 */
@media(max-width:768px){
  .hero-info-bar{padding:16px 12px;}
  .hero-info-item{padding:4px 10px;}
  .hero-info-divider{display:none;}
  .hero-info-val{white-space:normal;font-size:12px;}
  .hero-badge-item{font-size:12px;padding:8px 14px;}
  .hero-sub-title{letter-spacing:1px;}
}
@media(max-width:480px){
  .hero-info-bar{gap:4px 0;}
  .hero-info-item{padding:4px 8px;}
  .hero-badge-item{font-size:11px;}
}

/* ===== benefits 이벤트 정보 카드 ===== */
.event-info-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-bottom:48px;
}
.event-info-card{
  background:var(--white);
  border:1.5px solid var(--cream-border);
  border-radius:var(--radius-lg);
  padding:24px 20px;
  display:flex;align-items:center;gap:16px;
  transition:all 0.3s;
  box-shadow:var(--shadow-sm);
}
.event-info-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadow-md);
  border-color:var(--blue);
}
.event-info-card.highlight{
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  border-color:var(--blue);
}
.event-info-card.highlight .event-info-title,
.event-info-card.highlight .event-info-value{
  color:var(--white);
}
.event-info-icon{
  width:48px;height:48px;
  background:var(--blue-pale);
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  flex-shrink:0;
}
.event-info-card.highlight .event-info-icon{
  background:rgba(255,255,255,0.2);
}
.event-info-icon i{
  font-size:20px;color:var(--blue);
}
.event-info-card.highlight .event-info-icon i{
  color:var(--white);
}
.event-info-title{
  font-size:11px;font-weight:600;letter-spacing:2px;
  color:var(--text-light);text-transform:uppercase;
  margin-bottom:4px;
}
.event-info-value{
  font-size:15px;font-weight:700;
  color:var(--text-dark);line-height:1.4;
}

.hero-buttons{display:flex;gap:16px;justify-content:center;flex-wrap:wrap;}
.btn-primary{
  background:var(--white);color:var(--green-dark);
  padding:16px 40px;border-radius:50px;
  font-size:14px;font-weight:700;letter-spacing:1px;
  text-decoration:none;transition:all 0.3s;
  display:inline-flex;align-items:center;gap:8px;
  border:none;cursor:pointer;
  box-shadow:0 4px 20px rgba(0,0,0,0.2);
}
.btn-primary:hover{transform:translateY(-2px);box-shadow:0 8px 32px rgba(0,0,0,0.25);}
.btn-outline{
  background:transparent;color:var(--white);
  padding:16px 40px;border-radius:50px;
  font-size:14px;font-weight:500;letter-spacing:1px;
  text-decoration:none;transition:all 0.3s;
  display:inline-flex;align-items:center;gap:8px;
  border:1.5px solid rgba(255,255,255,0.4);cursor:pointer;
}
.btn-outline:hover{background:rgba(255,255,255,0.1);transform:translateY(-2px);}

.hero-scroll{
  position:absolute;bottom:40px;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:8px;
  color:rgba(255,255,255,0.3);font-size:10px;letter-spacing:3px;
  animation:bounce 2s infinite;
}
.hero-scroll-line{
  width:1px;height:40px;
  background:linear-gradient(to bottom,rgba(255,255,255,0.3),transparent);
}
@keyframes bounce{
  0%,100%{transform:translateX(-50%) translateY(0);}
  50%{transform:translateX(-50%) translateY(6px);}
}

/* ===== IMAGE OVERRIDES ===== */
/* 이미지 들어간 비주얼 영역 — 이모지/그라디언트 덮어쓰기 */
.product-visual img,
.gift-visual img,
.honeymoon-visual img,
.hgift-visual img {
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  transition:transform 0.4s ease;
}
.product-card:hover .product-visual img,
.honeymoon-card:hover .honeymoon-visual img { transform:scale(1.05); }

.product-visual,
.gift-visual,
.honeymoon-visual,
.hgift-visual { position:relative; overflow:hidden; }

/* 가격 뱃지는 이미지 위에 표시 */
.product-visual-price { z-index:2; position:absolute; }
.honeymoon-dest { z-index:2; }

/* =====================================================
   FAIR.HTML 전용 히어로 — fair-hero.css 로 분리됨
   style.css 에는 레거시 호환용 최소 규칙만 유지
   ===================================================== */

/* ────────────────────────────────────────────────────────
   아래 .fhero-* 규칙은 fair-hero.css 에서 완전 관리됨
   style.css 에서는 섹션 padding 충돌 방지만 처리
──────────────────────────────────────────────────────── */

/* ── [1] 라이브 뱃지 ── */
.fhero-badge{
  display:inline-flex;align-items:center;gap:8px;
  background:rgba(255,255,255,0.1);
  border:1px solid rgba(249,168,212,0.4);
  color:rgba(255,255,255,0.85);
  font-family:'Noto Sans KR',sans-serif;
  font-size:12px;font-weight:600;letter-spacing:0.5px;
  padding:8px 18px;border-radius:40px;
  margin-bottom:20px;
  backdrop-filter:blur(8px);
  flex-wrap:wrap;justify-content:center;
  max-width:100%;
}
.fhero-dot{
  width:8px;height:8px;border-radius:50%;
  background:#f9a8d4;flex-shrink:0;
  animation:fheroDotPulse 1.8s ease-in-out infinite;
}
@keyframes fheroDotPulse{
  0%,100%{opacity:1;transform:scale(1);}
  50%{opacity:0.3;transform:scale(0.6);}
}

/* ── [2] 영문 브랜드명 ── */
.fhero-brand{
  font-family:'Noto Serif KR',serif;
  font-size:clamp(11px,2.5vw,14px);
  color:#f9d8e8;
  letter-spacing:2px;
  font-weight:400;
  margin-bottom:16px;
  line-height:1.6;
  word-break:break-word;
}

/* ── [3] 메인 타이틀 ── */
.fhero-title{
  font-family:'Noto Serif KR',serif;
  font-size:clamp(34px,9vw,68px);
  font-weight:900;
  color:#fff;
  text-shadow:0 2px 20px rgba(0,0,0,0.5), 0 1px 6px rgba(0,0,0,0.4);
  line-height:1.2;
  letter-spacing:-1px;
  margin-bottom:20px;
  word-break:keep-all;
}
.fhero-accent{
  font-style:normal;
  color:#f9a8d4;
}

/* ── [4] 구분선 ── */
.fhero-divider{
  width:60px;height:1.5px;
  background:#f9a8d4;
  margin:0 auto 20px;
  border-radius:2px;
}

/* ── [5] 서브 문구 ── */
.fhero-sub{
  font-family:'Noto Sans KR',sans-serif;
  font-size:clamp(14px,3.5vw,19px);
  color:rgba(255,255,255,0.90);
  text-shadow:0 1px 8px rgba(0,0,0,0.4);
  font-weight:400;
  line-height:1.8;
  margin-bottom:28px;
  word-break:keep-all;
}

/* ── [6] 정보 칩 4개 ── */
.fhero-chips{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:10px;
  width:100%;
  margin-bottom:28px;
}
.fhero-chip{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:4px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.15);
  border-radius:14px;
  padding:14px 12px;
  min-height:44px;
  backdrop-filter:blur(6px);
}
.fchip-icon{
  font-size:18px;
  line-height:1;
}
.fchip-label{
  font-family:'Noto Sans KR',sans-serif;
  font-size:10px;
  color:rgba(255,255,255,0.5);
  font-weight:500;
  letter-spacing:0.5px;
}
.fchip-val{
  font-family:'Noto Sans KR',sans-serif;
  font-size:13px;
  font-weight:700;
  color:#fff;
  word-break:keep-all;
  text-align:center;
  line-height:1.3;
}

/* ── [7] 핵심 혜택 숫자 3개 ── */
.fhero-stats{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:0;
  width:100%;
  background:rgba(255,255,255,0.05);
  border:1px solid rgba(249,168,212,0.2);
  border-radius:18px;
  padding:20px 16px;
  margin-bottom:28px;
  backdrop-filter:blur(8px);
}
.fhero-stat{
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:6px;
}
.fstat-num{
  display:flex;align-items:baseline;gap:2px;
  white-space:nowrap;   /* 숫자+단위 절대 줄바꿈 금지 */
}
.fstat-big{
  font-family:'Noto Serif KR',serif;
  font-size:clamp(32px,7vw,42px);
  font-weight:700;
  color:#f9a8d4;
  line-height:1;
}
.fstat-unit{
  font-family:'Noto Serif KR',serif;
  font-size:clamp(16px,3.5vw,22px);
  font-weight:700;
  color:#f9a8d4;
}
.fstat-label{
  font-family:'Noto Sans KR',sans-serif;
  font-size:11px;
  color:rgba(255,255,255,0.6);
  font-weight:400;
  white-space:nowrap;
}
/* 세로 구분선 */
.fhero-stat-sep{
  width:1px;height:48px;
  background:rgba(255,255,255,0.15);
  flex-shrink:0;
}

/* ── [8] 버튼 2개 ── */
.fhero-btns{
  display:flex;
  flex-direction:column;
  align-items:stretch;
  gap:12px;
  width:100%;
}
.fhero-btn-primary{
  display:flex;align-items:center;justify-content:center;
  background:linear-gradient(135deg,#e879a0,#c2185b);
  color:#fff;
  font-family:'Noto Sans KR',sans-serif;
  font-size:16px;font-weight:700;
  padding:16px 24px;border-radius:50px;
  text-decoration:none;
  min-height:52px;
  box-shadow:0 6px 24px rgba(194,24,91,0.4);
  transition:transform 0.2s,box-shadow 0.2s;
  letter-spacing:0.5px;
}
.fhero-btn-primary:hover,
.fhero-btn-primary:active{
  transform:translateY(-3px);
  box-shadow:0 10px 32px rgba(194,24,91,0.55);
}
.fhero-btn-outline{
  display:flex;align-items:center;justify-content:center;
  background:transparent;
  color:#fff;
  font-family:'Noto Sans KR',sans-serif;
  font-size:15px;font-weight:500;
  padding:14px 24px;border-radius:50px;
  text-decoration:none;
  min-height:52px;
  border:1.5px solid rgba(255,255,255,0.4);
  transition:background 0.2s,transform 0.2s;
  letter-spacing:0.5px;
}
.fhero-btn-outline:hover,
.fhero-btn-outline:active{
  background:rgba(255,255,255,0.1);
  transform:translateY(-2px);
}

/* ── [9] 스크롤 인디케이터 ── */
.fhero-scroll{
  position:absolute;
  bottom:24px;left:50%;transform:translateX(-50%);
  display:flex;flex-direction:column;align-items:center;gap:6px;
  z-index:3;
  animation:fheroScrollBounce 2s ease-in-out infinite;
}
.fhero-scroll-line{
  width:1px;height:36px;
  background:linear-gradient(to bottom,rgba(255,255,255,0.5),transparent);
  animation:fheroScrollFlow 2s ease-in-out infinite;
}
@keyframes fheroScrollFlow{
  0%{transform:scaleY(0);transform-origin:top;}
  50%{transform:scaleY(1);transform-origin:top;}
  51%{transform:scaleY(1);transform-origin:bottom;}
  100%{transform:scaleY(0);transform-origin:bottom;}
}
.fhero-scroll span{
  font-family:'Noto Sans KR',sans-serif;
  font-size:9px;letter-spacing:3px;
  color:rgba(255,255,255,0.3);
  text-transform:lowercase;
}
@keyframes fheroScrollBounce{
  0%,100%{opacity:0.6;}
  50%{opacity:1;}
}

/* ── 모바일 세로형 (480px 이하) ── */
@media(max-width:480px){
  .fhero-bg{
    /* 모바일 세로 화면 — 인물이 왼쪽에 있으므로 좌측 중심으로 */
    background-position:35% center;
  }
}

/* ── 데스크탑 반응형 (768px 이상) ── */
@media(min-width:768px){
  section.fhero{padding:120px 40px 80px;}
  .fhero-bg{
    /* 데스크탑 가로형 — 이미지 전체가 잘 보이게 중앙 배치 */
    background-size:cover;
    background-position:center center;
  }
  .fhero-chips{
    grid-template-columns:repeat(4,1fr);
    gap:12px;
  }
  .fhero-chip{padding:16px 12px;}
  .fchip-val{font-size:14px;}
  .fhero-btns{
    flex-direction:row;
    justify-content:center;
    gap:16px;
    width:auto;
  }
  .fhero-btn-primary,.fhero-btn-outline{
    width:auto;min-width:200px;
  }
  .fhero-badge{font-size:13px;}
}

/* ── 초소형 모바일 (360px 이하) 추가 보정 ── */
@media(max-width:360px){
  .fhero-title{font-size:30px;}
  .fstat-big{font-size:28px;}
  .fstat-unit{font-size:14px;}
  .fhero-btn-primary,.fhero-btn-outline{font-size:14px;padding:14px 20px;}
  .fhero-bg{
    background-position:30% center;
  }
}

/* =====================================================
   index.html 전용 히어로 복원 CSS
   ===================================================== */
/* index.html #hero 는 별도 클래스 없이 #hero 사용 */
/* fair.html 은 section.fhero 로 분리됨 */

/* ===== SECTION COMMON ===== */
section:not(.fhero):not(.sday-hero){padding:100px 0;}
.container{max-width:1160px;margin:0 auto;padding:0 24px;}
.section-label{
  font-size:11px;font-weight:600;letter-spacing:4px;
  color:var(--green-mid);text-transform:uppercase;
  margin-bottom:12px;display:block;
}
.section-title{
  font-family:'Cormorant Garamond',serif;
  font-size:clamp(36px,5vw,56px);font-weight:400;
  color:var(--green-dark);line-height:1.15;margin-bottom:16px;
}
.section-title em{font-style:italic;color:var(--green-mid);}
.section-title .blue{color:var(--blue);}
.section-desc{font-size:14px;color:var(--text-mid);font-weight:300;line-height:1.9;}
.section-header{margin-bottom:60px;text-align:center;}
.section-header .section-desc{margin:0 auto;}

/* Fade-up animation */
.fade-up{opacity:0;transform:translateY(30px);transition:opacity 0.6s ease,transform 0.6s ease;}
.fade-up.visible{opacity:1;transform:translateY(0);}

/* ===== STATS ===== */
#stats{padding:64px 0;background:var(--green-dark);}
.stats-grid{display:grid;grid-template-columns:repeat(4,1fr);}
.stat-item{
  text-align:center;padding:40px 20px;
  border-right:1px solid rgba(255,255,255,0.1);
}
.stat-item:last-child{border-right:none;}
.stat-number{
  font-family:'Cormorant Garamond',serif;
  font-size:52px;font-weight:500;color:var(--white);
  line-height:1;margin-bottom:8px;
}
.stat-number sup{font-size:24px;color:var(--gold);}
.stat-label{font-size:12px;color:var(--green-pale);letter-spacing:2px;font-weight:300;}

/* ===== 박람회 혜택 ===== */
#benefits{background:var(--white);}
.benefits-grid{
  display:grid;grid-template-columns:repeat(6,1fr);
  border-radius:var(--radius-xl);overflow:hidden;
  border:2px solid #a09080;          /* 외곽 더욱 선명 */
  box-shadow:var(--shadow-md);
}
.benefit-item{
  padding:40px 20px;text-align:center;
  background:var(--white);
  border-right:2px solid #c0b4a4;    /* 내부 세로 구분선 */
  transition:all 0.3s;position:relative;overflow:hidden;
}
.benefit-item::before{
  content:'';position:absolute;
  bottom:0;left:0;right:0;height:4px;
  background:linear-gradient(90deg,var(--blue),#64B5F6);
  transform:scaleX(0);transition:transform 0.3s;transform-origin:left;
}
.benefit-item:hover::before{transform:scaleX(1);}
.benefit-item:last-child{border-right:none;}
.benefit-item:nth-child(6){border-right:none;}
.benefit-item:hover{background:var(--blue-pale);transform:translateY(-4px);z-index:1;box-shadow:var(--shadow-md);}
.benefit-number{
  width:40px;height:40px;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  color:var(--white);border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:15px;font-weight:700;margin:0 auto 16px;
  box-shadow:0 4px 12px rgba(33,150,243,0.3);
}
.benefit-label{font-size:15px;color:var(--text-mid);margin-bottom:10px;font-weight:600;line-height:1.6;}
.benefit-value{
  font-family:'Cormorant Garamond',serif;
  font-size:32px;font-weight:700;color:var(--green-dark);line-height:1;
}
.benefit-value small{
  font-family:'Noto Sans KR',sans-serif;
  font-size:13px;font-weight:600;display:block;
  margin-top:4px;color:var(--blue);
}

/* ===== 혜택 6번 배너 ===== */
.benefit-extra-banner{
  display:flex;align-items:center;gap:24px;
  margin-top:16px;
  background:linear-gradient(135deg,#1a3a5c 0%,#1565C0 60%,#1976D2 100%);
  border-radius:var(--radius-xl);
  padding:28px 40px;
  box-shadow:0 4px 20px rgba(21,101,192,0.3);
  position:relative;overflow:hidden;
}
.benefit-extra-banner::before{
  content:'';position:absolute;inset:0;
  background:radial-gradient(circle at 80% 50%, rgba(255,255,255,0.06) 0%, transparent 60%);
}
.benefit-extra-num{
  width:52px;height:52px;flex-shrink:0;
  background:rgba(255,255,255,0.15);
  border:2px solid rgba(255,255,255,0.3);
  border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:20px;font-weight:800;color:#fff;
}
.benefit-extra-content{flex:1;}
.benefit-extra-label{
  font-size:14px;font-weight:500;color:rgba(255,255,255,0.8);
  margin-bottom:6px;letter-spacing:0.3px;
}
.benefit-extra-label span{color:rgba(255,255,255,0.6);}
.benefit-extra-value{
  font-size:18px;font-weight:700;color:#fff;
  display:flex;align-items:center;gap:8px;flex-wrap:wrap;
}
.benefit-extra-value em{
  font-style:normal;
  font-family:'Cormorant Garamond',serif;
  font-size:32px;font-weight:800;
  color:#FFD54F;letter-spacing:-0.5px;
}
.benefit-extra-icon{
  font-size:48px;color:rgba(255,255,255,0.15);
  flex-shrink:0;
}

/* ===== 백화점 상품권 배너 ===== */
.gift-voucher-banner{
  display:flex;align-items:center;justify-content:space-between;
  flex-wrap:wrap;gap:24px;
  margin-top:48px;
  background:linear-gradient(135deg,#1a1a2e 0%,#16213e 50%,#0f3460 100%);
  border-radius:var(--radius-xl);
  padding:36px 48px;
  position:relative;overflow:hidden;
  border:1px solid rgba(255,215,0,0.25);
  box-shadow:0 8px 40px rgba(0,0,0,0.3);
}
.gift-voucher-banner::before{
  content:'';position:absolute;
  top:-60px;right:160px;
  width:200px;height:200px;
  background:radial-gradient(circle,rgba(255,215,0,0.12),transparent 70%);
  border-radius:50%;
}
.gift-voucher-left{
  display:flex;align-items:center;gap:24px;flex:1;min-width:260px;
}
.gift-voucher-icon{
  font-size:52px;line-height:1;flex-shrink:0;
  animation:bounce 2s infinite;
}
@keyframes bounce{
  0%,100%{transform:translateY(0);}
  50%{transform:translateY(-8px);}
}
.gift-voucher-label{
  font-size:11px;font-weight:700;letter-spacing:3px;
  color:rgba(255,215,0,0.8);text-transform:uppercase;
  margin-bottom:8px;
}
.gift-voucher-title{
  font-size:22px;font-weight:800;color:#fff;
  margin-bottom:6px;line-height:1.3;
}
.gift-voucher-title em{
  font-style:normal;color:#FFD700;
  font-size:28px;
}
.gift-voucher-sub{
  font-size:12px;color:rgba(255,255,255,0.55);
  font-weight:400;line-height:1.6;
}
.gift-voucher-badge{
  display:flex;flex-direction:column;align-items:center;justify-content:center;
  width:110px;height:110px;
  background:linear-gradient(135deg,#FFD700,#FFA000);
  border-radius:50%;
  text-align:center;flex-shrink:0;
  box-shadow:0 4px 24px rgba(255,215,0,0.4);
  position:relative;z-index:1;
}
.gift-voucher-badge span{
  font-size:10px;font-weight:700;letter-spacing:2px;color:#7B3F00;
  text-transform:uppercase;
}
.gift-voucher-badge strong{
  font-size:18px;font-weight:900;color:#3E2000;
  line-height:1.2;
}

/* ===== 이벤트 상품 ===== */
#products{
  background:linear-gradient(150deg,var(--blue-dark) 0%,var(--blue) 60%,#42A5F5 100%);
  position:relative;overflow:hidden;
}
#products::before{
  content:'';position:absolute;
  width:600px;height:600px;border-radius:50%;
  background:rgba(255,255,255,0.04);
  top:-200px;right:-100px;
}
#products::after{
  content:'';position:absolute;
  width:400px;height:400px;border-radius:50%;
  background:rgba(255,255,255,0.03);
  bottom:-100px;left:-100px;
}
#products .section-label{color:rgba(255,255,255,0.7);}
#products .section-title{color:var(--white);}
#products .section-title em{color:#FFE082;font-style:normal;font-weight:700;}
#products .section-desc{color:rgba(255,255,255,0.65);}

.products-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;position:relative;z-index:1;}

.product-card{
  background:var(--white);border-radius:var(--radius-lg);
  overflow:hidden;transition:all 0.35s;
  cursor:pointer;position:relative;
}
.product-card:hover{transform:translateY(-8px);box-shadow:0 24px 60px rgba(0,0,0,0.25);}

/* 상품 헤더 (이미지 또는 그라디언트) */
.product-visual{
  height:250px;position:relative;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;padding:0;
}
.product-visual img {
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  transition:transform 0.4s ease;
}
.product-card:hover .product-visual img { transform:scale(1.05); }
.product-card:first-child .product-visual{
  background:linear-gradient(135deg,#E3F2FD,#BBDEFB,#90CAF9);
}
.product-card:last-child .product-visual{
  background:linear-gradient(135deg,#E8F5E9,#C8E6C9,#A5D6A7);
}
.product-visual-icon{
  font-size:72px;opacity:0.6;
  transition:transform 0.4s;
}
.product-card:hover .product-visual-icon{transform:scale(1.1) rotate(-5deg);}
.product-visual-price{
  position:absolute;bottom:16px;right:16px;
  background:var(--white);border-radius:12px;
  padding:8px 18px;
  font-size:22px;font-weight:800;color:var(--blue);
  box-shadow:0 4px 16px rgba(0,0,0,0.12);
}
.product-badge-wrap{
  position:absolute;top:-1px;right:20px;z-index:2;
}
.product-badge{
  background:linear-gradient(135deg,#FF6B35,#FF4500);
  color:var(--white);font-size:11px;font-weight:800;
  padding:6px 16px 10px;border-radius:0 0 14px 14px;
  text-align:center;line-height:1.3;letter-spacing:0.5px;
}
.product-badge.best{background:linear-gradient(135deg,#E53935,#B71C1C);}
.product-info{padding:28px 32px;}
.product-sub-label{
  font-size:11px;font-weight:700;color:var(--blue);
  letter-spacing:2px;text-transform:uppercase;margin-bottom:8px;
}
.product-name{
  font-size:26px;font-weight:800;color:var(--text-dark);
  line-height:1.2;margin-bottom:8px;
}
.product-name .price{color:var(--blue);}
.product-desc{font-size:13px;color:var(--text-light);font-weight:300;margin-bottom:20px;}
.product-select-btn{
  width:100%;padding:13px;border-radius:50px;
  font-family:'Noto Sans KR',sans-serif;font-size:13px;font-weight:600;
  cursor:pointer;transition:all 0.3s;
  border:1.5px solid var(--blue);background:transparent;color:var(--blue);
  display:flex;align-items:center;justify-content:center;gap:8px;
  letter-spacing:0.5px;
}
.product-select-btn:hover,.product-card.active .product-select-btn{
  background:var(--blue);color:var(--white);
}

/* ===== Attendee Event ===== */
#attendee{background:var(--cream-dark);}
.attendee-intro{
  background:var(--white);border-radius:var(--radius-lg);
  padding:28px 36px;margin-bottom:40px;
  display:flex;align-items:center;gap:20px;
  border:1.5px solid var(--cream-border);
}
.attendee-intro-icon{font-size:36px;}
.attendee-intro-text p{font-size:13px;color:var(--text-mid);font-weight:300;margin-top:4px;}
.attendee-intro-text strong{font-size:15px;color:var(--text-dark);}
.attendee-tags{
  display:flex;flex-wrap:wrap;gap:8px;margin-top:10px;
}
.attendee-tag{
  display:inline-block;
  background:var(--green-ultra-pale);
  color:var(--green-dark);
  font-size:12px;font-weight:500;
  padding:5px 14px;border-radius:20px;
  border:1px solid var(--green-pale);
}

.gifts-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:20px;}
.gift-card{
  background:var(--white);border-radius:var(--radius-lg);
  overflow:hidden;transition:all 0.3s;
  border:1.5px solid var(--cream-border);
}
.gift-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md);}
.gift-visual{
  height:200px;display:flex;align-items:center;justify-content:center;
  position:relative;overflow:hidden;padding:0;
}
.gift-visual img{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  transition:transform 0.4s ease;
}
.gift-card:hover .gift-visual img{transform:scale(1.05);}
.gift-card:nth-child(1) .gift-visual{background:linear-gradient(135deg,#FCE4EC,#F8BBD0,#F48FB1);}
.gift-card:nth-child(2) .gift-visual{background:linear-gradient(135deg,#E3F2FD,#BBDEFB,#90CAF9);}
.gift-card:nth-child(3) .gift-visual{background:linear-gradient(135deg,#FFF8E1,#FFECB3,#FFE082);}
.gift-icon{font-size:64px;transition:transform 0.3s;}
.gift-card:hover .gift-icon{transform:scale(1.1) rotate(5deg);}
.gift-body{padding:0;}
.gift-name{
  font-size:16px;font-weight:700;color:var(--text-dark);
  padding:18px 20px 10px;text-align:center;
}
.gift-tag{
  display:block;padding:12px;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  color:var(--white);font-size:13px;font-weight:600;
  text-align:center;letter-spacing:0.5px;
}

/* ===== 추첨 이벤트 ===== */
#lottery{
  background:linear-gradient(145deg,#00695C,#00897B,#26A69A);
  position:relative;overflow:hidden;
}
#lottery::before{
  content:'';position:absolute;
  width:500px;height:500px;border-radius:50%;
  background:rgba(255,255,255,0.05);
  bottom:-150px;right:-100px;
}
#lottery .section-label{color:rgba(255,255,255,0.7);}
#lottery .section-title{color:var(--white);}
.lottery-title-big{
  font-family:'Noto Sans KR',sans-serif;
  font-size:clamp(36px,5vw,56px);font-weight:800;
  color:var(--white);line-height:1.2;
  margin-bottom:16px;
}
.lottery-title-big .kwang{color:#FFB300;}
.lottery-chip{
  display:inline-flex;align-items:center;gap:10px;
  background:rgba(255,255,255,0.15);
  border:1px solid rgba(255,255,255,0.25);
  color:var(--white);font-size:13px;font-weight:600;
  padding:10px 22px;border-radius:40px;margin-bottom:48px;
}
.lottery-cards{display:grid;grid-template-columns:1fr 1fr;gap:24px;position:relative;z-index:1;}
.lottery-card{
  background:var(--white);border-radius:var(--radius-lg);
  padding:40px 36px;transition:all 0.3s;
}
.lottery-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg);}
.lottery-num{
  width:48px;height:48px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;
  font-size:18px;font-weight:800;margin-bottom:20px;
}
.lottery-num.n1{background:linear-gradient(135deg,#FF6B6B,#E53935);color:var(--white);}
.lottery-num.n2{background:linear-gradient(135deg,#4ECDC4,#00897B);color:var(--white);}
.lottery-card-title{font-size:22px;font-weight:800;color:var(--text-dark);margin-bottom:10px;}
.lottery-card-desc{font-size:14px;color:var(--text-mid);font-weight:300;line-height:1.8;}
.lottery-card-value{
  margin-top:16px;padding:14px;
  background:var(--cream);border-radius:var(--radius-sm);
  font-size:16px;font-weight:700;color:var(--green-dark);text-align:center;
}

/* ===== 신혼여행 ===== */
#honeymoon{background:var(--blue-pale);}
.honeymoon-grid{display:grid;grid-template-columns:repeat(2,1fr);gap:24px;}
.honeymoon-card{
  background:var(--white);border-radius:var(--radius-lg);
  overflow:hidden;transition:all 0.3s;
  border:1.5px solid rgba(33,150,243,0.15);
}
.honeymoon-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-blue);}
.honeymoon-visual{
  height:160px;position:relative;
  display:flex;align-items:center;justify-content:center;
  overflow:hidden;
}
.honeymoon-card:nth-child(1) .honeymoon-visual{background:linear-gradient(135deg,#E8F5E9,#80CBC4,#26A69A);}
.honeymoon-card:nth-child(2) .honeymoon-visual{background:linear-gradient(135deg,#E3F2FD,#4FC3F7,#0288D1);}
.honeymoon-card:nth-child(3) .honeymoon-visual{background:linear-gradient(135deg,#FFF8E1,#FFCC02,#FF8F00);}
.honeymoon-card:nth-child(4) .honeymoon-visual{background:linear-gradient(135deg,#EDE7F6,#9575CD,#4527A0);}
.honeymoon-visual-icon{font-size:60px;opacity:0.7;transition:transform 0.4s;}
.honeymoon-card:hover .honeymoon-visual-icon{transform:scale(1.1);}
.honeymoon-dest{
  position:absolute;bottom:12px;left:16px;
  background:rgba(0,0,0,0.5);backdrop-filter:blur(4px);
  color:var(--white);font-size:11px;font-weight:700;
  padding:5px 14px;border-radius:20px;letter-spacing:1px;
}
.honeymoon-info{padding:24px 28px;}
.honeymoon-name{
  font-size:18px;font-weight:700;color:var(--green-dark);
  margin-bottom:8px;
  text-decoration:underline;text-underline-offset:4px;
  text-decoration-color:var(--blue);
}
.honeymoon-price{
  display:inline-flex;align-items:center;gap:6px;
  font-size:15px;font-weight:700;color:var(--blue);
  margin-bottom:10px;
}
.honeymoon-desc{font-size:13px;color:var(--text-mid);font-weight:300;line-height:1.7;}

/* ===== 허니문 사은품 ===== */
#honeymoon-gifts{
  background:linear-gradient(150deg,var(--blue-dark),var(--blue));
}
#honeymoon-gifts .section-label{color:rgba(255,255,255,0.7);}
#honeymoon-gifts .section-title{color:var(--white);}
#honeymoon-gifts .section-desc{color:rgba(255,255,255,0.65);}
.hgifts-contract-tag{
  display:inline-flex;align-items:center;gap:8px;
  background:#FFC107;color:#1A237E;
  font-size:13px;font-weight:800;
  padding:10px 24px;border-radius:40px;
  margin-bottom:48px;
}
.hgifts-grid{display:grid;grid-template-columns:1fr 1fr;gap:24px;position:relative;z-index:1;}
.hgift-card{
  background:var(--white);border-radius:var(--radius-lg);
  display:flex;overflow:hidden;transition:all 0.3s;
}
.hgift-card:hover{transform:translateY(-4px);box-shadow:0 20px 60px rgba(0,0,0,0.2);}
.hgift-visual{
  width:180px;flex-shrink:0;
  display:flex;align-items:center;justify-content:center;
}
.hgift-card:nth-child(1) .hgift-visual{background:linear-gradient(135deg,#E8EAF6,#C5CAE9,#9FA8DA);}
.hgift-card:nth-child(2) .hgift-visual{background:linear-gradient(135deg,#E1F5FE,#B3E5FC,#81D4FA);}
.hgift-icon{font-size:56px;transition:transform 0.4s;}
.hgift-card:hover .hgift-icon{transform:scale(1.1) rotate(-5deg);}
.hgift-info{padding:28px 28px;flex:1;}
.hgift-sub{font-size:12px;color:var(--text-light);font-weight:300;margin-bottom:8px;}
.hgift-name{font-size:22px;font-weight:800;color:var(--text-dark);margin-bottom:12px;}
.hgift-num-badge{
  display:inline-flex;align-items:center;gap:6px;
  background:var(--blue-dark);color:var(--white);
  font-size:13px;font-weight:700;
  padding:8px 20px;border-radius:40px;
}

/* ===== 상담 신청 폼 ===== */
#consultation{background:var(--cream-dark);}
.form-wrap{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start;}
.form-info{position:sticky;top:120px;}
.form-info-card{
  background:var(--green-dark);border-radius:var(--radius-lg);
  padding:48px 40px;color:var(--white);margin-bottom:24px;
}
.form-info-title{
  font-family:'Cormorant Garamond',serif;
  font-size:32px;font-weight:400;margin-bottom:16px;line-height:1.2;
}
.form-info-desc{
  font-size:13px;color:var(--green-pale);
  line-height:1.9;font-weight:300;margin-bottom:32px;
}
.form-info-items{display:flex;flex-direction:column;gap:16px;}
.form-info-item{display:flex;align-items:center;gap:16px;}
.form-info-icon{
  width:40px;height:40px;
  background:rgba(255,255,255,0.1);border-radius:var(--radius-sm);
  display:flex;align-items:center;justify-content:center;
  font-size:18px;flex-shrink:0;
}
.form-info-text strong{display:block;font-size:13px;font-weight:500;color:var(--white);margin-bottom:2px;}
.form-info-text span{font-size:12px;color:var(--green-pale);font-weight:300;}
.form-trust{
  background:var(--white);border-radius:var(--radius-md);
  padding:24px 28px;display:flex;gap:20px;align-items:center;
}
.form-trust-icon{font-size:28px;}
.form-trust-text strong{display:block;font-size:13px;font-weight:600;color:var(--green-dark);margin-bottom:4px;}
.form-trust-text span{font-size:12px;color:var(--text-light);font-weight:300;}

/* Form body */
.consult-form{
  background:var(--white);border-radius:var(--radius-xl);
  padding:52px 48px;box-shadow:var(--shadow-md);
}
.form-title{
  font-family:'Cormorant Garamond',serif;
  font-size:28px;font-weight:500;color:var(--green-dark);margin-bottom:8px;
}
.form-subtitle{font-size:13px;color:var(--text-light);font-weight:300;margin-bottom:36px;}
.selected-package-display{
  background:var(--green-ultra-pale);
  border:1.5px solid var(--green-pale);
  border-radius:var(--radius-md);
  padding:16px 20px;margin-bottom:28px;
  display:flex;align-items:center;gap:12px;
}
.selected-package-display.hidden{display:none;}
.selected-package-label{
  font-size:11px;color:var(--green-mid);font-weight:600;
  letter-spacing:1px;text-transform:uppercase;white-space:nowrap;
}
.selected-package-name{font-size:14px;font-weight:600;color:var(--green-dark);}
.form-group{margin-bottom:20px;}
.form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px;}
.form-label{
  display:block;font-size:12px;font-weight:600;
  color:var(--text-mid);letter-spacing:1px;text-transform:uppercase;margin-bottom:8px;
}
.form-label .required{color:var(--green-mid);margin-left:3px;}
.form-input,.form-select,.form-textarea{
  width:100%;padding:14px 18px;
  border:1.5px solid var(--cream-border);border-radius:var(--radius-sm);
  font-family:'Noto Sans KR',sans-serif;font-size:14px;
  color:var(--text-dark);background:var(--cream);
  transition:all 0.3s;outline:none;appearance:none;
}
.form-input:focus,.form-select:focus,.form-textarea:focus{
  border-color:var(--green-mid);background:var(--white);
  box-shadow:0 0 0 4px rgba(74,124,111,0.08);
}
/* 필드 유효성 에러 */
.form-input.field-error,.form-select.field-error{
  border-color:#E53935 !important;
  box-shadow:0 0 0 3px rgba(229,57,53,.12) !important;
}
.field-error-msg{
  color:#E53935;font-size:11px;font-weight:600;
  margin-top:5px;display:flex;align-items:center;gap:4px;
  animation:fadeInDown .2s ease;
}
@keyframes fadeInDown{from{opacity:0;transform:translateY(-4px);}to{opacity:1;transform:translateY(0);}}
.form-input::placeholder,.form-textarea::placeholder{color:var(--text-light);font-weight:300;}
.form-select{
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%234A7C6F' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat:no-repeat;background-position:right 16px center;
  padding-right:42px;cursor:pointer;
}
.form-textarea{resize:vertical;min-height:120px;line-height:1.7;}
.form-privacy{
  display:flex;align-items:flex-start;gap:12px;
  margin-bottom:28px;padding:16px;
  background:var(--cream);border-radius:var(--radius-sm);
}
.form-privacy input[type="checkbox"]{
  width:18px;height:18px;accent-color:var(--green-mid);
  margin-top:1px;flex-shrink:0;cursor:pointer;
}
.form-privacy label{font-size:12px;color:var(--text-mid);line-height:1.7;cursor:pointer;font-weight:300;}
.form-privacy label strong{color:var(--green-dark);font-weight:600;}
.submit-btn{
  width:100%;padding:18px;
  background:linear-gradient(135deg,var(--green-dark),#0D9A72);color:var(--white);
  border:none;border-radius:50px;
  font-family:'Noto Sans KR',sans-serif;font-size:15px;font-weight:700;
  letter-spacing:2px;cursor:pointer;transition:all 0.3s;
  display:flex;align-items:center;justify-content:center;gap:10px;
  box-shadow:0 6px 24px rgba(6,77,58,0.4);
  position:relative;overflow:hidden;
}
.submit-btn::before{
  content:'';position:absolute;inset:0;
  background:linear-gradient(135deg,rgba(255,255,255,.12),transparent);
  border-radius:50px;
}
.submit-btn:hover:not(:disabled){
  background:linear-gradient(135deg,#0D9A72,#11C78E);
  transform:translateY(-3px);
  box-shadow:0 10px 32px rgba(6,77,58,0.45);
}
.submit-btn:active:not(:disabled){transform:translateY(-1px);}
.submit-btn:disabled{
  background:linear-gradient(135deg,#9CB4AE,#B0C8C2);
  cursor:not-allowed;transform:none;box-shadow:none;opacity:.85;
}

/* ===== 제출 버튼 펄스 강조 효과 ===== */
@keyframes btnPulse{
  0%{box-shadow:0 6px 24px rgba(6,77,58,0.4);}
  50%{box-shadow:0 6px 32px rgba(13,154,114,0.7),0 0 0 8px rgba(77,217,172,0.15);}
  100%{box-shadow:0 6px 24px rgba(6,77,58,0.4);}
}
.submit-btn:not(:disabled){animation:btnPulse 2.5s ease infinite;}

/* Success */
.form-success{display:none;text-align:center;padding:50px 36px;}
.consult-form.submitted .form-content{display:none;}
.consult-form.submitted .form-success{
  display:block;
  animation:successFadeIn .5s ease;
}
@keyframes successFadeIn{from{opacity:0;transform:translateY(16px);}to{opacity:1;transform:translateY(0);}}
@keyframes successBounce{
  0%{transform:scale(0.5);opacity:0;}
  60%{transform:scale(1.15);}
  80%{transform:scale(0.95);}
  100%{transform:scale(1);opacity:1;}
}
.success-icon{font-size:72px;margin-bottom:20px;display:block;}
.success-title{
  font-family:'Cormorant Garamond',serif;font-size:28px;
  color:var(--green-dark);margin-bottom:14px;line-height:1.5;
}
.success-desc{font-size:14px;color:var(--text-mid);line-height:1.9;font-weight:300;margin-bottom:28px;}

/* ===== 지도 팝업 ===== */
.map-popup-overlay{
  display:none;position:fixed;inset:0;
  background:rgba(0,0,0,0.6);
  z-index:9999;
  align-items:center;justify-content:center;
  backdrop-filter:blur(4px);
  padding:20px;
}
.map-popup-overlay.active{display:flex;}
.map-popup-box{
  background:var(--white);
  border-radius:var(--radius-xl);
  width:100%;max-width:560px;
  overflow:hidden;
  box-shadow:0 24px 80px rgba(0,0,0,0.3);
  animation:popupIn 0.3s ease;
}
@keyframes popupIn{
  from{opacity:0;transform:scale(0.92) translateY(20px);}
  to{opacity:1;transform:scale(1) translateY(0);}
}
.map-popup-header{
  display:flex;align-items:center;justify-content:space-between;
  padding:20px 24px;
  background:var(--green-dark);
  color:var(--white);
}
.map-popup-title{
  font-size:17px;font-weight:700;
  display:flex;align-items:center;gap:10px;
}
.map-popup-title i{font-size:18px;color:#A5D6A7;}
.map-popup-close{
  background:rgba(255,255,255,0.15);border:none;
  color:var(--white);width:36px;height:36px;
  border-radius:50%;cursor:pointer;
  display:flex;align-items:center;justify-content:center;
  font-size:16px;transition:background 0.2s;
}
.map-popup-close:hover{background:rgba(255,255,255,0.3);}
.map-popup-addr{
  display:flex;align-items:center;gap:10px;
  padding:14px 24px;
  background:var(--blue-pale);
  font-size:14px;color:var(--text-dark);
  border-bottom:1px solid var(--cream-border);
}
.map-popup-addr i{color:var(--green-mid);font-size:16px;flex-shrink:0;}
.map-popup-addr strong{color:var(--green-dark);}
.map-popup-map{
  width:100%;height:260px;
  background:#e8e8e8;
}
.map-popup-map iframe{
  width:100%;height:100%;border:0;display:block;
}
.map-popup-links{
  display:flex;gap:8px;
  padding:16px 24px;
  border-bottom:1px solid var(--cream-border);
}
.map-link{
  flex:1;display:flex;align-items:center;justify-content:center;gap:6px;
  padding:10px 8px;border-radius:var(--radius-sm);
  font-size:13px;font-weight:600;text-decoration:none;
  transition:all 0.2s;
}
.map-link.naver{background:#03C75A;color:#fff;}
.map-link.naver:hover{background:#02a84a;}
.map-link.kakao{background:#FEE500;color:#3C1E1E;}
.map-link.kakao:hover{background:#f0d800;}
.map-link.google{background:#4285F4;color:#fff;}
.map-link.google:hover{background:#3367d6;}
.map-popup-transport{
  padding:16px 24px;
  display:flex;flex-direction:column;gap:12px;
}
.transport-item{
  display:flex;align-items:flex-start;gap:14px;
}
.transport-icon{font-size:20px;flex-shrink:0;line-height:1.4;}
.transport-item strong{
  display:block;font-size:13px;font-weight:700;
  color:var(--green-dark);margin-bottom:2px;
}
.transport-item span{
  font-size:12px;color:var(--text-mid);line-height:1.5;
}

/* ===== FOOTER ===== */
footer{background:var(--green-dark);color:var(--white);padding:60px 0 32px;}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:60px;margin-bottom:48px;}
.footer-logo-en{
  font-family:'Cormorant Garamond',serif;font-size:28px;font-weight:600;
  color:var(--white);letter-spacing:4px;text-transform:uppercase;margin-bottom:4px;
}
.footer-logo-ko{font-size:12px;color:var(--green-pale);letter-spacing:2px;margin-bottom:20px;}
.footer-desc{font-size:13px;color:rgba(255,255,255,0.5);line-height:1.9;font-weight:300;margin-bottom:28px;}
.footer-social{display:flex;gap:12px;}
.social-link{
  width:40px;height:40px;
  background:rgba(255,255,255,0.08);border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius-sm);display:flex;align-items:center;justify-content:center;
  color:var(--white);font-size:16px;text-decoration:none;transition:all 0.3s;
}
.social-link:hover{background:rgba(255,255,255,0.15);transform:translateY(-2px);}
.footer-col h4{
  font-size:12px;font-weight:600;letter-spacing:2px;text-transform:uppercase;
  color:var(--green-pale);margin-bottom:20px;
}
.footer-links{list-style:none;}
.footer-links li{margin-bottom:10px;}
.footer-links a{color:rgba(255,255,255,0.5);text-decoration:none;font-size:13px;font-weight:300;transition:color 0.3s;}
.footer-links a:hover{color:var(--white);}
.footer-contact-item{
  display:flex;gap:12px;margin-bottom:12px;
  font-size:13px;color:rgba(255,255,255,0.5);font-weight:300;align-items:flex-start;
}
.footer-contact-item span:first-child{color:var(--green-pale);flex-shrink:0;}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,0.1);padding-top:24px;
  display:flex;justify-content:space-between;align-items:center;
  font-size:12px;color:rgba(255,255,255,0.3);flex-wrap:wrap;gap:12px;
}
.footer-bottom a{color:rgba(255,255,255,0.4);text-decoration:none;transition:color 0.3s;}
.footer-bottom a:hover{color:var(--white);}

/* ===== TOAST ===== */
.toast{
  position:fixed;bottom:32px;left:50%;
  transform:translateX(-50%) translateY(80px);
  background:var(--green-dark);color:var(--white);
  padding:14px 28px;border-radius:50px;font-size:14px;
  z-index:9999;transition:transform 0.4s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow:var(--shadow-lg);white-space:nowrap;
}
.toast.show{transform:translateX(-50%) translateY(0);}
.toast.error{background:#E74C3C;}

/* ===== FLOATING BTN ===== */
.float-consult{
  position:fixed;bottom:36px;right:36px;
  background:linear-gradient(135deg,#FF6B35,#FF4500);
  color:#fff;
  padding:20px 36px;border-radius:50px;font-size:16px;font-weight:800;
  text-decoration:none;
  box-shadow:0 8px 32px rgba(255,69,0,0.55),0 2px 8px rgba(0,0,0,0.2);
  transition:opacity 0.25s, transform 0.25s, background 0.2s, box-shadow 0.2s;
  z-index:280;   /* 드로어 오버레이(300)·패널(400) 보다 낮음 */
  display:flex;align-items:center;gap:10px;
  letter-spacing:1.5px;
  animation:floatPulse 2.2s ease-in-out infinite;
  border:2px solid rgba(255,255,255,0.25);
}
.float-consult:hover{
  background:linear-gradient(135deg,#FF4500,#E63900);
  transform:translateY(-4px) scale(1.04);
  box-shadow:0 14px 40px rgba(255,69,0,0.65),0 4px 12px rgba(0,0,0,0.25);
  animation:none;
}
.float-consult i{
  font-size:17px;
}
@keyframes floatPulse{
  0%{box-shadow:0 8px 32px rgba(255,69,0,0.55),0 0 0 0 rgba(255,107,53,0.5);}
  50%{box-shadow:0 10px 36px rgba(255,69,0,0.65),0 0 0 12px rgba(255,107,53,0);}
  100%{box-shadow:0 8px 32px rgba(255,69,0,0.55),0 0 0 0 rgba(255,107,53,0);}
}

/* ===== RESPONSIVE ===== */
@media(max-width:1024px){
  .benefits-grid{grid-template-columns:repeat(3,1fr);}
  /* 1024px 이하 3열 — 3번째마다 우측 border 제거 */
  .benefit-item:nth-child(3n){border-right:none;}
  .benefit-item:nth-child(3n+1),.benefit-item:nth-child(3n+2){border-right:2px solid #c0b4a4;}
  /* 2단 이후부터 위쪽 가로 구분선 */
  .benefit-item:nth-child(n+4){border-top:2px solid #c0b4a4;}
  .form-wrap{grid-template-columns:1fr;gap:40px;}
  .form-info{position:static;}
  .stats-grid{grid-template-columns:repeat(2,1fr);}
  .stat-item{border-right:none;border-bottom:1px solid rgba(255,255,255,0.1);}
  .stat-item:nth-child(odd){border-right:1px solid rgba(255,255,255,0.1);}
}
@media(max-width:768px){
  header{padding:16px 20px;}
  header.scrolled{padding:12px 20px;}
  .home-btn{font-size:11px!important;padding:7px 12px;}

  /* 데스크탑 nav 숨기기 */
  nav{display:none !important;}

  /* 햄버거 버튼 표시 */
  .menu-toggle{display:flex;z-index:200;}
  .menu-toggle span{background:rgba(255,255,255,0.9);}
  header.scrolled .menu-toggle span{background:var(--green-dark);}

  /* ── 드로어 딤 오버레이 ── */
  .drawer-overlay{
    display:none;
    position:fixed;inset:0;
    z-index:300;
    background:rgba(0,0,0,0.6);
    backdrop-filter:blur(2px);
  }
  .drawer-overlay.active{display:block;}

  /* ── 드로어 패널 ── */
  .mobile-drawer{
    position:fixed;
    top:0;right:0;bottom:0;
    width:78%;max-width:290px;
    z-index:400;
    background:linear-gradient(175deg,#042e23 0%,#064D3A 100%);
    display:flex;
    flex-direction:column;
    padding:0;
    overflow-y:auto;
    transform:translateX(100%);
    transition:transform .3s cubic-bezier(.4,0,.2,1);
    box-shadow:-6px 0 32px rgba(0,0,0,0.45);
  }
  .mobile-drawer.open{
    transform:translateX(0);
  }

  /* 드로어 상단 타이틀 바 */
  .drawer-header{
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:20px 24px;
    border-bottom:1px solid rgba(255,255,255,0.08);
    flex-shrink:0;
  }
  .drawer-title{
    font-size:11px;
    font-weight:800;
    letter-spacing:3px;
    color:rgba(255,255,255,0.4);
    text-transform:uppercase;
  }
  .drawer-close{
    width:32px;height:32px;
    background:rgba(255,255,255,0.08);
    border:none;border-radius:50%;
    color:rgba(255,255,255,0.7);
    font-size:16px;
    cursor:pointer;
    display:flex;align-items:center;justify-content:center;
    transition:background .2s;
  }
  .drawer-close:hover{background:rgba(255,255,255,0.15);}

  /* 드로어 링크 목록 */
  .drawer-links{
    flex:1;
    display:flex;
    flex-direction:column;
    padding:8px 0;
  }
  .drawer-links a{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:15px;
    font-weight:600;
    color:rgba(255,255,255,0.82);
    padding:15px 24px;
    border-bottom:1px solid rgba(255,255,255,0.05);
    text-decoration:none;
    transition:all .18s;
  }
  .drawer-links a:hover,
  .drawer-links a:active{
    background:rgba(77,217,172,0.1);
    color:#4DD9AC;
    padding-left:30px;
  }

  /* 드로어 하단 CTA */
  .drawer-cta{
    padding:20px 20px 36px;
    flex-shrink:0;
  }
  .drawer-cta a{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    width:100%;
    padding:15px 20px;
    background:linear-gradient(135deg,#FF6B35,#FF4500);
    color:#fff;
    font-size:15px;
    font-weight:800;
    letter-spacing:1px;
    border-radius:50px;
    text-decoration:none;
    box-shadow:0 6px 20px rgba(255,69,0,0.4);
    transition:all .2s;
  }
  .drawer-cta a:hover{
    background:linear-gradient(135deg,#FF4500,#E63900);
    transform:translateY(-1px);
  }
  /* 히어로 정보바 (구버전 호환) */
  .hero-info-bar{flex-direction:column;gap:8px;padding:20px 20px;}
  .hero-info-divider{width:80%;height:1px;}
  .hero-info-item{justify-content:center;}
  .event-info-grid{grid-template-columns:repeat(2,1fr);}
  .benefits-grid{grid-template-columns:repeat(2,1fr);}
  .gift-voucher-banner{padding:28px 24px;flex-direction:column;text-align:center;}
  .gift-voucher-left{flex-direction:column;text-align:center;}
  /* 768px 이하 2열: 짝수번째 우측 border 제거, 홀수는 유지 */
  .benefit-item:nth-child(odd){border-right:2px solid #c0b4a4 !important;}
  .benefit-item:nth-child(even){border-right:none !important;}
  /* 3번째부터 위쪽 가로 구분선 */
  .benefit-item:nth-child(n+3){border-top:2px solid #c0b4a4 !important;}
  /* 1·2번째는 위쪽 border 없음 */
  .benefit-item:nth-child(1),.benefit-item:nth-child(2){border-top:none !important;}
  .benefit-extra-banner{flex-direction:column;text-align:center;padding:24px 20px;gap:16px;}
  .benefit-extra-value{justify-content:center;}
  .benefit-extra-icon{display:none;}
  .products-grid,.lottery-cards,.honeymoon-grid,.hgifts-grid{grid-template-columns:1fr;}
  .gifts-grid{grid-template-columns:1fr;}
  .consult-form{padding:32px 20px;}
  .form-row{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;gap:32px;}
  .hgift-visual{width:120px;}
  .float-consult{bottom:18px;right:14px;padding:15px 22px;font-size:14px;font-weight:800;letter-spacing:.5px;}
  /* 섹션 공통 여백 줄이기 */
  section:not(.fhero):not(.sday-hero){padding:60px 0;}
  .section-title{font-size:clamp(26px,7vw,40px);}
  .section-desc{font-size:13px;}
  /* 삼성 혜택 그리드 */
  .samsung-gift-grid,.samsung-spec-grid{grid-template-columns:1fr;}
  /* 폼 infomation 카드 */
  .form-info-card{padding:28px 20px;}
  .form-info-title{font-size:22px;}
  /* 허니문 */
  .hgifts-grid{grid-template-columns:1fr;}
}
@media(max-width:480px){
  /* 히어로 */
  .hero-main-title{font-size:clamp(36px,10vw,52px);letter-spacing:-1px;}
  .hero-sday-chip{font-size:10px;padding:7px 14px;letter-spacing:1.5px;}
  /* 참가자 선물 콤보카드 */
  .combo-gift-card{padding:20px 16px;}
  .combo-gift-num{font-size:32px;}
  /* 폼 */
  .consult-form{padding:24px 16px;}
  .submit-btn{font-size:14px;padding:16px;}
  /* 플로팅 버튼 */
  .float-consult{bottom:14px;right:10px;padding:13px 18px;font-size:13px;}
  /* 기타 */
  .hero-buttons{flex-direction:column;align-items:center;}
  .hero-badges{flex-direction:column;align-items:center;}
  .stat-item{border-right:none!important;}
  /* 콜라보 배지 */
  .collab-badge{flex-direction:column;gap:4px;}
  .collab-x{font-size:14px;}
  .collab-badge-item{font-size:12px;padding:6px 14px;}
}
