@charset "utf-8";
/* ==========================================================================
   PP Beauty Labo - Luxury Redesign + Feature Components
   v1.1.0
   ========================================================================== */

/* Google Fonts는 functions.php에서 enqueue (성능 ↑) */

:root {
    --ppb-black: #1a1a1a;
    --ppb-charcoal: #2a2a2a;
    --ppb-deep-brown: #3a2f28;
    --ppb-gold: #c9a961;
    --ppb-gold-dark: #a98a47;
    --ppb-gold-light: #e3cf9c;
    --ppb-rose: #b76e79;
    --ppb-cream: #faf7f2;
    --ppb-ivory: #f5efe6;
    --ppb-pearl: #fbf9f5;
    --ppb-soft-gray: #d8d2c7;
    --ppb-text: #2a2a2a;
    --ppb-text-muted: #6b6258;

    --ppb-serif: "Noto Serif JP", "游明朝", YuMincho, "Hiragino Mincho ProN", serif;
    --ppb-sans: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "ヒラギノ角ゴシック", sans-serif;
    --ppb-display: "Cormorant Garamond", "Playfair Display", "Noto Serif JP", serif;

    --ppb-space-xs: 0.5rem;
    --ppb-space-sm: 1rem;
    --ppb-space-md: 2rem;
    --ppb-space-lg: 4rem;
    --ppb-space-xl: 6rem;

    --ppb-transition: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --ppb-shadow-soft: 0 4px 20px rgba(26, 26, 26, 0.06);
    --ppb-shadow-medium: 0 8px 30px rgba(26, 26, 26, 0.10);
    --ppb-shadow-gold: 0 4px 20px rgba(201, 169, 97, 0.25);
}

/* === SMOOTH ANCHOR SCROLL === */
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

/* === GLOBAL TYPOGRAPHY === */
body {
    font-family: var(--ppb-sans) !important;
    color: var(--ppb-text);
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.02em;
}

h1, h2, h3, h4, h5,
.head_title, .title_main, .title_sub,
[class*="_title"], [class*="title_"] {
    font-family: var(--ppb-serif) !important;
    font-weight: 500 !important;
    letter-spacing: 0.08em !important;
    color: var(--ppb-black) !important;
    line-height: 1.4;
}

.eng_title, [class*="eng"], .en_title {
    font-family: var(--ppb-display) !important;
    font-weight: 400 !important;
    font-style: italic;
    letter-spacing: 0.15em !important;
    color: var(--ppb-gold) !important;
}

/* === HERO === */
.wp-block-jb-mv-001 { position: relative; }
.wp-block-jb-mv-001::after { content: none !important; }
.wp-block-jb-mv-001::before { content: none !important; }

.wp-block-jb-mv-001 + section::before {
    content: none !important;
}

/* === Hero CTA 오버레이 (전환 강화) === */
.ppb-hero-cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem 1rem;
    background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.6) 60%, rgba(0,0,0,0.85) 100%);
    z-index: 5;
    pointer-events: none;
}

.ppb-hero-cta__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    pointer-events: auto;
    position: relative;
}

.ppb-hero-cta__badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--ppb-rose);
    color: #fff;
    font-family: var(--ppb-serif);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    border-radius: 50px;
    margin-bottom: 8px;
    box-shadow: 0 4px 14px rgba(183, 110, 121, 0.4);
    animation: ppbBadgePulse 2s ease-in-out infinite;
}

@keyframes ppbBadgePulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.ppb-hero-cta__usp {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 12px;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
}

.ppb-hero-cta__usp span {
    color: #fff;
    text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}

.ppb-hero-cta__btns {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 8px;
}

.ppb-hero-cta__btn {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    font-family: var(--ppb-serif) !important;
    font-weight: 600 !important;
    font-size: 0.9rem !important;
    letter-spacing: 0.1em !important;
    text-decoration: none !important;
    transition: all 0.3s ease !important;
    min-width: 180px;
    text-align: center;
    overflow: visible !important;
}

.ppb-hero-cta__btn::before,
.ppb-hero-cta__btn::after {
    display: none !important;
    content: none !important;
}

.ppb-hero-cta__btn--primary {
    background: var(--ppb-gold) !important;
    color: #fff !important;
    border: 1px solid var(--ppb-gold) !important;
    box-shadow: 0 4px 14px rgba(201, 169, 97, 0.4) !important;
}

.ppb-hero-cta__btn--primary:hover {
    background: var(--ppb-gold-dark) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
}

.ppb-hero-cta__btn--secondary {
    background: rgba(255,255,255,0.95) !important;
    color: var(--ppb-black) !important;
    border: 1px solid rgba(255,255,255,0.9) !important;
}

.ppb-hero-cta__btn--secondary:hover {
    background: #fff !important;
    color: var(--ppb-black) !important;
    transform: translateY(-2px) !important;
}

.ppb-hero-cta__note {
    color: rgba(255,255,255,0.85);
    font-size: 0.75rem;
    margin: 0;
    letter-spacing: 0.05em;
    text-shadow: 0 1px 4px rgba(0,0,0,0.6);
}

@media (max-width: 768px) {
    .ppb-hero-cta {
        padding: 1rem 0.75rem;
    }
    .ppb-hero-cta__usp {
        gap: 12px;
        font-size: 0.7rem;
        margin-bottom: 8px;
    }
    .ppb-hero-cta__btns {
        gap: 8px;
        flex-direction: column;
        align-items: center;
    }
    .ppb-hero-cta__btn {
        min-width: 220px;
        font-size: 0.85rem !important;
        padding: 10px 24px !important;
    }
}

/* === CTA 버튼 === */
a.btn, .btn a, button:not(.no-luxury), input[type="submit"],
[class*="button"] a, .bm1 a, .bm2 a {
    position: relative;
    display: inline-block;
    padding: 14px 36px !important;
    background: var(--ppb-black) !important;
    color: #fff !important;
    border: 1px solid var(--ppb-black) !important;
    font-family: var(--ppb-serif) !important;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-decoration: none !important;
    transition: var(--ppb-transition);
    overflow: hidden;
    z-index: 1;
}

a.btn::before, .btn a::before, [class*="button"] a::before {
    content: "";
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: var(--ppb-gold);
    transition: left var(--ppb-transition);
    z-index: -1;
}

a.btn:hover::before, .btn a:hover::before, [class*="button"] a:hover::before { left: 0; }

a.btn:hover, .btn a:hover {
    border-color: var(--ppb-gold) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: var(--ppb-shadow-gold);
}

/* === 섹션 === */
/* 히어로(MV) 제외하고 나머지 섹션만 padding 적용 */
section.jbg_block:not(.wp-block-jb-mv-001) {
    /* padding 제거 - 본번 그대로 */
}

/* 히어로는 본번 그대로 유지 - padding 0 */
.wp-block-jb-mv-001 {
    padding: 0 !important;
    margin: 0 !important;
}

/* Jet-CMS 섹션들 사이 간격 줄이기 (더 타이트) */
section.jbg_block:not(.wp-block-jb-mv-001) {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* MENU 헤더 위 여백 최소화 */
.wp-block-jb-bn-001 .wp-block-jb-bn-001__header,
.wp-block-jb-bn-001__header.jbg_area_header {
    padding-top: 0 !important;
    padding-bottom: 0.5rem !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

/* 모든 jbg block의 inner도 타이트하게 */
.wp-block-jb-bn-001 .wp-block-jb-bn-001__area_inner,
.wp-block-jb-cp-001 .wp-block-jb-cp-001__area_inner,
.wp-block-jb-tks-001 .wp-block-jb-tks-001__area_inner {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
}

/* area title 위 여백도 줄이기 */
.wp-block-jb-bn-001__area_title,
.wp-block-jb-bn-001__area_sub_title {
    margin-top: 0 !important;
}

/* ppb 섹션 직후의 jbg 섹션은 더욱 타이트하게 */
[class*="ppb-"] + section.jbg_block,
[class*="ppb-"] + .wp-block-jb-bn-001,
[class*="ppb-"] + .wp-block-jb-cp-001 {
    padding-top: 0 !important;
    margin-top: 0 !important;
}

/* 비어있는 Topics 섹션 숨김 */
.wp-block-jb-tks-001 {
    display: none !important;
}

.wp-block-jb-mv-001 img,
.wp-block-jb-mv-001 picture,
.wp-block-jb-mv-001 video {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
}

/* 짝수 섹션 배경 제거 (본번처럼) */
/* section:nth-child(even).jbg_block { background: var(--ppb-pearl); } */

/* === HEADER === */
#upper {
    background: #ffffff !important;
    border-bottom: 1px solid rgba(201, 169, 97, 0.15);
    transition: var(--ppb-transition);
}

/* body 배경을 헤더와 동일하게 */
body {
    background-color: #ffffff !important;
}

/* 헤더와 hero 사이 공백 제거 */
#upper + *,
.allwrapper > section:first-child,
main > section:first-child {
    margin-top: 0 !important;
}

/* 헤더 메뉴 우측 정렬 */
#upper .head_inner {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
}

#upper .head_inner > nav,
#upper nav.global_nav,
#upper .head_inner nav {
    margin-left: auto !important;
}

@media (max-width: 768px) {
    #upper nav { margin-left: 0 !important; }
}

/* 기존 LINE 단독 플로팅 숨김 (FAB로 통합) */
.ppb-line-float { display: none !important; }

/* === FAB (Floating Action Button) - 4개 통합 === */
.ppb-fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 9998;
    font-family: var(--ppb-sans);
}

.ppb-fab__main {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 14px 22px !important;
    background: var(--ppb-black) !important;
    color: #fff !important;
    border: none !important;
    border-radius: 50px !important;
    font-family: var(--ppb-serif) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.1em !important;
    cursor: pointer !important;
    box-shadow: 0 4px 16px rgba(0,0,0,0.25) !important;
    transition: all 0.3s ease !important;
    overflow: visible !important;
    text-transform: none !important;
}

.ppb-fab__main::before,
.ppb-fab__main::after { display: none !important; content: none !important; }

.ppb-fab__main:hover {
    background: var(--ppb-gold) !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4) !important;
}

.ppb-fab__main-icon {
    width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--ppb-gold);
    transition: transform 0.3s ease;
}

.ppb-fab__main-icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
    position: absolute;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.ppb-fab__main-icon { position: relative; }
.ppb-fab__icon-close { opacity: 0; transform: rotate(-90deg); }

.ppb-fab.is-open .ppb-fab__icon-open { opacity: 0; transform: rotate(90deg); }
.ppb-fab.is-open .ppb-fab__icon-close { opacity: 1; transform: rotate(0); }

.ppb-fab.is-open .ppb-fab__main { background: var(--ppb-gold) !important; }
.ppb-fab.is-open .ppb-fab__main-icon { color: #fff; }

/* === 메뉴 (펼쳐지는 4개 옵션) === */
.ppb-fab__menu {
    position: absolute;
    bottom: 100%;
    right: 0;
    margin: 0 0 12px 0;
    padding: 8px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    list-style: none;
    min-width: 240px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    border: 1px solid rgba(201, 169, 97, 0.15);
}

.ppb-fab.is-open .ppb-fab__menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.ppb-fab__menu li { margin: 0; padding: 0; }

.ppb-fab__item {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    padding: 12px 16px !important;
    color: var(--ppb-text) !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    transition: background 0.2s ease, color 0.2s ease !important;
    font-size: 0.9rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.03em !important;
}

.ppb-fab__item:hover {
    background: var(--ppb-pearl);
    color: var(--ppb-text) !important;
}

.ppb-fab__item-icon {
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.ppb-fab__item-icon svg { width: 18px; height: 18px; fill: currentColor; }

/* 채널별 컬러 (왼쪽 작은 원형 아이콘) */
.ppb-fab__item--line .ppb-fab__item-icon { background: #06C755; }
.ppb-fab__item--hpb  .ppb-fab__item-icon { background: #ed4242; }
.ppb-fab__item--phone .ppb-fab__item-icon { background: var(--ppb-gold); }
.ppb-fab__item--mail .ppb-fab__item-icon { background: var(--ppb-black); }

.ppb-fab__item-label {
    flex: 1;
    color: var(--ppb-text);
}

/* 모바일 반응형 */
@media (max-width: 480px) {
    .ppb-fab {
        bottom: 80px; /* 하단 고정 메뉴 위로 */
        right: 16px;
    }
    .ppb-fab__main { padding: 12px 18px !important; font-size: 0.85rem !important; }
    .ppb-fab__menu { min-width: 220px; }
}

/* === 메뉴 노란줄/하이라이트 완전 제거 === */

/* span 안의 일본어 sub-text의 노란 배경/하이라이트 제거 */
#upper nav a span,
#upper nav li span,
#upper nav a::before,
#upper nav a::after,
#upper nav li::before,
#upper nav li::after {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    border: none !important;
    border-bottom: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}

/* current 클래스 노란 효과 완전 제거 */
#upper nav li.current,
#upper nav li.current a,
#upper nav li.current a span,
#upper nav li.current-menu-item a,
#upper nav li.current_page_item a,
#upper nav li[class*="current"] a,
#upper nav li[class*="current"] span,
#upper nav li[class*="current"]::before,
#upper nav li[class*="current"]::after,
#upper nav li[class*="current"] a::before,
#upper nav li[class*="current"] a::after {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    color: inherit !important;
    border-bottom: none !important;
    box-shadow: none !important;
}

/* 텍스트 색상은 검정으로 강제 */
#upper nav a,
#upper nav a span,
#upper nav li.current a,
#upper nav li.current a span,
#upper nav li[class*="current"] a,
#upper nav li[class*="current"] a span {
    color: var(--ppb-black) !important;
}

/* 호버시에만 골드 언더라인 (한 번만 적용) */
#upper nav a {
    position: relative;
}

#upper nav a::after {
    content: "" !important;
    position: absolute !important;
    bottom: -4px !important;
    left: 50% !important;
    width: 0 !important;
    height: 1px !important;
    background: var(--ppb-gold) !important;
    transition: width 0.3s ease !important;
    transform: translateX(-50%) !important;
}

#upper nav a:hover::after,
#upper nav li.current > a::after,
#upper nav li[class*="current"] > a::after {
    width: 50% !important;
}

#upper nav a:hover {
    color: var(--ppb-gold-dark) !important;
}

.head_inner a {
    transition: var(--ppb-transition);
    position: relative;
    letter-spacing: 0.1em;
}

.head_inner nav a::after {
    content: "";
    position: absolute;
    bottom: -4px; left: 50%;
    width: 0; height: 1px;
    background: var(--ppb-gold);
    transition: all var(--ppb-transition);
    transform: translateX(-50%);
}

.head_inner nav a:hover::after, .head_inner nav a.current::after { width: 70%; }
.head_inner nav a:hover { color: var(--ppb-gold-dark) !important; }

/* === BOX === */
.box, .cont, .cbc_cont { transition: var(--ppb-transition); }
.box:hover { transform: translateY(-4px); box-shadow: var(--ppb-shadow-medium); }
img { transition: var(--ppb-transition); }
.box img:hover, .imgwrap img:hover, a:hover img { transform: scale(1.03); }
.box img, .cont img, [class*="bn"] img, [class*="bm"] img { border-radius: 4px; }

/* === FOOTER === */
#footer, .footer, [id*="footer"] { background: var(--ppb-black) !important; color: var(--ppb-cream); }
#footer a, .footer a { color: var(--ppb-cream) !important; transition: var(--ppb-transition); }
#footer a:hover, .footer a:hover { color: var(--ppb-gold) !important; }

/* === 우측 노란 사이드바 완전 숨김 (LINE 플로팅 + CTA 배너로 대체) === */
.fix_wrap, .fix_wrap.pc_fcbg2, .fix_wrap.pc_fcbg3, .fix_wrap[class*="fcbg"],
.fix_cont, .fix_cont.fc_pc, .fix_cont.fc_sp {
    display: none !important;
}

/* News 섹션 - 슬라이더 그대로 작동 (CSS 오버라이드 X) */

/* === FORM === */
input[type="text"], input[type="email"], input[type="tel"], textarea, select {
    border: 1px solid var(--ppb-soft-gray) !important;
    border-radius: 2px !important;
    padding: 12px 16px !important;
    transition: var(--ppb-transition);
    font-family: var(--ppb-sans) !important;
}

input:focus, textarea:focus {
    border-color: var(--ppb-gold) !important;
    box-shadow: 0 0 0 3px rgba(201, 169, 97, 0.15) !important;
    outline: none !important;
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.ppb-trust-section {
    padding: var(--ppb-space-xl) var(--ppb-space-md);
    background: linear-gradient(180deg, var(--ppb-pearl) 0%, var(--ppb-cream) 100%);
    text-align: center;
}

.ppb-section-label {
    font-family: var(--ppb-display);
    font-style: italic;
    color: var(--ppb-gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-size: 0.875rem;
    margin-bottom: var(--ppb-space-sm);
    display: block;
}

.ppb-trust-section h2 {
    font-family: var(--ppb-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: var(--ppb-space-lg);
}

.ppb-testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--ppb-space-md);
    max-width: 1100px;
    margin: 0 auto;
}

.ppb-testimonial {
    background: #fff;
    padding: var(--ppb-space-lg) var(--ppb-space-md);
    border-radius: 4px;
    box-shadow: var(--ppb-shadow-soft);
    text-align: left;
    position: relative;
    transition: var(--ppb-transition);
}

.ppb-testimonial:hover { transform: translateY(-6px); box-shadow: var(--ppb-shadow-medium); }

.ppb-testimonial::before {
    content: "\201C";
    position: absolute;
    top: 10px; left: 16px;
    font-family: var(--ppb-display);
    font-size: 4rem;
    color: var(--ppb-gold-light);
    line-height: 1;
}

.ppb-testimonial-text {
    font-family: var(--ppb-serif);
    line-height: 1.8;
    color: var(--ppb-text);
    margin-bottom: var(--ppb-space-md);
    position: relative;
    z-index: 1;
}

.ppb-testimonial-author {
    border-top: 1px solid var(--ppb-soft-gray);
    padding-top: var(--ppb-space-sm);
    font-size: 0.875rem;
    color: var(--ppb-text-muted);
}

.ppb-testimonial-author strong {
    display: block;
    color: var(--ppb-black);
    margin-bottom: 2px;
    font-weight: 500;
}

.ppb-stars {
    color: var(--ppb-gold);
    margin-bottom: var(--ppb-space-sm);
    letter-spacing: 2px;
}

/* ==========================================================================
   1. MOBILE STICKY BOTTOM CTA
   ========================================================================== */

.ppb-mobile-cta {
    display: none;
}

@media (max-width: 768px) {
    .ppb-mobile-cta {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9998;
        background: var(--ppb-black);
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        padding: 0;
    }

    .ppb-mobile-cta__btn {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 10px 4px;
        color: #fff !important;
        text-decoration: none !important;
        font-size: 11px;
        font-family: var(--ppb-sans);
        transition: var(--ppb-transition);
        border-right: 1px solid rgba(255,255,255,0.1);
        gap: 4px;
    }

    .ppb-mobile-cta__btn:last-child { border-right: none; }

    .ppb-mobile-cta__btn--line { background: #06C755; }
    .ppb-mobile-cta__btn--phone { background: var(--ppb-gold); color: var(--ppb-black) !important; }
    .ppb-mobile-cta__btn--book { background: var(--ppb-black); }

    .ppb-mobile-cta__btn:active { transform: scale(0.98); }

    .ppb-mobile-cta__icon {
        width: 22px;
        height: 22px;
        display: block;
    }

    .ppb-mobile-cta__icon svg { width: 100%; height: 100%; fill: currentColor; }

    .ppb-mobile-cta__label {
        font-weight: 600;
        letter-spacing: 0.05em;
    }

    /* 모바일에서 본문 하단 여백 추가 (CTA에 가리지 않게) */
    body { padding-bottom: 64px !important; }

    /* 기존 LINE 플로팅 버튼은 모바일에서 숨김 (하단 CTA로 대체) */
    .ppb-line-float { display: none !important; }
}

/* ==========================================================================
   2. FAQ SECTION
   ========================================================================== */

.ppb-faq-section {
    padding: var(--ppb-space-xl) var(--ppb-space-md);
    max-width: 900px;
    margin: 0 auto;
}

.ppb-faq-section .ppb-section-header {
    text-align: center;
    margin-bottom: var(--ppb-space-lg);
}

.ppb-faq-section h2 {
    font-family: var(--ppb-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
}

.ppb-faq-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.ppb-faq-item {
    background: #fff;
    border: 1px solid var(--ppb-soft-gray);
    border-radius: 4px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: var(--ppb-transition);
}

.ppb-faq-item:hover {
    border-color: var(--ppb-gold);
    box-shadow: var(--ppb-shadow-soft);
}

.ppb-faq-question {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 18px 24px;
    cursor: pointer;
    font-family: var(--ppb-serif);
    font-weight: 500;
    color: var(--ppb-black);
    user-select: none;
    transition: var(--ppb-transition);
}

.ppb-faq-question:hover { background: var(--ppb-pearl); }

.ppb-faq-question::before {
    content: "Q";
    flex: 0 0 32px;
    width: 32px;
    height: 32px;
    line-height: 32px;
    text-align: center;
    background: var(--ppb-gold);
    color: var(--ppb-black);
    font-family: var(--ppb-display);
    font-style: italic;
    font-weight: 600;
    border-radius: 50%;
}

.ppb-faq-question::after {
    content: "+";
    margin-left: auto;
    font-size: 1.5rem;
    color: var(--ppb-gold);
    transition: transform var(--ppb-transition);
    flex: 0 0 auto;
}

.ppb-faq-item[open] .ppb-faq-question::after {
    content: "−";
    transform: rotate(180deg);
}

.ppb-faq-answer {
    padding: 0 24px 20px 72px;
    color: var(--ppb-text-muted);
    line-height: 1.8;
    font-family: var(--ppb-sans);
}

.ppb-faq-answer p { margin: 0 0 12px; }
.ppb-faq-answer p:last-child { margin-bottom: 0; }

/* ==========================================================================
   3. BEFORE / AFTER SECTION
   ========================================================================== */

.ppb-ba-section {
    padding: var(--ppb-space-xl) var(--ppb-space-md);
    background: var(--ppb-cream);
    text-align: center;
}

.ppb-ba-section h2 {
    font-family: var(--ppb-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: var(--ppb-space-md);
}

.ppb-ba-description {
    max-width: 600px;
    margin: 0 auto var(--ppb-space-lg);
    color: var(--ppb-text-muted);
    line-height: 1.8;
}

.ppb-ba-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--ppb-space-md);
    max-width: 1100px;
    margin: 0 auto;
}

.ppb-ba-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--ppb-shadow-soft);
    transition: var(--ppb-transition);
}

.ppb-ba-card:hover { transform: translateY(-6px); box-shadow: var(--ppb-shadow-medium); }

.ppb-ba-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    background: var(--ppb-soft-gray);
}

.ppb-ba-image {
    aspect-ratio: 1;
    background: var(--ppb-pearl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--ppb-text-muted);
    font-family: var(--ppb-display);
    font-style: italic;
    font-size: 1.25rem;
    position: relative;
    background-size: cover;
    background-position: center;
}

.ppb-ba-image::before {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(26,26,26,0.85);
    color: var(--ppb-gold);
    padding: 4px 12px;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    border-radius: 2px;
    z-index: 2;
}

.ppb-ba-image--before::before { content: "Before"; }
.ppb-ba-image--after::before { content: "After"; }

.ppb-ba-info {
    padding: var(--ppb-space-md);
    text-align: left;
}

.ppb-ba-info h3 {
    font-family: var(--ppb-serif);
    font-size: 1.1rem;
    margin: 0 0 8px;
    color: var(--ppb-black);
}

.ppb-ba-info p {
    margin: 0;
    color: var(--ppb-text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* === Before/After v2 - 데이터 카드 (사진 대신) === */
.ppb-ba-card-v2 {
    background: #fff;
    padding: 32px 24px;
    border-radius: 8px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    text-align: center;
    transition: var(--ppb-transition);
    position: relative;
    overflow: hidden;
}

.ppb-ba-card-v2::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--ppb-gold), transparent);
    opacity: 0;
    transition: var(--ppb-transition);
}

.ppb-ba-card-v2:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--ppb-gold-light);
}

.ppb-ba-card-v2:hover::before {
    opacity: 1;
}

.ppb-ba-card-v2__icon {
    font-size: 2.5rem;
    margin-bottom: 8px;
    line-height: 1;
}

.ppb-ba-card-v2__area {
    font-family: var(--ppb-serif);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--ppb-black);
    margin: 0 0 20px;
    letter-spacing: 0.05em;
}

/* 동그라미 차트 (감소율) */
.ppb-ba-card-v2__chart {
    margin: 0 auto 24px;
    width: 140px;
    height: 140px;
    position: relative;
}

.ppb-ba-card-v2__chart-fill {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background:
        conic-gradient(var(--ppb-gold) 0% var(--reduction), var(--ppb-pearl) var(--reduction) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.ppb-ba-card-v2__chart-fill::before {
    content: "";
    position: absolute;
    inset: 14px;
    background: #fff;
    border-radius: 50%;
}

.ppb-ba-card-v2__chart-value {
    position: relative;
    z-index: 1;
    font-family: var(--ppb-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--ppb-gold-dark);
    line-height: 1;
}

.ppb-ba-card-v2__chart-label {
    display: block;
    margin-top: 8px;
    color: var(--ppb-text-muted);
    font-size: 0.75rem;
    letter-spacing: 0.15em;
}

.ppb-ba-card-v2__stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 16px;
    padding: 16px 0;
    border-top: 1px solid var(--ppb-pearl);
    border-bottom: 1px solid var(--ppb-pearl);
}

.ppb-ba-card-v2__stat {
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.ppb-ba-card-v2__stat strong {
    font-family: var(--ppb-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--ppb-black);
    line-height: 1;
}

.ppb-ba-card-v2__stat span {
    color: var(--ppb-text-muted);
    font-size: 0.85rem;
}

.ppb-ba-card-v2__meta {
    color: var(--ppb-text-muted);
    font-size: 0.8rem;
    line-height: 1.5;
    margin: 0 0 8px;
}

.ppb-ba-card-v2__benefit {
    color: var(--ppb-gold-dark);
    font-weight: 600;
    font-size: 0.875rem;
    margin: 0;
}

/* ==========================================================================
   4. PRICING TABLE
   ========================================================================== */

.ppb-pricing-section {
    padding: var(--ppb-space-xl) var(--ppb-space-md);
    background: linear-gradient(180deg, #fff 0%, var(--ppb-pearl) 100%);
    text-align: center;
}

.ppb-pricing-section h2 {
    font-family: var(--ppb-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    margin-bottom: var(--ppb-space-sm);
}

.ppb-pricing-tagline {
    color: var(--ppb-text-muted);
    margin-bottom: var(--ppb-space-lg);
}

.ppb-pricing-tagline strong {
    color: var(--ppb-gold-dark);
    font-weight: 600;
}

.ppb-pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--ppb-space-md);
    max-width: 1100px;
    margin: 0 auto var(--ppb-space-lg);
}

.ppb-price-card {
    background: #fff;
    padding: var(--ppb-space-lg) var(--ppb-space-md);
    border-radius: 4px;
    border: 1px solid var(--ppb-soft-gray);
    transition: var(--ppb-transition);
    position: relative;
    text-align: center;
}

.ppb-price-card:hover {
    transform: translateY(-6px);
    border-color: var(--ppb-gold);
    box-shadow: var(--ppb-shadow-gold);
}

.ppb-price-card--featured {
    border: 2px solid var(--ppb-gold);
    background: linear-gradient(180deg, #fff 0%, var(--ppb-cream) 100%);
}

.ppb-price-card--featured::before {
    content: "POPULAR";
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--ppb-gold);
    color: var(--ppb-black);
    font-family: var(--ppb-display);
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    padding: 4px 16px;
    border-radius: 12px;
    font-weight: 600;
}

.ppb-price-card h3 {
    font-family: var(--ppb-serif);
    color: var(--ppb-black);
    margin: 0 0 var(--ppb-space-sm);
    font-size: 1.25rem;
}

.ppb-price-amount {
    font-family: var(--ppb-display);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--ppb-gold);
    line-height: 1;
    margin-bottom: 4px;
}

.ppb-price-tax {
    font-size: 0.875rem;
    color: var(--ppb-text-muted);
    margin-left: 4px;
    font-weight: 400;
}

.ppb-price-original {
    margin-bottom: 8px;
    color: var(--ppb-text-muted);
}

.ppb-price-original-label {
    display: block;
    font-size: 0.75rem;
    letter-spacing: 0.15em;
    color: var(--ppb-gold-dark);
    margin-bottom: 4px;
}

.ppb-price-original-amount {
    font-size: 0.95rem;
    text-decoration: line-through;
    color: var(--ppb-text-muted);
}

.ppb-price-arrow {
    color: var(--ppb-gold);
    font-size: 1.25rem;
    margin: 8px 0;
}

.ppb-price-first-label {
    display: inline-block;
    background: var(--ppb-gold);
    color: var(--ppb-black);
    font-family: var(--ppb-serif);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    padding: 4px 14px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-weight: 600;
}

.ppb-price-amount .ppb-price-yen {
    font-size: 1.25rem;
    margin-right: 2px;
}

.ppb-price-unit {
    color: var(--ppb-text-muted);
    font-size: 0.875rem;
    margin-bottom: var(--ppb-space-md);
}

.ppb-price-features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--ppb-space-md);
    text-align: left;
}

.ppb-price-features li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--ppb-text);
    font-size: 0.9rem;
    border-bottom: 1px solid var(--ppb-pearl);
}

.ppb-price-features li:last-child { border-bottom: none; }

.ppb-price-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--ppb-gold);
    font-weight: 700;
}

/* ==========================================================================
   5. GOOGLE MAP / ACCESS SECTION
   ========================================================================== */

.ppb-access-section {
    padding: var(--ppb-space-xl) var(--ppb-space-md);
    background: #fff;
}

.ppb-access-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--ppb-space-lg);
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

@media (max-width: 768px) {
    .ppb-access-grid { grid-template-columns: 1fr; }
}

.ppb-access-info {
    text-align: left;
}

.ppb-access-info h2 {
    font-family: var(--ppb-serif);
    margin-bottom: var(--ppb-space-md);
}

.ppb-access-info dl {
    margin: 0 0 var(--ppb-space-md);
}

.ppb-access-info dt {
    font-family: var(--ppb-serif);
    color: var(--ppb-gold-dark);
    font-size: 0.875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 4px;
    margin-top: var(--ppb-space-sm);
}

.ppb-access-info dt:first-child { margin-top: 0; }

.ppb-access-info dd {
    margin: 0 0 var(--ppb-space-sm);
    color: var(--ppb-text);
    line-height: 1.7;
    font-size: 0.95rem;
}

.ppb-map-wrapper {
    position: relative;
    aspect-ratio: 4/3;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--ppb-shadow-medium);
    border: 1px solid var(--ppb-soft-gray);
}

.ppb-map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(20%) contrast(1.05);
    transition: filter var(--ppb-transition);
}

.ppb-map-wrapper:hover iframe { filter: grayscale(0) contrast(1); }

/* ==========================================================================
   6. INSTAGRAM SECTION (Smash Balloon Style)
   ========================================================================== */

.ppb-insta-section {
    padding: var(--ppb-space-xl) var(--ppb-space-md);
    background: #f4f4f4;
    text-align: center;
}

.ppb-insta-section .ppb-section-label {
    margin-bottom: var(--ppb-space-md);
}

/* === Header: Vertically Centered (Reference style) === */
.ppb-insta-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    margin: 0 auto var(--ppb-space-lg);
    max-width: 500px;
}

.ppb-insta-avatar {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    padding: 2.5px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    flex: 0 0 auto;
    margin-bottom: 8px;
}

.ppb-insta-avatar-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #1a1a1a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-family: var(--ppb-display);
    font-style: italic;
    font-size: 1.25rem;
    font-weight: 600;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.ppb-insta-info {
    width: 100%;
    text-align: center;
}

.ppb-insta-name {
    font-family: var(--ppb-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ppb-black);
    margin-bottom: 2px;
}

.ppb-insta-handle-text {
    color: var(--ppb-text-muted);
    font-size: 0.85rem;
    margin-bottom: 16px;
}

.ppb-insta-stats {
    display: flex;
    gap: 32px;
    margin-bottom: 20px;
    justify-content: center;
}

.ppb-insta-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.75rem;
    color: var(--ppb-text-muted);
    gap: 2px;
}

.ppb-insta-stat strong {
    color: var(--ppb-black);
    font-size: 0.95rem;
    font-weight: 600;
}

.ppb-insta-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff !important;
    text-decoration: none !important;
    border-radius: 50px;
    font-family: var(--ppb-sans);
    font-weight: 500;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: var(--ppb-transition);
    box-shadow: 0 4px 15px rgba(220, 39, 67, 0.3);
    line-height: 1;
}

.ppb-insta-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 39, 67, 0.45);
    color: #fff !important;
}

.ppb-insta-cta svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* === Smash Balloon overrides (caption visible below image, not on hover) === */
.ppb-insta-section #sb_instagram { padding: 0 !important; max-width: 1100px !important; margin: 0 auto !important; }

.ppb-insta-section #sb_instagram .sb_instagram_header,
.ppb-insta-section #sb_instagram .sbi_follow_btn,
.ppb-insta-section #sb_instagram .sbi_load { display: none !important; }

.ppb-insta-section #sb_instagram #sbi_images { gap: 16px !important; }

.ppb-insta-section #sb_instagram .sbi_item .sbi_photo_wrap {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    transition: var(--ppb-transition);
}

.ppb-insta-section #sb_instagram .sbi_item:hover .sbi_photo_wrap {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.ppb-insta-section #sb_instagram .sbi_item .sbi_info {
    padding: 8px 4px 0 !important;
    text-align: left;
    color: var(--ppb-text);
    font-size: 0.85rem;
    line-height: 1.5;
}

.ppb-insta-section #sb_instagram .sbi_caption_wrap {
    margin-top: 4px;
    color: var(--ppb-text);
    font-size: 0.85rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ppb-insta-section #sb_instagram .sbi_hover_top,
.ppb-insta-section #sb_instagram .sbi_hover_bottom,
.ppb-insta-section #sb_instagram .sb_hover_overlay { background: transparent !important; }

/* === Grid === */
.ppb-insta-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .ppb-insta-grid { grid-template-columns: repeat(3, 1fr); gap: 12px; }
}

@media (max-width: 640px) {
    .ppb-insta-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
}

.ppb-insta-item {
    aspect-ratio: 1;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    cursor: pointer;
    transition: var(--ppb-transition);
    background-size: cover;
    background-position: center;
    text-decoration: none !important;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.ppb-insta-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 2;
}

/* multi-image badge (top right) */
.ppb-insta-multi {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 22px;
    height: 22px;
    z-index: 2;
    color: #fff;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
}

.ppb-insta-multi svg { width: 100%; height: 100%; fill: currentColor; }

/* hover overlay with likes + caption */
.ppb-insta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.45) 50%, transparent 100%);
    opacity: 0;
    transition: var(--ppb-transition);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    color: #fff;
    z-index: 1;
    text-align: left;
}

.ppb-insta-item:hover .ppb-insta-overlay { opacity: 1; }

.ppb-insta-likes {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(6px);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 8px;
    align-self: flex-start;
}

.ppb-insta-likes svg { width: 14px; height: 14px; fill: #fff; }

.ppb-insta-caption {
    font-size: 0.78rem;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

/* placeholder for unconnected feed */
.ppb-insta-item--placeholder {
    background: linear-gradient(135deg, #f9ce34 0%, #ee2a7b 50%, #6228d7 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.85);
}

.ppb-insta-item--placeholder .ppb-insta-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
}

.ppb-insta-placeholder-icon {
    width: 36px;
    height: 36px;
    color: #fff;
    fill: currentColor;
    opacity: 0.85;
    transition: var(--ppb-transition);
}

.ppb-insta-item--placeholder:hover .ppb-insta-placeholder-icon {
    transform: scale(1.15);
    opacity: 1;
}

@media (max-width: 768px) {
    .ppb-insta-header { gap: 16px; }
    .ppb-insta-avatar { width: 60px; height: 60px; flex: 0 0 60px; }
    .ppb-insta-name { font-size: 1.1rem; }
    .ppb-insta-stats { gap: 16px; }
}

/* ==========================================================================
   7. RESERVATION CALENDAR
   ========================================================================== */

.ppb-cal-section {
    padding: var(--ppb-space-xl) var(--ppb-space-md);
    background: #fff;
    text-align: center;
}

.ppb-cal-section .ppb-section-label {
    color: var(--ppb-gold);
    margin-bottom: var(--ppb-space-sm);
}

.ppb-cal-section h2 {
    font-family: var(--ppb-serif);
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 500;
    margin-bottom: var(--ppb-space-sm);
    letter-spacing: 0.05em;
}

.ppb-cal-tagline {
    color: var(--ppb-text-muted);
    margin-bottom: var(--ppb-space-lg);
    font-size: 0.95rem;
}

/* Grid layout: dates / slots / selected */
.ppb-cal {
    display: grid;
    grid-template-columns: 1fr 2fr 1.2fr;
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

@media (max-width: 900px) {
    .ppb-cal { grid-template-columns: 1fr; gap: 12px; }
}

/* === Dates column === */
.ppb-cal-dates {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

@media (max-width: 900px) {
    .ppb-cal-dates {
        flex-direction: row;
        overflow-x: auto;
        padding-bottom: 8px;
    }
}

/* High specificity to override global button:not(.no-luxury) */
.ppb-cal-section button.ppb-cal-date {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 18px 20px !important;
    background: #fbf9f5 !important;
    border: 1px solid #e8e3da !important;
    border-radius: 8px !important;
    font-family: var(--ppb-sans) !important;
    font-size: 0.95rem !important;
    font-weight: 500 !important;
    color: var(--ppb-text) !important;
    cursor: pointer !important;
    transition: var(--ppb-transition) !important;
    min-height: 56px !important;
    flex: 1 !important;
    letter-spacing: normal !important;
    overflow: visible !important;
    box-shadow: none !important;
    text-transform: none !important;
}

.ppb-cal-section button.ppb-cal-date::before,
.ppb-cal-section button.ppb-cal-date::after { content: none !important; }

@media (max-width: 900px) {
    .ppb-cal-section button.ppb-cal-date {
        flex: 0 0 auto !important;
        min-width: 110px !important;
        padding: 12px 16px !important;
        min-height: auto !important;
    }
}

.ppb-cal-section button.ppb-cal-date:hover {
    background: #f5efe6 !important;
    border-color: var(--ppb-gold-light) !important;
    color: var(--ppb-text) !important;
    transform: none !important;
}

.ppb-cal-section button.ppb-cal-date.is-active {
    background: #f5e9c8 !important;
    border: 1px solid var(--ppb-gold) !important;
    color: var(--ppb-text) !important;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.2) !important;
}

.ppb-cal-section button.ppb-cal-date.is-active .ppb-cal-date-weekday {
    color: var(--ppb-gold-dark) !important;
}

.ppb-cal-section .ppb-cal-date-label {
    font-weight: 600;
    color: var(--ppb-text);
}

.ppb-cal-section .ppb-cal-date-weekday {
    color: var(--ppb-text-muted);
    font-size: 0.85rem;
}

/* === Slots column === */
.ppb-cal-slots {
    position: relative;
}

.ppb-cal-slot-group {
    display: none;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    height: 100%;
}

.ppb-cal-slot-group.is-active {
    display: grid;
}

.ppb-cal-section button.ppb-cal-slot {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    padding: 18px 20px !important;
    background: #fbf9f5 !important;
    border: 1px solid #e8e3da !important;
    border-radius: 8px !important;
    font-family: var(--ppb-sans) !important;
    color: var(--ppb-text) !important;
    cursor: pointer !important;
    transition: var(--ppb-transition) !important;
    min-height: 84px !important;
    text-align: left !important;
    letter-spacing: normal !important;
    overflow: visible !important;
    text-transform: none !important;
    box-shadow: none !important;
    font-weight: 400 !important;
}

.ppb-cal-section button.ppb-cal-slot::before,
.ppb-cal-section button.ppb-cal-slot::after { content: none !important; }

.ppb-cal-section button.ppb-cal-slot:hover:not(.is-disabled) {
    background: #f5efe6 !important;
    color: var(--ppb-text) !important;
    transform: none !important;
    border-color: var(--ppb-gold-light) !important;
}

.ppb-cal-section button.ppb-cal-slot.is-active {
    background: #f5e9c8 !important;
    color: var(--ppb-text) !important;
    border: 1px solid var(--ppb-gold) !important;
    box-shadow: 0 2px 8px rgba(201, 169, 97, 0.2) !important;
}

.ppb-cal-section button.ppb-cal-slot.is-active .ppb-cal-slot-status {
    color: var(--ppb-gold-dark) !important;
}

.ppb-cal-section button.ppb-cal-slot.is-disabled {
    background: #f0ede6 !important;
    color: #b3aca0 !important;
    cursor: not-allowed !important;
    opacity: 0.7 !important;
    border-color: transparent !important;
}

.ppb-cal-section .ppb-cal-slot-time {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--ppb-text);
}

.ppb-cal-section .ppb-cal-slot-status {
    font-size: 0.8rem;
    color: var(--ppb-text-muted);
}

/* === Selected column === */
.ppb-cal-selected {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 32px 28px;
    background: var(--ppb-pearl);
    border: 1px solid var(--ppb-gold-light);
    border-radius: 4px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    position: relative;
}

.ppb-cal-selected::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ppb-gold), transparent);
}

.ppb-cal-selected-label {
    font-family: var(--ppb-display);
    font-style: italic;
    color: var(--ppb-gold-dark);
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    margin-bottom: 12px;
}

.ppb-cal-selected-display {
    margin-bottom: 8px;
}

.ppb-cal-selected-text {
    font-family: var(--ppb-serif);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--ppb-black);
    letter-spacing: 0.02em;
    line-height: 1.2;
}

.ppb-cal-selected-meta {
    color: var(--ppb-text-muted);
    font-size: 0.875rem;
    margin: 0 0 20px;
}

.ppb-cal-section .ppb-cal-book-btn {
    display: block !important;
    width: 100% !important;
    padding: 16px 24px !important;
    background: var(--ppb-gold) !important;
    color: #fff !important;
    text-decoration: none !important;
    text-align: center !important;
    border-radius: 50px !important;
    font-family: var(--ppb-serif) !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    letter-spacing: 0.1em !important;
    transition: var(--ppb-transition) !important;
    border: 1px solid var(--ppb-gold) !important;
    cursor: pointer !important;
    overflow: hidden !important;
    position: relative;
    text-transform: none !important;
}

.ppb-cal-section .ppb-cal-book-btn::before,
.ppb-cal-section .ppb-cal-book-btn::after { content: none !important; }

.ppb-cal-section .ppb-cal-book-btn-text {
    position: relative;
    z-index: 1;
    color: #fff;
}

.ppb-cal-section .ppb-cal-book-btn:hover {
    background: var(--ppb-gold-dark) !important;
    color: #fff !important;
    border-color: var(--ppb-gold-dark) !important;
    transform: translateY(-2px) !important;
    box-shadow: var(--ppb-shadow-gold) !important;
}

.ppb-cal-note {
    margin: 10px 0 0;
    font-size: 0.75rem;
    color: var(--ppb-text-muted);
    text-align: center;
}

.ppb-cal-future-link {
    display: block;
    margin-top: 16px;
    padding: 10px 16px;
    text-align: center;
    color: var(--ppb-gold-dark) !important;
    text-decoration: none !important;
    font-size: 0.85rem;
    border: 1px dashed var(--ppb-gold-light);
    border-radius: 4px;
    transition: var(--ppb-transition);
}

.ppb-cal-future-link:hover {
    background: var(--ppb-pearl);
    border-color: var(--ppb-gold);
    color: var(--ppb-gold-dark) !important;
}

/* ==========================================================================
   SCROLLBAR + SELECTION
   ========================================================================== */

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--ppb-cream); }
::-webkit-scrollbar-thumb { background: var(--ppb-gold); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--ppb-gold-dark); }

::selection { background: var(--ppb-gold-light); color: var(--ppb-black); }

/* (선택된 이유 페이지 CSS 제거됨) */

/* ==========================================================================
   8.7 TREATMENT FLOW (Concept와 MENU 사이)
   ========================================================================== */

.ppb-flow-section {
    padding: 3rem 1.5rem 2rem;
    background: #fff;
    text-align: center;
}

.ppb-flow-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.ppb-flow-title {
    font-family: var(--ppb-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    color: var(--ppb-black);
    margin: 0 0 0.75rem;
    letter-spacing: 0.05em;
}

.ppb-flow-tagline {
    color: var(--ppb-text-muted);
    margin: 0 0 3rem;
    letter-spacing: 0.05em;
}

.ppb-flow-grid {
    display: grid;
    gap: 16px;
    text-align: left;
    position: relative;
}

@media (min-width: 768px) {
    .ppb-flow-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .ppb-flow-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

.ppb-flow-step {
    background: var(--ppb-pearl);
    border-radius: 8px;
    padding: 28px 20px;
    position: relative;
    transition: var(--ppb-transition);
    overflow: hidden;
}

.ppb-flow-step::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 4px;
    height: 100%;
    background: var(--ppb-gold);
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease;
}

.ppb-flow-step:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
    background: #fff;
}

.ppb-flow-step:hover::before {
    transform: scaleY(1);
}

.ppb-flow-step__num {
    font-family: var(--ppb-display);
    font-style: italic;
    font-weight: 700;
    font-size: 2.5rem;
    color: var(--ppb-gold);
    line-height: 1;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
}

.ppb-flow-step__head {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.ppb-flow-step__title {
    font-family: var(--ppb-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--ppb-black);
    margin: 0;
    letter-spacing: 0.05em;
}

.ppb-flow-step__time {
    color: var(--ppb-gold-dark);
    font-size: 0.75rem;
    background: rgba(201, 169, 97, 0.1);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 0.05em;
}

.ppb-flow-step__time:empty { display: none; }

.ppb-flow-step__desc {
    color: var(--ppb-text-muted);
    font-size: 0.85rem;
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 600px) {
    .ppb-flow-section { padding: 3rem 1rem; }
    .ppb-flow-step { padding: 20px 16px; }
    .ppb-flow-step__num { font-size: 2rem; }
}

/* ==========================================================================
   8.5 FEATURES / CONCEPT (News와 MENU 사이)
   ========================================================================== */

.ppb-features-section {
    padding: 3rem 1.5rem 2rem;
    background: linear-gradient(180deg, #fff 0%, var(--ppb-pearl) 100%);
    text-align: center;
}

.ppb-features-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.ppb-features-title {
    font-family: var(--ppb-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    color: var(--ppb-black);
    margin: 0 0 0.75rem;
    letter-spacing: 0.05em;
}

.ppb-features-tagline {
    color: var(--ppb-text-muted);
    font-size: 1rem;
    margin: 0 0 3rem;
    letter-spacing: 0.05em;
}

.ppb-features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .ppb-features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 600px) {
    .ppb-features-grid { grid-template-columns: 1fr; gap: 16px; }
    .ppb-features-section { padding: 3rem 1rem; }
}

.ppb-feature-card {
    background: #fff;
    padding: 2.5rem 1.5rem;
    border-radius: 4px;
    border: 1px solid rgba(201, 169, 97, 0.15);
    text-align: center;
    transition: var(--ppb-transition);
    position: relative;
    overflow: hidden;
}

.ppb-feature-card::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--ppb-gold), transparent);
    opacity: 0;
    transition: opacity var(--ppb-transition);
}

.ppb-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: var(--ppb-gold-light);
}

.ppb-feature-card:hover::before {
    opacity: 1;
}

.ppb-feature-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--ppb-cream);
    border-radius: 50%;
    color: var(--ppb-gold-dark);
    transition: var(--ppb-transition);
}

.ppb-feature-icon svg {
    width: 28px;
    height: 28px;
}

.ppb-feature-card:hover .ppb-feature-icon {
    background: var(--ppb-gold);
    color: #fff;
    transform: scale(1.1);
}

.ppb-feature-card-title {
    font-family: var(--ppb-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--ppb-black);
    margin: 0 0 0.75rem;
    letter-spacing: 0.05em;
}

.ppb-feature-card-desc {
    color: var(--ppb-text-muted);
    font-size: 0.875rem;
    line-height: 1.7;
    margin: 0;
}

/* ==========================================================================
   9. CTA BANNER (News와 MENU 사이 빈공간 채우기)
   ========================================================================== */

/* === CTA 배너 - 라이트 럭셔리 톤 === */
.ppb-cta-banner {
    position: relative;
    padding: var(--ppb-space-xl) var(--ppb-space-md);
    background: linear-gradient(180deg, var(--ppb-pearl) 0%, var(--ppb-cream) 100%);
    color: var(--ppb-text);
    text-align: center;
    overflow: hidden;
    border-top: 1px solid rgba(201, 169, 97, 0.2);
    border-bottom: 1px solid rgba(201, 169, 97, 0.2);
}

.ppb-cta-banner::before {
    content: "";
    position: absolute;
    top: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: var(--ppb-gold);
}

.ppb-cta-banner::after {
    content: "";
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 1px;
    background: var(--ppb-gold);
}

.ppb-cta-banner__inner {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.ppb-cta-banner__label {
    font-family: var(--ppb-display);
    font-style: italic;
    color: var(--ppb-gold-dark);
    letter-spacing: 0.3em;
    font-size: 0.875rem;
    text-transform: uppercase;
    margin-bottom: var(--ppb-space-sm);
    display: block;
}

.ppb-cta-banner__title {
    font-family: var(--ppb-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 500;
    margin: 0 0 var(--ppb-space-sm);
    color: var(--ppb-black);
    letter-spacing: 0.05em;
}

.ppb-cta-banner__subtitle {
    color: var(--ppb-text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0 0 var(--ppb-space-lg);
}

.ppb-cta-banner__buttons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    justify-content: center;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 900px) {
    .ppb-cta-banner__buttons {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .ppb-cta-banner__buttons {
        grid-template-columns: 1fr;
    }
}

/* 버튼 - 글로벌 button 스타일 무력화 위해 specificity 강화 */
.ppb-cta-banner .ppb-cta-banner__btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    padding: 14px 18px !important;
    background: var(--ppb-gold) !important;
    color: #fff !important;
    text-decoration: none !important;
    border: 1px solid var(--ppb-gold) !important;
    border-radius: 50px !important;
    font-family: var(--ppb-serif) !important;
    font-weight: 600 !important;
    font-size: 0.85rem !important;
    letter-spacing: 0.05em !important;
    transition: var(--ppb-transition) !important;
    min-width: 0;
    width: 100%;
    box-shadow: 0 4px 14px rgba(201, 169, 97, 0.25) !important;
    overflow: visible !important;
    position: relative;
    white-space: nowrap;
}

.ppb-cta-banner .ppb-cta-banner__btn::before,
.ppb-cta-banner .ppb-cta-banner__btn::after {
    display: none !important;
    content: none !important;
}

.ppb-cta-banner .ppb-cta-banner__btn:hover {
    background: var(--ppb-gold-dark) !important;
    border-color: var(--ppb-gold-dark) !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4) !important;
}

/* LINE 버튼 - 녹색 */
.ppb-cta-banner .ppb-cta-banner__btn--line {
    background: #06C755 !important;
    color: #fff !important;
    border: 1px solid #06C755 !important;
    box-shadow: 0 4px 14px rgba(6, 199, 85, 0.25) !important;
}
.ppb-cta-banner .ppb-cta-banner__btn--line:hover {
    background: #05a548 !important;
    border-color: #05a548 !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(6, 199, 85, 0.4) !important;
}

/* Hot Pepper 버튼 - 빨강 (브랜드 컬러) */
.ppb-cta-banner .ppb-cta-banner__btn--hpb {
    background: #ed4242 !important;
    color: #fff !important;
    border: 1px solid #ed4242 !important;
    box-shadow: 0 4px 14px rgba(237, 66, 66, 0.25) !important;
}
.ppb-cta-banner .ppb-cta-banner__btn--hpb:hover {
    background: #d63333 !important;
    border-color: #d63333 !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(237, 66, 66, 0.4) !important;
}

/* 전화 버튼 - 아웃라인 */
.ppb-cta-banner .ppb-cta-banner__btn--outline {
    background: transparent !important;
    color: var(--ppb-black) !important;
    border: 1px solid var(--ppb-black) !important;
    box-shadow: none !important;
}
.ppb-cta-banner .ppb-cta-banner__btn--outline:hover {
    background: var(--ppb-black) !important;
    border-color: var(--ppb-black) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(26, 26, 26, 0.2) !important;
}

/* 메일 버튼 - 골드 */
.ppb-cta-banner .ppb-cta-banner__btn--mail {
    background: var(--ppb-gold) !important;
    color: #fff !important;
    border: 1px solid var(--ppb-gold) !important;
    box-shadow: 0 4px 14px rgba(201, 169, 97, 0.25) !important;
}
.ppb-cta-banner .ppb-cta-banner__btn--mail:hover {
    background: var(--ppb-gold-dark) !important;
    border-color: var(--ppb-gold-dark) !important;
    color: #fff !important;
    box-shadow: 0 6px 20px rgba(201, 169, 97, 0.4) !important;
}

/* 캘린더 Hot Pepper 버튼 */
.ppb-cal-section .ppb-cal-hpb-btn {
    display: block !important;
    width: 100% !important;
    margin-top: 10px;
    padding: 14px 24px !important;
    background: #ed4242 !important;
    color: #fff !important;
    text-align: center !important;
    border-radius: 50px !important;
    font-family: var(--ppb-serif) !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    letter-spacing: 0.05em !important;
    text-decoration: none !important;
    border: 1px solid #ed4242 !important;
    transition: var(--ppb-transition) !important;
    overflow: hidden !important;
}

.ppb-cal-section .ppb-cal-hpb-btn::before,
.ppb-cal-section .ppb-cal-hpb-btn::after {
    display: none !important;
    content: none !important;
}

.ppb-cal-section .ppb-cal-hpb-btn:hover {
    background: #d63333 !important;
    border-color: #d63333 !important;
    color: #fff !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 14px rgba(237, 66, 66, 0.3) !important;
}

.ppb-cta-banner .ppb-cta-banner__btn svg {
    width: 18px !important;
    height: 18px !important;
    fill: currentColor !important;
}

@media (max-width: 768px) {
    .ppb-cta-banner__buttons {
        flex-direction: column;
        align-items: stretch;
    }
    .ppb-cta-banner__btn {
        width: 100%;
    }
}

/* ==========================================================================
   8. MOBILE OPTIMIZATIONS (추가 보강)
   ========================================================================== */

@media (max-width: 768px) {
    /* 섹션 여백 통일 */
    .ppb-trust-section,
    .ppb-faq-section,
    .ppb-ba-section,
    .ppb-pricing-section,
    .ppb-insta-section,
    .ppb-access-section,
    .ppb-cal-section {
        padding: 3rem 1rem !important;
    }

    /* 모바일 하단 CTA 위에 충분한 여백 */
    body { padding-bottom: 70px !important; }

    /* 후기 카드 풀폭 */
    .ppb-testimonials { gap: 12px; }
    .ppb-testimonial { padding: 28px 20px; }

    /* FAQ 모바일 */
    .ppb-faq-question { padding: 14px 16px; gap: 10px; font-size: 0.95rem; }
    .ppb-faq-question::before { width: 28px; height: 28px; line-height: 28px; flex: 0 0 28px; font-size: 0.9rem; }
    .ppb-faq-answer { padding: 0 16px 16px 56px; font-size: 0.9rem; }

    /* Pricing 모바일 1열 */
    .ppb-pricing-grid { gap: 12px; }
    .ppb-price-card { padding: 32px 20px; }

    /* Before/After 모바일 1열 */
    .ppb-ba-grid { gap: 12px; }

    /* Calendar 모바일 - 더 컴팩트 */
    .ppb-cal { gap: 12px; }
    .ppb-cal-section button.ppb-cal-date {
        padding: 12px 14px !important;
        min-height: 44px !important;
        font-size: 0.85rem !important;
    }
    .ppb-cal-section button.ppb-cal-slot {
        padding: 12px 14px !important;
        min-height: 64px !important;
    }
    .ppb-cal-section .ppb-cal-slot-time { font-size: 0.95rem; }
    .ppb-cal-section .ppb-cal-slot-status { font-size: 0.7rem; }
    .ppb-cal-selected { padding: 24px 20px; }
    .ppb-cal-selected-text { font-size: 1.3rem; }

    /* Access (지도) 모바일 */
    .ppb-access-info h2 { font-size: 1.5rem; }
    .ppb-access-info dl { margin-bottom: 1.5rem; }
    .ppb-map-wrapper { aspect-ratio: 1/1; }

    /* Instagram 헤더 모바일 더 컴팩트 */
    .ppb-insta-stats { gap: 24px; }
    .ppb-insta-cta { font-size: 0.8rem; padding: 9px 20px; }

    /* H2 통일 */
    .ppb-trust-section h2,
    .ppb-faq-section h2,
    .ppb-ba-section h2,
    .ppb-pricing-section h2,
    .ppb-access-section h2,
    .ppb-cal-section h2,
    .ppb-insta-section h2 {
        font-size: 1.5rem;
    }

    /* section-label 통일 */
    .ppb-section-label {
        font-size: 0.75rem;
        letter-spacing: 0.25em;
    }
}

/* 매우 작은 화면 (iPhone SE 등) */
@media (max-width: 380px) {
    .ppb-mobile-cta__btn { padding: 8px 2px; font-size: 10px; }
    .ppb-mobile-cta__icon { width: 18px; height: 18px; }

    .ppb-cal-section button.ppb-cal-date { min-width: 90px !important; }
    .ppb-line-float { display: none !important; }
}


/* === Hero 캐치카피 텍스트 슬라이더 (이미지 위 흰색 글씨, 옆으로 슬라이드) === */
.ppb-hero-heading {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 92%;
    max-width: 920px;
    z-index: 6;
    overflow: hidden;
}
.ppb-hero-heading__track {
    display: flex;
    width: 100%;
    transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
    touch-action: pan-y;
    cursor: grab;
}
.ppb-hero-heading__slide {
    flex: 0 0 100%;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1rem;
    text-align: center;
}
.ppb-hero-heading__title {
    color: #fff !important;
    font-family: var(--ppb-serif) !important;
    font-weight: 600 !important;
    font-size: clamp(1.4rem, 3.4vw, 2.8rem) !important;
    line-height: 1.4 !important;
    letter-spacing: 0.06em;
    margin: 0 0 0.9rem !important;
    text-shadow: 0 2px 12px rgba(0,0,0,0.55), 0 1px 3px rgba(0,0,0,0.6);
}
.ppb-hero-heading__text {
    color: #fff !important;
    font-family: var(--ppb-serif) !important;
    font-weight: 400 !important;
    font-size: clamp(0.8rem, 1.3vw, 1.05rem) !important;
    line-height: 1.9 !important;
    letter-spacing: 0.04em;
    margin: 0 !important;
    text-shadow: 0 1px 8px rgba(0,0,0,0.6), 0 1px 2px rgba(0,0,0,0.55);
}
/* 화살표 */
.ppb-hero-heading__arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: rgba(0,0,0,0.28);
    color: #fff;
    font-size: 1.6rem;
    line-height: 1;
    cursor: pointer;
    z-index: 7;
    transition: background 0.25s ease;
}
.ppb-hero-heading__arrow:hover { background: rgba(0,0,0,0.5); }
.ppb-hero-heading__arrow--prev { left: -8px; }
.ppb-hero-heading__arrow--next { right: -8px; }
/* 도트 */
.ppb-hero-heading__dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 1.4rem;
}
.ppb-hero-heading__dot {
    width: 10px;
    height: 10px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    box-shadow: 0 1px 3px rgba(0,0,0,0.4);
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}
.ppb-hero-heading__dot.is-active {
    background: #fff;
    transform: scale(1.3);
}
@media (max-width: 768px) {
    .ppb-hero-heading {
        top: 12%;
        width: 90%;
    }
    .ppb-hero-heading__title {
        font-size: clamp(1.15rem, 5.2vw, 1.7rem) !important;
        margin-bottom: 0.7rem !important;
    }
    .ppb-hero-heading__text {
        font-size: clamp(0.72rem, 3vw, 0.9rem) !important;
        line-height: 1.75 !important;
    }
    .ppb-hero-heading__brpc { display: none; }
    .ppb-hero-heading__arrow { display: none; }
    .ppb-hero-heading__dots { margin-top: 1rem; }
}

/* === Hero 슬라이더 버튼 — 전역 버튼 스타일(검은 알약) 무력화 보강 === */
.ppb-hero-heading__arrow,
.ppb-hero-heading__dot {
    border: none !important;
    box-shadow: none;
    min-width: 0 !important;
    line-height: 1 !important;
}
.ppb-hero-heading__arrow {
    position: absolute !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px !important;
    height: 40px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: rgba(0,0,0,0.28) !important;
    color: #fff !important;
    font-size: 1.6rem !important;
}
.ppb-hero-heading__arrow--prev { left: -8px !important; right: auto !important; }
.ppb-hero-heading__arrow--next { right: -8px !important; left: auto !important; }
.ppb-hero-heading__arrow:hover { background: rgba(0,0,0,0.5) !important; }
.ppb-hero-heading__dot {
    position: relative !important;
    display: inline-block !important;
    width: 10px !important;
    height: 10px !important;
    padding: 0 !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.5) !important;
    box-shadow: 0 1px 3px rgba(0,0,0,0.4) !important;
    color: transparent !important;
}
.ppb-hero-heading__dot.is-active {
    background: #fff !important;
    transform: scale(1.3) !important;
}
@media (max-width: 768px) {
    .ppb-hero-heading__arrow { display: none !important; }
}

/* === Hero 슬라이더 점(dot) — 사진 맨 아래 중앙 (ds-j.net 풍) === */
.ppb-hero-dots {
    position: absolute;
    left: 50%;
    bottom: 30px;
    transform: translateX(-50%);
    display: flex;
    gap: 11px;
    z-index: 7;
}
.ppb-hero-dots__dot {
    width: 11px !important;
    height: 11px !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 50% !important;
    background: rgba(255,255,255,0.6) !important;
    box-shadow: 0 1px 5px rgba(0,0,0,0.6) !important;
    color: transparent !important;
    cursor: pointer;
    transition: background 0.25s ease, transform 0.25s ease;
}
.ppb-hero-dots__dot.is-active {
    background: #fff !important;
    transform: scale(1.35) !important;
}
/* 구버전(heading 내부) 점은 더 이상 생성 안 함 — 혹시 남으면 숨김 */
.ppb-hero-heading__dots { display: none !important; }

/* === 모바일: 글씨가 너무 위로 붙던 것 아래로 내림 + 본문 폭 정리 === */
@media (max-width: 767px) {
    .ppb-hero-heading {
        top: 19% !important;
        width: 86% !important;
    }
    .ppb-hero-heading__slide { padding: 0 0.5rem; }
    .ppb-hero-dots { bottom: 22px; }
    .ppb-hero-dots__dot { box-shadow: 0 1px 6px rgba(0,0,0,0.75) !important; }
}

/* === Hero 전체를 드래그/스와이프로 슬라이드 가능하게 (커서 힌트) === */
.wp-block-jb-mv-001 { cursor: grab; }
.wp-block-jb-mv-001:active { cursor: grabbing; }
.wp-block-jb-mv-001 .ppb-hero-dots__dot { cursor: pointer; }
