/* [최신 상태] App v26.0.0 | Engine v26.0.0 | 마지막 동기화: 2026-08-14 */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Outfit:wght@300;400;500;700&family=Noto+Sans+KR:wght@300;400;500;700&family=IBM+Plex+Sans+KR:wght@300;400;500;700&display=swap');

/* ── Fresh Cream Cake Custom Scrollbar ── */
::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}
::-webkit-scrollbar-track {
    background: #FFFDF8; /* 은은한 생크림 아이보리 배경 */
}
::-webkit-scrollbar-thumb {
    background: #E8D7C3; /* 부드러운 생크림 쿠키/시트 톤 */
    border-radius: 10px;
    border: 2px solid #FFFDF8; /* 생크림 테두리 마감 */
}
::-webkit-scrollbar-thumb:hover {
    background: #FF8FA3; /* 생크림 위 딸기 포인트 핑크 */
}

/* Firefox 표준 스크롤바 */
* {
    scrollbar-width: thin;
    scrollbar-color: #E8D7C3 #FFFDF8;
}

:root {
    /* Main Colors */
    --cream: #FFFDF5;    /* 생크림 아이보리: 배경 */
    --yellow: #FFD400;   /* 코코 옐로우: 포인트/CTA */
    
    /* Sub Point Colors */
    --pink: #FFB7C5;     /* 베리 핑크: 아기자기한 포인트 */
    --mint: #B2EBF2;     /* 소프트 민트: 청량감 */
    
    /* Typography & Foundation */
    --brown: #3E2723;    /* 딥 초코 브라운: 본문 텍스트 */
    --grey: #9E9E9E;     /* 쿠키 그레이: 보조 텍스트 */
    --white: #ffffff;
    
    /* Effects - 브랜드 브라운 기반의 깊이감 있는 그림자 */
    --shadow: 0 12px 30px rgba(62, 39, 35, 0.07);
    --shadow-h: 0 20px 45px rgba(62, 39, 35, 0.12);
    --glass: rgba(255, 253, 245, 0.85); /* 크림 기반 글래스 */
    --radius: 20px;
    --max-w: 1400px;
}
*{margin:0;padding:0;box-sizing:border-box}
html{scroll-behavior:smooth}
/* 완료: 한글 가독성 최적화 적용 (word-break: keep-all) - 2026-04-25 - 임의 수정 금지 */
body{font-family:'Outfit','Noto Sans KR',sans-serif;background:var(--cream);color:var(--brown);line-height:1.65;word-break:keep-all;overflow-x:hidden;font-size:18px}
.break-words{word-break:break-word;overflow-wrap:anywhere} /* 긴 영문/링크가 영역을 벗어나는 경우 사용 */
 /* 기본 폰트 크기 상향: 16px -> 18px */
h1,h2,h3,h4,h5,h6{font-weight:700;line-height:1.2}
.serif { font-family: 'Playfair Display', serif; }
a{text-decoration:none;color:inherit;transition:.3s}
ul{list-style:none}
img{max-width:100%;height:auto;display:block}
.container{max-width:var(--max-w);margin:0 auto;padding:0 40px}
.section{padding:120px 0}
.text-center{text-align:center}
.accent{color:var(--yellow)}
.mt-20{margin-top:20px}.mt-40{margin-top:40px}.mb-20{margin-bottom:20px}.mb-40{margin-bottom:40px}.mb-60{margin-bottom:60px}

/* ── GNB ── */
#gnb{position:fixed;top:0;left:0;width:100%;z-index:1000;padding:22px 0;transition:all .4s cubic-bezier(.25,1,.5,1);background:rgba(255,255,255,0)}
/* 완료: GNB 드롭다운 트리거 영역 제한 (전체 헤더 -> 메뉴 텍스트 호버 시) - 2026-04-25 - 임의 수정 금지 */
#gnb.scrolled{background:rgba(255,255,255,0.98) !important;backdrop-filter:blur(15px);-webkit-backdrop-filter:blur(15px);padding:14px 0;box-shadow:0 4px 20px rgba(62,39,35,0.1) !important}

/* 풀와이드 드롭다운 배경 바: 글래스모피즘 및 하단 포인트 라인 */
#gnb::before{content:'';position:absolute;top:0;left:0;width:100%;height:0;background:#FFFFFF;transition:all .35s cubic-bezier(.25,1,.3,1);z-index:-1;box-shadow:0 10px 30px rgba(62,39,35,0.08);opacity:0;border-bottom:2px solid var(--yellow)}
#gnb.nav-hovered::before{height:280px;opacity:1}

.gnb-inner{display:flex;justify-content:space-between;align-items:center;position:relative}
.logo img{height:29px;width:auto;transition:all .3s;filter:brightness(0) invert(1);mix-blend-mode:difference}
#gnb.scrolled .logo img{height:25px}
#gnb.scrolled .logo img, #gnb.nav-hovered .logo img{filter:none !important;mix-blend-mode:normal !important}

.nav-menu{display:flex;gap:30px;align-items:center}
.gnb-cta{font-weight:700 !important; color:#fff !important}
#gnb.scrolled .gnb-cta, #gnb.nav-hovered .gnb-cta{color:var(--brown) !important;mix-blend-mode:normal !important}
.nav-menu>li{position:relative}

.nav-link{font-size:1.15rem;font-weight:600;padding:15px 26px;position:relative;transition:all .3s;color:#fff;mix-blend-mode:difference;letter-spacing:-0.02em;display:block} /* 1.02rem -> 1.15rem */
#gnb.scrolled .nav-link, #gnb.nav-hovered .nav-link{color:var(--brown) !important;mix-blend-mode:normal !important}
.nav-link::after{content:'';position:absolute;bottom:2px;left:50%;transform:translateX(-50%) scaleX(0);width:0;height:3px;background:var(--yellow);border-radius:10px;transition:all .35s cubic-bezier(.175,.885,.32,1.275)}

/* 메인메뉴 호버 시 효과 */
#gnb .nav-menu>li:hover>.nav-link{color:var(--yellow);transform:translateY(-2px)}
.nav-menu>li:hover>.nav-link::after,.nav-link.active::after{width:36px;transform:translateX(-50%) scaleX(1)}
#gnb .nav-link.active{color:var(--yellow);font-weight:700}

/* 완료: 서브페이지 전용 헤더: mix-blend-mode difference 적용 (2026-04-27) - 임의 수정 금지 ── */
/* 기본 상태: difference 모드로 배경에 따라 자동 반전 → 어떤 배경에서든 가독성 확보 */
body.subpage #gnb .logo img { filter: brightness(0) invert(1); mix-blend-mode: difference; }
body.subpage #gnb .nav-link { color: #fff; mix-blend-mode: difference; }
body.subpage #gnb .nav-menu>li:hover>.nav-link { color: var(--yellow) !important; mix-blend-mode: difference; }
body.subpage #gnb .nav-link.active { color: var(--yellow) !important; mix-blend-mode: difference; }
body.subpage #gnb .gnb-cta { color: #fff; mix-blend-mode: difference; }
body.subpage #gnb .mobile-toggle { color: #fff; mix-blend-mode: difference; }

/* 스크롤 시 / 드롭다운 호버 시: 안정적인 normal 모드로 전환 (흰색 배경 위) */
body.subpage #gnb.scrolled,
body.subpage #gnb.nav-hovered { background: rgba(255,255,255,0.98) !important; backdrop-filter: blur(15px); -webkit-backdrop-filter: blur(15px); box-shadow: 0 4px 20px rgba(62,39,35,0.1) !important; }
body.subpage #gnb.scrolled .logo img,
body.subpage #gnb.nav-hovered .logo img { filter: none !important; mix-blend-mode: normal !important; }
body.subpage #gnb.scrolled .nav-link,
body.subpage #gnb.nav-hovered .nav-link { color: var(--brown) !important; mix-blend-mode: normal !important; }
body.subpage #gnb.scrolled .nav-menu>li:hover>.nav-link,
body.subpage #gnb.nav-hovered .nav-menu>li:hover>.nav-link { color: var(--yellow) !important; mix-blend-mode: normal !important; }
body.subpage #gnb.scrolled .nav-link.active,
body.subpage #gnb.nav-hovered .nav-link.active { color: var(--yellow) !important; mix-blend-mode: normal !important; }
body.subpage #gnb.scrolled .gnb-cta,
body.subpage #gnb.nav-hovered .gnb-cta { color: var(--brown) !important; mix-blend-mode: normal !important; }
body.subpage #gnb.scrolled .mobile-toggle,
body.subpage #gnb.nav-hovered .mobile-toggle { color: var(--brown) !important; mix-blend-mode: normal !important; }

/* ── Sub Menu Dropdown ── */
.sub-menu{position:absolute;top:100%;left:50%;transform:translateX(-50%) translateY(6px);min-width:170px;display:flex;flex-direction:column;gap:4px;padding:18px 8px;opacity:0;visibility:hidden;transition:all .3s cubic-bezier(.25,1,.5,1);pointer-events:none;z-index:101;list-style:none;text-align:center}
#gnb.nav-hovered .sub-menu{opacity:1;visibility:visible;transform:translateX(-50%) translateY(0);pointer-events:auto}

.sub-menu li{opacity:0;transform:translateY(8px);transition:all .35s cubic-bezier(.25,1,.5,1)}
#gnb.nav-hovered .sub-menu li{opacity:1;transform:translateY(0)}
.has-sub:hover>.sub-menu li:nth-child(1){transition-delay:.05s}
.has-sub:hover>.sub-menu li:nth-child(2){transition-delay:.1s}
.has-sub:hover>.sub-menu li:nth-child(3){transition-delay:.15s}

.sub-menu li a{font-size:.95rem;color:var(--grey);transition:all .2s;font-weight:500;display:block;padding:10px 20px;letter-spacing:-0.02em;white-space:nowrap}
.sub-menu li a:hover, .sub-menu li a.active{color:var(--pink) !important;font-weight:700}

.mobile-toggle{display:none;background:none;border:none;font-size:1.8rem;cursor:pointer;color:#fff;mix-blend-mode:difference}
#gnb.scrolled .mobile-toggle, #gnb.nav-hovered .mobile-toggle{color:var(--brown);mix-blend-mode:normal}

/* ── Hero ── */
#hero-section{height:100vh;position:relative;display:flex;align-items:center;justify-content:center;color:#fff;overflow:hidden}
.hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:-2}
.hero-overlay{position:absolute;inset:0;background:rgba(0,0,0,.4);z-index:-1}

/* 완료: v6 스타일 히어로 타이틀 디자인 적용 (2026-04-25) - 임의 수정 금지 */
.hero-content { text-align: center; z-index: 1; max-width: 900px; }
.hero-title { 
    font-size: clamp(3rem, 8vw, 6rem); margin-bottom: 20px; 
    text-shadow: 0 10px 30px rgba(0,0,0,0.3);
}
.hero-sub { font-size: 1.2rem; opacity: 0.9; }
.hero-marquee-container {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 25px 0;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(8px);
    overflow: hidden;
    white-space: nowrap;
    z-index: 10;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-marquee {
    display: inline-flex;
    white-space: nowrap;
    animation: heroMarquee 40s linear infinite;
}

.hero-marquee span {
    font-size: clamp(1.2rem, 1.8vw, 1.5rem);
    font-weight: 500;
    color: var(--white);
    padding-right: 50px;
    letter-spacing: 0.02em;
}

@keyframes heroMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* 완료: 비주얼 시그니처 갤러리 섹션 (v7) - 임의로 수정하지 마세요 */
/* ── Signature Gallery (Center-Split Reveal) ── */
/* 완료: 비주얼 시그니처 갤러리 섹션 배경색 수정 (2026-04-25) - 임의 수정 금지 */
#signature-gallery {
    position: relative;
    background: #F9F7F2;
}

.split-scroll-area {
    height: 250vh; /* 스크롤 공간 확보 */
    position: relative;
}

/* 완료: 비주얼 시그니처 갤러리 프레임 배경색 수정 (2026-04-25) - 임의 수정 금지 */
.split-sticky-frame {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F9F7F2;
}

/* 완료: 스플릿 도어 시네마틱 투명 효과 및 정렬 개선 (2026-04-25) - 임의 수정 금지 */
/* 도어 (스크롤에 따라 양쪽으로 열림) — 하나의 큰 케이크 이미지가 반으로 갈라짐 */
/* 완료: 스플릿 도어 가운데 실금 제거 및 이미지 정렬 최적화 (2026-04-27) - 임의 수정 금지 */
.split-door {
    position: absolute;
    top: 0;
    width: calc(50% + 1px); /* 서브픽셀 렌더링 실금 방지: 1px 겹침 */
    height: 100%;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform;
    /* 큰 케이크 이미지를 배경으로 사용 — 양쪽 도어에 같은 이미지 */
    background-image: url('https://images.unsplash.com/photo-1578985545062-69928b1d9587?w=1600');
    background-size: 200% auto; /* 수정 전의 가로 200% 맞물림 정렬을 유지하면서 세로만 비율(auto) 유지 */
    background-repeat: no-repeat;
    border: none;
    outline: none;
    /* 가운데부터 투명해지는 마스크 효과: 기본은 none (JS에서 스크롤 시 동적 적용) */
    -webkit-mask-image: none;
    mask-image: none;
}
/* 왼쪽 도어: 이미지의 왼쪽 절반 */
.split-door-left {
    left: 0;
    background-position: 0% center;
}
/* 오른쪽 도어: 이미지의 오른쪽 절반 */
.split-door-right {
    right: 0;
    background-position: 100% center;
}


/* 갤러리 콘텐츠 (도어 뒤에 숨어있음) */
.gallery-reveal {
    position: relative;
    z-index: 5;
    width: 100%;
    opacity: 0;
    transform: scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease;
    padding: 80px 0; /* 상하 간격 확보 */
    pointer-events: auto !important;
}
.gallery-reveal.visible {
    opacity: 1;
    transform: scale(1);
}

/* 갤러리 슬라이더 (Marquee) & 좌우 이동 버튼 */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer !important;
    z-index: 9999 !important;
    pointer-events: auto !important;
    color: var(--brown);
    transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    opacity: 1 !important;
    visibility: visible !important;
}
.slider-btn:hover {
    background: var(--yellow) !important;
    color: var(--brown) !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25) !important;
    opacity: 1 !important;
    visibility: visible !important;
}
.slider-btn.prev {
    left: 20px;
}
.slider-btn.next {
    right: 20px;
}

.gallery-slider-wrap {
    width: 100%;
    overflow: hidden;
    margin-top: 60px;
    padding: 20px 0;
    position: relative;
}

.gallery-slider {
    display: flex;
    width: max-content;
    animation: none !important; /* JS 스크롤 기반으로 동적 작동하므로 기존 CSS 애니메이션은 비활성화 */
}

.gallery-set {
    display: flex;
    gap: 30px;
    padding-right: 30px;
}

/* 완료: 갤러리 아이템 그림자 제거 (2026-04-25) - 임의 수정 금지 */
.gallery-item {
    flex-shrink: 0;
    width: 300px;
    height: 400px;
    border-radius: var(--radius);
    overflow: hidden;
    /* box-shadow: var(--shadow); 제거 */
    transition: transform 0.4s ease;
}

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

.gallery-item:hover {
    transform: scale(1.05);
}

@keyframes galleryMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@media (max-width: 768px) {
    .gallery-item {
        width: 200px;
        height: 280px;
    }
    .gallery-set {
        gap: 15px;
        padding-right: 15px;
    }
}

/* ── Section Header ── */
.sec-label{display:none !important}
.sec-title{font-size:clamp(2rem,5vw,3.2rem);margin-top:16px}
.sec-title{font-size:clamp(2rem,5vw,3.2rem);margin-top:16px}
.sec-sub{color:var(--grey);font-size:1.25rem;margin-top:16px;max-width:700px;margin-left:auto;margin-right:auto} /* 1.1rem -> 1.25rem */

/* ── Cards ── */
.card{background:var(--white);border-radius:var(--radius);box-shadow:var(--shadow);overflow:hidden;transition:.4s}
.card:hover{transform:translateY(-12px);box-shadow:var(--shadow-h)}
.card-body{padding:30px}
.card img{width:100%;aspect-ratio:4/3;object-fit:cover}

/* ── Grid Layouts ── */
.grid-2{display:grid;grid-template-columns:1fr 1fr;gap:60px;align-items:center}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:30px}
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:24px}

/* ── Philosophy ── */
.philosophy-images{position:relative;height:550px}
.p-img{position:absolute;border-radius:var(--radius);box-shadow:var(--shadow-h);overflow:hidden}
.p-img-1{width:55%;top:0;left:0;z-index:2}
.p-img-2{width:45%;bottom:30px;right:0;z-index:1}

/* 완료: 핵심 경쟁력 카드 레이아웃 (v6) - 임의로 수정하지 마세요 */
/* ── Competitiveness Cards ── */
.comp-card{background:var(--white);padding:50px;border-radius:30px;margin-bottom:35px;border:none;box-shadow:none} /* 그림자 및 테두리 제거 */
.comp-card .inner{display:flex;gap:50px;align-items:center}
.comp-num{font-size:3.5rem;font-weight:700;color:var(--yellow);opacity:1} /* 투명도 제거: 메인 옐로우 컬러 강조 */
.comp-card img{border-radius:var(--radius);flex:1;max-width:45%}

/* ── Menu Showcase ── */
.menu-track{display:flex;gap:35px;padding:40px 0}
.menu-card{min-width:320px;background:var(--cream);padding:25px;border-radius:var(--radius);box-shadow:var(--shadow);transition:.4s}
.menu-card:hover{transform:translateY(-16px);box-shadow:var(--shadow-h)}
.menu-card img{border-radius:16px;margin-bottom:20px;aspect-ratio:1/1;object-fit:cover}

/* ── Category Filter (menu page) ── */
.filter-bar{display:flex;flex-wrap:wrap;gap:12px;justify-content:center;margin-bottom:50px}
.filter-btn{padding:10px 24px;border-radius:30px;border:2px solid #eee;background:transparent;font-size:.95rem;font-weight:500;cursor:pointer;transition:.3s;font-family:inherit;color:var(--brown)}
.filter-btn:hover,.filter-btn.active{background:var(--yellow);border-color:var(--yellow);color:var(--brown);transform:translateY(-2px)}

/* ── Product Grid (menu page) ── */
.product-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:28px}
.product-card{background:var(--white);border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow);cursor:pointer;transition:.4s}
.product-card:hover{transform:scale(1.03);box-shadow:var(--shadow-h)}
.product-card img{width:100%;aspect-ratio:1/1;object-fit:cover}
.product-info{padding:20px}
.product-info h4{margin-bottom:6px}
.product-info p{color:var(--grey);font-size:.9rem;word-break:break-word;word-wrap:break-word;display:-webkit-box;-webkit-line-clamp:2;-webkit-box-orient:vertical;overflow:hidden;}
.product-price{color:var(--yellow);font-weight:700;font-size:1.1rem;margin-top:8px}

/* ── Modal ── */
.modal-overlay{display:none;position:fixed;inset:0;background:rgba(0,0,0,.6);backdrop-filter:blur(10px);z-index:2000;justify-content:center;align-items:center}
.modal-overlay.show{display:flex}
.modal-box{background:var(--white);border-radius:var(--radius);max-width:700px;width:90%;max-height:85vh;overflow-y:auto;position:relative;animation:modalIn .4s ease}
.modal-close{position:absolute;top:16px;right:20px;font-size:1.6rem;cursor:pointer;background:none;border:none;color:var(--brown);z-index:10}
@keyframes modalIn{from{opacity:0;transform:translateY(40px) scale(.95)}to{opacity:1;transform:translateY(0) scale(1)}}

/* ── Timeline ── */
.timeline{max-width:800px;margin:0 auto;position:relative;padding-left:60px}
.timeline::before{content:'';position:absolute;left:24px;top:0;bottom:0;width:3px;background:linear-gradient(180deg,var(--yellow),var(--pink))}
.timeline-step{position:relative;margin-bottom:50px}
.timeline-dot{position:absolute;left:-60px;top:0;width:50px;height:50px;background:var(--yellow);border-radius:50%;display:flex;align-items:center;justify-content:center;font-weight:700;font-size:1.1rem;box-shadow:0 0 0 6px rgba(255,212,0,.2)}
.timeline-body h4{font-size:1.3rem;margin-bottom:8px}
.timeline-body p{color:var(--grey)}

/* ── Cost Bar ── */
.cost-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(200px,1fr));gap:20px}
.cost-item{padding:30px;background:var(--white);border-radius:var(--radius);text-align:center;box-shadow:var(--shadow);transition:.3s}
.cost-item:hover{transform:translateY(-6px);box-shadow:var(--shadow-h)}
.cost-item h4{color:var(--grey);font-weight:500;margin-bottom:10px}
.cost-val{font-size:1.5rem;font-weight:700;color:var(--brown)}

/* ── Store List ── */
.store-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:20px}
.store-item{padding:22px;background:var(--white);border-radius:14px;box-shadow:var(--shadow);transition:.3s}
.store-item:hover{transform:translateY(-4px);box-shadow:var(--shadow-h)}

/* ── Form ── */
.form-wrap{max-width:750px;margin:0 auto}
.form-group{position:relative;margin-bottom:36px}
.form-input{width:100%;background:transparent;border:none;border-bottom:2px solid rgba(93,64,55,.2);padding:14px 0;color:var(--brown);font-size:1.05rem;font-family:inherit;font-weight:600;transition:.3s}
.form-input:focus{outline:none;border-color:var(--brown)}
.form-label{position:absolute;top:14px;left:0;color:rgba(93,64,55,.7);font-weight:600;pointer-events:none;transition:.3s}
.form-input:focus~.form-label,.form-input:not(:placeholder-shown)~.form-label{top:-12px;font-size:.78rem;color:var(--brown);font-weight:700}
.submit-btn{width:100%;padding:18px;background:var(--yellow);color:var(--brown);border:none;border-radius:12px;font-size:1.15rem;font-weight:700;cursor:pointer;font-family:inherit;transition:.3s}
.submit-btn:hover{transform:scale(1.02);box-shadow:var(--shadow-h)}

/* ── Accordion (FAQ) ── */
.accordion-item{border-bottom:1px solid #eee}
.accordion-btn{width:100%;display:flex;justify-content:space-between;align-items:center;padding:22px 0;background:none;border:none;font-size:1.1rem;font-weight:500;cursor:pointer;font-family:inherit;color:var(--brown);text-align:left}
.accordion-icon{font-size:1.4rem;transition:transform .4s cubic-bezier(.68,-.55,.265,1.55)}
.accordion-item.open .accordion-icon{transform:rotate(45deg)}
.accordion-body{display:grid;grid-template-rows:0fr;transition:grid-template-rows .4s ease}
.accordion-item.open .accordion-body{grid-template-rows:1fr}
.accordion-inner{overflow:hidden}
.accordion-inner p{padding:0 0 22px;color:var(--grey);line-height:1.8}

/* ── Marquee ── */
.marquee-wrap{overflow-x:hidden;padding:30px 0;position:relative}
.marquee-track{display:flex;animation:none !important;width:max-content}
.marquee-track:hover{animation-play-state:paused}
.marquee-set{display:flex;gap:20px;padding-right:20px}
.marquee-set img{width:220px;height:220px;object-fit:cover;border-radius:16px;filter:grayscale(.6);transition:.4s}
.marquee-set img:hover{filter:grayscale(0);transform:scale(1.05)}
@keyframes marquee{to{transform:translateX(-50%)}}

/* ── Footer ── */
#footer{background:var(--cream);padding:80px 0 40px;border-top:1px solid rgba(0,0,0,.05)}
.footer-grid{display:grid;grid-template-columns:2fr 1fr 1fr;gap:50px}
.footer-brand h3{font-size:1.8rem;margin-bottom:20px;color:var(--brown)}
.footer-brand p{margin-bottom:8px;font-size:0.95rem;color:var(--grey)}
.footer-links h4{margin-bottom:20px;font-size:1rem}
.footer-links li{margin-bottom:12px}
.footer-links a:hover{color:var(--yellow);padding-left:4px}
.copyright{margin-top:50px;padding-top:30px;border-top:1px solid rgba(0,0,0,.05);color:var(--grey);font-size:.85rem}

/* 완료: 플로팅 버튼(FAB) 통합 캡슐 디자인 (v8 수정: 스크롤 노출 제어) - 2026-04-27 - 임의 수정 금지 ── */
/* 기존 케익 모양 디자인 백업 완료 (style.css.bak_before_fab_redesign 참조) */
.fab-box {
    position: fixed;
    bottom: 32px;
    right: 32px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.fab-box.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 딸기 생크림 케이크 형태 플로팅 버튼 스타일 (흰색 배경 방어 솔루션 적용) */
.cake-fab-container {
    width: 120px;
    height: 104px;
    border-radius: 28px;
    overflow: hidden;
    /* 흰색 배경에서 완전 부유하게 보이는 소프트 테두리 & 입체 그림자 */
    border: 1.5px solid rgba(255, 143, 163, 0.25);
    box-shadow: 0 12px 32px rgba(255, 143, 163, 0.22), 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.3s ease;
}

.cake-fab-container:hover {
    transform: scale(1.06) translateY(-4px);
    box-shadow: 0 16px 40px rgba(255, 143, 163, 0.32), 0 6px 16px rgba(0, 0, 0, 0.08);
}

/* 상단 부드러운 밀크 생크림 딥핑 영역 (창업 문의하기) */
.cake-fab-top {
    height: 60px;
    background: #FFFDF8; /* 은은한 밀크 생크림 톤 */
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 8px 6px 10px;
    position: relative;
    z-index: 2;
    cursor: pointer;
}

.cake-fab-top span {
    color: #4A2E2B; /* 딥 브라운 감성 텍스트 */
    font-size: 0.95rem;
    font-weight: 800;
    text-align: center;
    line-height: 1.25;
    letter-spacing: -0.04em;
    font-family: 'Noto Sans KR', sans-serif;
}

/* 생크림 물결 딥핑 오버레이 효과 (밀크 화이트 SVG #FFFDF8) */
.cake-fab-top::after {
    content: '';
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 18px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 20' preserveAspectRatio='none'%3E%3Cpath d='M0,0 L100,0 L100,6 C93.75,18 81.25,18 75,6 C68.75,18 56.25,18 50,6 C43.75,18 31.25,18 25,6 C18.75,18 6.25,18 0,6 Z' fill='%23FFFDF8'%3E%3C/path%3E%3C/svg%3E");
    background-size: 100% 100%;
    pointer-events: none;
}

/* 하단 러블리 핑크 시트 영역 (TOP 버튼) */
.cake-fab-bottom {
    height: 44px;
    background: #FF8FA3; /* 러블리 딸기 핑크 시트 */
    border: none;
    outline: none;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 8px;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: background-color 0.2s ease;
}

.cake-fab-bottom:hover {
    background: #FF758F;
}

.cake-fab-bottom span {
    color: #FFFFFF; /* 선명한 화이트 TOP 텍스트 */
    font-size: 0.9rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    font-family: 'Outfit', 'Noto Sans KR', sans-serif;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}

.fab-btn:hover {
    transform: scale(1.08);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

/* TOP 버튼 (녹색 계열) */
.fab-btn.top {
    background: #2e4f3a; /* 어두운 초록색 */
    color: #ffffff;
    z-index: 10;
}
.fab-btn.top:hover {
    background: #233c2c;
}
.fab-btn.top svg {
    width: 20px;
    height: 20px;
    stroke: #ffffff;
    stroke-width: 3px;
    margin-bottom: 2px;
    transition: transform 0.3s ease;
}
.fab-btn.top:hover svg {
    transform: translateY(-3px);
}
.fab-btn.top span {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    font-family: 'Outfit', 'Noto Sans KR', sans-serif;
    color: #fcf9f2;
}

/* 문의하기 메인 토글 버튼 (노란색 계열) */
.fab-btn.toggle {
    background: #ffd600; /* 밝은 노란색 */
    color: #3e2723;
    z-index: 20;
}
.fab-btn.toggle:hover {
    background: #ffc400;
}
.fab-btn.toggle svg {
    width: 26px;
    height: 26px;
    stroke: #3e2723;
    stroke-width: 2.2px;
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.fab-btn.toggle span {
    font-size: 0.75rem;
    font-weight: 700;
    font-family: 'Noto Sans KR', sans-serif;
    margin-top: 1px;
    letter-spacing: -0.03em;
}

/* X로 회전하는 닫기 상태 아이콘 */
.fab-box.active .fab-btn.toggle svg.chat-icon {
    display: none;
}
.fab-box.active .fab-btn.toggle svg.close-icon {
    display: block;
    transform: rotate(90deg);
}
.fab-btn.toggle svg.close-icon {
    display: none;
    width: 22px;
    height: 22px;
}

/* 서브 메뉴 컨테이너 (위로 펼쳐짐) */
.fab-menu-items {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
    position: absolute;
    bottom: 84px; /* 메인 버튼 위 배치 */
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 15;
}

/* 활성화 시 마우스 이벤트 활성화 */
.fab-box.active .fab-menu-items {
    pointer-events: auto;
}

/* 서브 버튼 공통 */
.fab-sub-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px) scale(0.8);
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.3s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.3s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.2s ease;
}

.fab-sub-btn:hover {
    transform: scale(1.08) translateY(0);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

/* 텍스트 툴팁 (말풍선) */
.fab-sub-btn::before {
    content: attr(data-label);
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    background: rgba(62, 39, 35, 0.95);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Noto Sans KR', sans-serif;
    pointer-events: none;
}
.fab-sub-btn:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

/* 카카오톡 문의 (노란색/브라운 텍스트) */
.fab-sub-btn.kakao {
    background: #fee500;
    color: #3c1e1e;
}
.fab-sub-btn.kakao:hover {
    background: #fdd800;
}
.fab-sub-btn.kakao svg {
    width: 24px;
    height: 24px;
    fill: #3c1e1e;
}

/* 전화 문의 (초록색) */
.fab-sub-btn.phone {
    background: #00c73c;
    color: #ffffff;
}
.fab-sub-btn.phone:hover {
    background: #00b336;
}
.fab-sub-btn.phone svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

/* 창업 문의 (핑크색) */
.fab-sub-btn.startup {
    background: #ffb7c5; /* 가맹 테마 핑크색 */
    color: #3e2723;
}
.fab-sub-btn.startup:hover {
    background: #ffa4b5;
}
.fab-sub-btn.startup svg {
    width: 24px;
    height: 24px;
    fill: #3e2723;
}

/* 활성화 시 트랜지션 효과 및 지연 시간 설정 */
.fab-box.active .fab-sub-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* 애니메이션 엇갈림 지연 시간 (순서: 창업문의 -> 전화문의 -> 카카오톡문의) */
/* 닫힐 때는 스크립트에서 역순 적용 */
.fab-box.active .fab-sub-btn.startup {
    transition-delay: 0ms;
}
.fab-box.active .fab-sub-btn.phone {
    transition-delay: 50ms;
}
.fab-box.active .fab-sub-btn.kakao {
    transition-delay: 100ms;
}

/* 활성화 시 상담하기 토글 버튼이 위로 올라가지 않고 제자리에 고정 (TOP 아이콘과의 간격 좁게 유지) */
.fab-box.active .fab-btn.toggle {
    transform: none;
}
.fab-box.active .fab-btn.toggle:hover {
    transform: scale(1.08);
}

/* TOP 버튼은 항상 맨 아래(기본 위치)에 고정되므로 active 시 transform 없음 */
.fab-box.active .fab-btn.top {
    transform: none;
}

/* 서브 메뉴 컨테이너 위치 조정 (제자리에 있는 상담하기 버튼의 탑(152px) 바로 위에 위치하도록 좁게 배치) */
.fab-menu-items {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    gap: 12px;
    position: absolute;
    bottom: 160px; /* TOP(68) + 간격(16) + 상담하기(68) = 152px 위치 바로 위(160px)에 정렬 */
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 15;
}

/* 활성화 시 서브 메뉴들이 튀어나오는 최종 위치 */
.fab-box.active .fab-menu-items {
    pointer-events: auto;
}

/* 서브 버튼 공통 기본 트랜슬레이션 (활성화 시 튀어나올 공간 제공) */
.fab-sub-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: none;
    outline: none;
    cursor: pointer;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: #ffffff;
    opacity: 0;
    visibility: hidden;
    transform: translateY(40px) scale(0.8);
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                visibility 0.35s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
                background-color 0.2s ease;
}

.fab-sub-btn:hover {
    transform: scale(1.08) translateY(0);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

/* 텍스트 툴팁 (말풍선) */
.fab-sub-btn::before {
    content: attr(data-label);
    position: absolute;
    right: 76px;
    top: 50%;
    transform: translateY(-50%) scale(0.9);
    background: rgba(62, 39, 35, 0.95);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Noto Sans KR', sans-serif;
    pointer-events: none;
}
.fab-sub-btn:hover::before {
    opacity: 1;
    visibility: visible;
    transform: translateY(-50%) scale(1);
}

/* 카카오톡 문의 (노란색/브라운 텍스트) */
.fab-sub-btn.kakao {
    background: #fee500;
    color: #3c1e1e;
}
.fab-sub-btn.kakao:hover {
    background: #fdd800;
}
.fab-sub-btn.kakao svg {
    width: 24px;
    height: 24px;
    fill: #3c1e1e;
}

/* 전화 문의 (초록색) */
.fab-sub-btn.phone {
    background: #00c73c;
    color: #ffffff;
}
.fab-sub-btn.phone:hover {
    background: #00b336;
}
.fab-sub-btn.phone svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

/* 창업 문의 (핑크색) */
.fab-sub-btn.startup {
    background: #ffb7c5; /* 가맹 테마 핑크색 */
    color: #3e2723;
}
.fab-sub-btn.startup:hover {
    background: #ffa4b5;
}
.fab-sub-btn.startup svg {
    width: 24px;
    height: 24px;
    fill: #3e2723;
}

/* 활성화 시 트랜지션 효과 및 지연 시간 설정 */
.fab-box.active .fab-sub-btn {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

/* 애니메이션 엇갈림 지연 시간 (순서: 창업문의 -> 전화문의 -> 카카오톡문의) */
/* 닫힐 때는 스크립트에서 역순 적용 */
.fab-box.active .fab-sub-btn.startup {
    transition-delay: 0ms;
}
.fab-box.active .fab-sub-btn.phone {
    transition-delay: 50ms;
}
.fab-box.active .fab-sub-btn.kakao {
    transition-delay: 100ms;
}

/* ── Reveal Animation (2026 Modern Cubic-Bezier Kinetic Curve) ── */
.reveal {
    opacity: 0;
    transform: translateY(50px) scale(0.97);
    transition: opacity 1.1s cubic-bezier(0.16, 1, 0.3, 1), 
                transform 1.1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

/* 완료: 매거진 지그재그 레이아웃 (v6) - 임의로 수정하지 마세요 */
/* ── Magazine Zigzag Layout (v6) ── */
.bs-zigzag-container {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 100px;
    padding-bottom: 100px; /* 섹션 자체의 여백은 최소화 */
}

.zigzag-item {
    display: grid;
    grid-template-columns: 1fr 450px 1fr;
    align-items: center;
    gap: 30px;
    margin-bottom: -180px; /* 항목 간 대폭 겹침 적용 */
    position: relative;
    z-index: 1;
}

.zigzag-item:nth-child(even) {
    z-index: 2; /* 겹치는 순서 조절 */
}

.zigzag-item:last-child {
    margin-bottom: 0;
}

.zigzag-num {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 11rem; /* 크기 상향 */
    font-style: italic;
    color: var(--yellow);
    opacity: 0.12; /* 배경 요소로서 은은하게 유지되도록 원복 */
    line-height: 0.5;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
    pointer-events: none;
    text-align: center;
    transform: translateY(-40px); /* 더 위로 배치 */
}

.zigzag-text {
    grid-column: 2;
    text-align: center;
    padding: 0 20px;
    position: relative;
    z-index: 5;
}

.zigzag-text h3 {
    font-size: 1.9rem;
    color: var(--brown);
    margin-bottom: 16px;
    position: relative;
}

.zigzag-text p {
    font-size: 1.05rem;
    color: var(--grey);
    line-height: 1.7;
}

.zigzag-img-wrapper {
    width: 100%;
}

.zigzag-img-wrapper img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-h);
    aspect-ratio: 4/5;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.zigzag-item:hover .zigzag-img-wrapper img {
    transform: scale(1.03);
}

/* 홀수 번째: 이미지를 왼쪽에 */
.zigzag-item:nth-child(odd) .zigzag-img-wrapper {
    grid-column: 1;
}

/* 짝수 번째: 이미지를 오른쪽에 */
.zigzag-item:nth-child(even) .zigzag-img-wrapper {
    grid-column: 3;
}

/* ── B2B Marketing Sections ── */
/* 완료: 매거진 스타일 지표 섹션 (v6) - 임의로 수정하지 마세요 */
/* ── Magazine Quote Style (v6) ── */
/* 완료: 프리미엄 에디토리얼 박스 (v6) - 임의로 수정하지 마세요 */
.magazine-quote {
    text-align: center;
    padding: 100px 20px; /* 상하 패딩을 동일하게 설정하여 수직 중앙 정렬 */
    border-top: 1px solid rgba(139, 69, 19, 0.12);
    border-bottom: 1px solid rgba(139, 69, 19, 0.12);
    position: relative;
    margin: 350px auto 0; /* 하단 마진 제거 */
    max-width: 900px;
}

.magazine-quote::after {
    content: 'COCO CAKE BRAND STORY';
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFF8E1; /* 섹션 배경색과 일치 */
    padding: 0 30px;
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    color: var(--brown);
    font-weight: 400;
    opacity: 0.5;
}

.magazine-quote h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 3.5vw, 2.1rem) !important; /* 크기 축소 */
    line-height: 1.6 !important;
    margin: 0 !important;
    font-weight: 700;
    color: var(--brown);
}

/* 완료: 4개 이미지 & 3개 대형 오버랩 원 컴포넌트 교차 레이아웃 (v7) - 임의 수정 금지 */
/* ── Trust Visual Row & Extra Large Glass Circles (v7) ── */
.trust-visual-row {
    display: flex;
    align-items: center;
    width: 100%;
    height: 720px; /* 더 커진 원을 수용하기 위해 높이 조정 */
    margin-top: 80px;
    background: #fdfdfd;
    overflow: hidden;
}

.trust-img-box {
    flex: 1;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
}

.trust-img-box::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.45));
}

.trust-circle-item {
    flex-shrink: 0;
    width: 350px; /* 원 크기 추가 상향 (280px -> 350px) */
    height: 350px;
    background: rgba(255, 255, 255, 0.88); /* 화이트 투명 배경 */
    backdrop-filter: blur(12px); /* 프리미엄 글래스모피즘 효과 */
    -webkit-backdrop-filter: blur(12px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 -175px; /* 절반만큼 겹치도록 설정 */
    z-index: 10;
    box-shadow: 0 30px 70px rgba(62, 39, 35, 0.18);
    text-align: center;
    color: var(--brown);
    border: none; /* 테두리 제거 */
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.trust-circle-item:hover {
    transform: scale(1.03);
}

.circle-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.circle-label {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: rgba(62, 39, 35, 0.5);
    margin-bottom: 15px;
    font-weight: 700;
}

.circle-stat-box {
    background: var(--brown);
    color: var(--yellow);
    height: 70px;
    padding: 0 32px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}


.circle-num {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 0.9;
    font-variant-numeric: lining-nums tabular-nums;
    font-feature-settings: "lnum", "tnum";
}


.circle-unit {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 0.9;
}

.circle-text {
    font-size: 1.25rem; /* 텍스트 크기 상향 */
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: -0.02em;
    color: var(--brown);
    margin-bottom: 12px;
}

.circle-desc {
    font-size: 0.92rem; /* 설명 문구 크기 상향 */
    color: rgba(62, 39, 35, 0.75);
    line-height: 1.7;
    word-break: keep-all;
    font-weight: 400;
    max-width: 280px;
}

/* [모바일 전용 최적화 2안: 매거진식 사진 & 원형 지표 양방향 샌드위치 오버랩 - PC 스타일 100% 완전 보존] */
@media (max-width: 1024px) {
    .trust-visual-row {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 20px 20px 50px;
        gap: 0;
        background: transparent;
        overflow: visible;
        margin-top: 20px;
    }
    /* 고화질 매장 사진 블록 (4개 모두 살려 연속 브릿지 연출) */
    .trust-img-box {
        display: block;
        width: 100%;
        max-width: 380px;
        height: 220px;
        border-radius: 22px;
        overflow: hidden;
        background-size: cover;
        background-position: center;
        box-shadow: 0 10px 28px rgba(62, 39, 35, 0.09);
        flex: none;
        position: relative;
        z-index: 1;
    }
    .trust-img-box::after {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.35) 100%);
    }
    /* 위/아래 사진 모두에 걸쳐지는 양방향 샌드위치 오버랩 원형 배지 */
    .trust-circle-item {
        margin: -55px auto -55px auto !important;
        width: 280px;
        height: 280px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        box-shadow: 0 18px 40px rgba(62, 39, 35, 0.16);
        border: 2px solid rgba(255, 183, 197, 0.45);
        transform: none !important;
        position: relative;
        z-index: 5;
        overflow: hidden;
    }
    .circle-content {
        padding: 24px 18px;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        height: 100%;
        text-align: center;
    }
    .circle-label {
        font-size: 0.75rem;
        letter-spacing: 0.2em;
        color: rgba(62, 39, 35, 0.55);
        margin-bottom: 8px;
        font-weight: 700;
    }
    .circle-stat-box {
        height: 50px;
        padding: 0 22px;
        margin-bottom: 10px;
        border-radius: 8px;
        background: var(--brown);
        color: var(--yellow);
        box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
    }
    .circle-num {
        font-size: 2.1rem;
        color: var(--yellow);
        font-weight: 900;
    }
    .circle-unit {
        font-size: 1.05rem;
        color: var(--yellow);
        font-weight: 800;
    }
    .circle-text {
        font-size: 1.15rem;
        font-weight: 700;
        color: var(--brown);
        margin-bottom: 6px;
    }
    .circle-desc {
        font-size: 0.82rem;
        line-height: 1.55;
        color: rgba(62, 39, 35, 0.75);
        max-width: 230px;
    }
}



/* 완료: 브랜드 철학 섹션 스크롤 3단 분할 스타일 (v7) - 임의 수정 금지 */
/* ── Brand Philosophy: 스크롤 3단 분할 (v7 리뉴얼) ── */
#brand-philosophy {
    position: relative;
    background: #000;
}

/* 스크롤 공간 확보: 1 스텝 = 1×100vh → 총 3스텝(초기 + 2회) = 300vh */
.bphilo-scroll-area {
    height: 300vh;
    position: relative;
}

.bphilo-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    overflow: hidden;
    display: flex;
}

/* 각 패널: 스택되어 절대 배치 → JS가 width/translateX 제어 */
.bphilo-panel {
    position: absolute;
    top: 0;
    height: 100%;
    overflow: hidden;
    will-change: transform, width;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 패널1: 초기 전체화면 */
#bphilo-p1 {
    left: 0;
    width: 100%;
    z-index: 1;
    transition: width 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

/* 패널2: JS가 left/width 동적 제어 */
#bphilo-p2 {
    left: 100%;      /* 초기: 화면 밖 */
    width: 0%;
    z-index: 2;
    transition: left 0.9s cubic-bezier(0.76, 0, 0.24, 1),
                width 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

/* 패널3: JS가 left/width 동적 제어 */
#bphilo-p3 {
    left: 100%;      /* 초기: 화면 밖 */
    width: 0%;
    z-index: 3;
    transition: left 0.9s cubic-bezier(0.76, 0, 0.24, 1),
                width 0.9s cubic-bezier(0.76, 0, 0.24, 1);
}

/* 패널 배경 이미지 */
.bphilo-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transform: scale(1.04); /* 약간 확대해 크롭 여백 확보 */
    transition: transform 1s ease;
}

/* 어두운 오버레이 */
/* 완료: 텍스트 가독성 향상을 위한 중앙 집중형 그라데이션 적용 (2026-04-27) - 임의 수정 금지 */
.bphilo-overlay {
    position: absolute;
    inset: 0;
    /* 텍스트가 위치한 중앙부를 어둡게 하여 가독성을 높이는 선형 그라데이션 */
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.15) 0%, 
        rgba(0,0,0,0.65) 50%, 
        rgba(0,0,0,0.15) 100%
    );
    z-index: 1;
}

/* 텍스트 래퍼 */
.bphilo-text-wrap {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    padding: 40px 60px;
    max-width: 600px;
    /* 초기: 화면 정중앙 */
    transition: opacity 0.6s ease, transform 0.6s ease, font-size 0.6s ease;
}

.bphilo-label {
    display: block;
    font-size: 0.85rem;
    letter-spacing: 0.3em;
    color: var(--yellow);
    margin-bottom: 16px;
    font-weight: 500;
}

.bphilo-title {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    color: #fff;
    text-shadow: 0 5px 25px rgba(0,0,0,0.4);
    margin-bottom: 24px;
    line-height: 1.2;
}

/* 단계별 카피 텍스트 */
.bphilo-copy {
    font-size: clamp(1.1rem, 2.2vw, 1.5rem);
    line-height: 1.85;
    color: rgba(255,255,255,0.92);
    font-weight: 400;
    word-break: keep-all;
    text-shadow: 0 2px 12px rgba(0,0,0,0.35);
    transition: font-size 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}

/* 완료: 2분할/3분할 시 텍스트 크기 일관성 유지 스타일 (2026-04-27) - 임의 수정 금지 */
/* 3분할 시 텍스트 크기 축소 (JS로 클래스 추가) — 2분할, 3분할 일관성 확보를 위해 .active 시 동일 적용 */
.bphilo-panel.active .bphilo-copy {
    font-size: clamp(0.95rem, 1.6vw, 1.2rem);
    line-height: 1.75;
}
.bphilo-panel.active .bphilo-title {
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    margin-bottom: 18px;
}
.bphilo-panel.active .bphilo-text-wrap {
    padding: 30px 30px;
    max-width: 420px;
}

/* 수직 구분선 (패널 사이) */
.bphilo-panel::after {
    content: '';
    position: absolute;
    top: 10%;
    right: 0;
    width: 1px;
    height: 80%;
    background: rgba(255,255,255,0.2);
    z-index: 10;
    opacity: 0;
    transition: opacity 0.5s ease 0.4s;
}

.bphilo-panel.active::after {
    opacity: 1;
}

/* [브랜드 철학 모바일 전용 미디어 쿼리 - PC 스타일 100% 완전 보존] */
@media (max-width: 768px) {
    .bphilo-scroll-area { 
        height: 260vh;
        height: 260lvh; /* 카카오톡 인앱 브라우저 하단바 등장/소멸 시 섹션 높이 흔들림 및 순간이동 원천 방지 */
    }
    .bphilo-sticky {
        height: 100vh;
        height: 100lvh;
        height: 100dvh;
    }
    .bphilo-panel {
        transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1), width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .bphilo-text-wrap {
        padding: 30px 20px !important;
        max-width: 100% !important;
        width: 100% !important;
    }
    .bphilo-title {
        font-size: clamp(1.6rem, 5.5vw, 2.2rem) !important;
        margin-bottom: 16px !important;
    }
    .bphilo-copy {
        font-size: clamp(0.92rem, 3.8vw, 1.05rem) !important;
        line-height: 1.75 !important;
    }
    .bphilo-panel::after {
        display: none !important;
    }
}


.trust-card{border:none;background:var(--cream);padding:40px 20px;transition:.4s}

/* 완료: 핵심 경쟁력 섹션 직각 컬럼 디자인 (v6) - 임의로 수정하지 마세요 */
/* 4컬럼 카드 디자인: 세로 비율(4:5)로 조정하여 가로 폭을 줄이고 밀도를 확보 */
.strength-item{text-align:center;transition:all .3s ease}
.strength-img-box{width:100%;aspect-ratio:4/5;border-radius:12px;overflow:hidden;margin-bottom:20px}
.strength-img-box img{width:100%;height:100%;object-fit:cover;transition:all .5s}
.strength-item:hover .strength-img-box img{transform:scale(1.1)}
.strength-text h4{font-size:1.3rem;margin-bottom:10px;color:var(--brown)}
.strength-text p{color:var(--grey);font-size:0.95rem;line-height:1.6;word-break:keep-all}

.video-banner{position:relative;border-radius:var(--radius);overflow:hidden;box-shadow:var(--shadow-h);height:450px}
.video-banner video{width:100%;height:100%;object-fit:cover}
.video-caption{position:absolute;bottom:30px;left:40px;color:#fff;z-index:2;font-size:1.5rem;font-weight:700;text-shadow:0 2px 10px rgba(0,0,0,0.5)}
.video-overlay-inner{position:absolute;inset:0;background:linear-gradient(to top, rgba(0,0,0,0.6), transparent)}

/* 완료: 고객 후기 무한 슬라이더 및 마스킹 스타일 (2026-04-25) - 임의 수정 금지 */
/* ==========================================
   리뷰 섹션 그리드 UI 리뉴얼 (Naver Place & Baemin)
   ========================================== */
#media-reviews .sec-label {
    display: inline-block !important;
    margin-bottom: 12px;
    font-weight: 700;
    color: var(--pink);
    letter-spacing: 0.1em;
    font-size: 0.95rem;
}
.review-stat-summary {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
    text-align: center;
}
.review-stat-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}
.review-stat-stars svg {
    width: 28px;
    height: 28px;
    fill: #FFC107;
    color: #FFC107;
}
.review-stat-score {
    font-size: 2rem;
    font-weight: 800;
    color: var(--brown);
}
.review-stat-score span {
    font-size: 1.2rem;
    color: var(--grey);
    font-weight: 500;
}

.review-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.review-grid-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.05);
    border: 1px solid rgba(255, 183, 197, 0.25);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-grid-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(62, 39, 35, 0.1);
}

.review-card-img-box {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    position: relative;
}

.review-card-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.review-grid-card:hover .review-card-img-box img {
    transform: scale(1.05);
}

.platform-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    z-index: 2;
}

.platform-badge.naver {
    background: #03C75A; /* 네이버 그린 */
}

.platform-badge.baemin {
    background: #2AC1BC; /* 배민 민트 */
}

.review-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.review-card-author-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.review-card-author {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown);
}

.review-card-stars {
    display: flex;
    gap: 2px;
}

.review-card-stars svg {
    width: 16px;
    height: 16px;
    fill: #FFC107;
    color: #FFC107;
}

.review-grid-card {
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
    height: 100%;
}

.review-grid-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(62, 39, 35, 0.12);
    z-index: 5;
}

.review-card-text {
    font-size: 0.95rem;
    color: #5D4037;
    line-height: 1.6;
    margin-bottom: 16px;
    flex-grow: 1;
    display: block;
    word-break: keep-all;
}

.review-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-top: 1px dashed rgba(62, 39, 35, 0.08);
    padding-top: 15px;
}

.review-card-tags span {
    font-size: 0.8rem;
    color: var(--grey);
    background: #F5F3ED;
    padding: 4px 10px;
    border-radius: 4px;
    font-weight: 600;
}

.review-card-tags span.cake-name {
    color: #4A2E2B;
    background: #FFF0F4;
    border: 1px solid rgba(255, 143, 163, 0.4);
    font-weight: 700;
}

/* 하단 만족도 종합 패널 */
.satisfaction-stats-panel {
    background: #F5F3ED;
    border-radius: 16px;
    padding: 40px;
    margin-top: 50px;
    text-align: center;
}

.satisfaction-stats-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 30px;
}

.satisfaction-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.satisfaction-stat-item {
    background: var(--white);
    border-radius: 12px;
    padding: 24px 20px;
    box-shadow: 0 4px 15px rgba(62, 39, 35, 0.02);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.satisfaction-stat-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 183, 197, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.satisfaction-stat-icon-circle svg {
    width: 28px;
    height: 28px;
    color: var(--pink);
}

.satisfaction-stat-label {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 5px;
}

.satisfaction-stat-value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--pink);
    margin-bottom: 5px;
}

.satisfaction-stat-desc {
    font-size: 0.8rem;
    color: var(--grey);
    font-weight: 500;
}

.satisfaction-footer-text {
    font-size: 0.8rem;
    color: var(--grey);
    margin-top: 30px;
    font-weight: 500;
}

@media (max-width: 991px) {
    .review-grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
    .satisfaction-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

/* ── 리뷰 슬라이더 (PC 3열 그리드 보존 & 모바일 무한 롤링) ── */
.review-slider-wrap {
    width: 100%;
    margin-bottom: 60px;
    position: relative;
}

.review-slider {
    width: 100%;
}

.review-set {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.review-set-clone {
    display: none; /* PC에서는 복제본 숨김 */
}

@media (max-width: 991px) {
    .review-set {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

@media (max-width: 768px) {
    html {
        scroll-behavior: auto !important; /* 모바일 터치 관성 스크롤 충돌 및 순간이동 방지 */
    }

    /* 카카오톡 인앱 브라우저 하단바 등장/소멸 시 스크롤 앵커링 튐 원천 차단 */
    body, #media-reviews, #brand-philosophy, #protection, #signature-gallery, #trust-data, #core-strength {
        overflow-anchor: none !important;
    }

    /* 모바일 히어로 섹션 높이 카카오톡 하단바 안정화 */
    #hero-section {
        height: 100vh !important;
        height: 100lvh !important;
        height: 100dvh !important;
    }

    /* 모바일 고객 리뷰 위아래 영역 스크롤 순간이동(translateY 튀어오름) 원천 차단 (PC는 100% 온전히 보존) */
    #media-reviews .reveal,
    #media-reviews .review-stat-summary,
    #media-reviews .satisfaction-stats-panel,
    #media-reviews .satisfaction-stat-item {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    /* [모바일 전용] 시그니처 갤러리와 동일한 무한 루프 Marquee & 손가락 스와이프 슬라이더 */
    .review-slider-wrap {
        overflow: hidden !important;
        margin-left: -20px !important;
        margin-right: -20px !important;
        width: calc(100% + 40px) !important;
        padding: 10px 0 30px 0 !important;
        touch-action: pan-y pinch-zoom; /* 세로 스크롤 브라우저 네이티브 패스스루 보장 */
    }

    .review-slider {
        display: flex !important;
        width: max-content !important;
        animation: none !important;
        will-change: transform;
        touch-action: pan-y pinch-zoom;
    }

    .review-set {
        display: flex !important;
        gap: 16px !important;
        padding-right: 16px !important;
        touch-action: pan-y pinch-zoom;
    }

    .review-set-clone {
        display: flex !important; /* 모바일에서는 무한 연속 롤링을 위해 노출 */
        touch-action: pan-y pinch-zoom;
    }

    .review-grid-card {
        flex: 0 0 280px !important;
        width: 280px !important;
        max-width: 280px !important;
        margin-bottom: 0 !important;
        box-shadow: 0 10px 24px rgba(62, 39, 35, 0.08) !important;
        display: flex !important;
        flex-direction: column !important;
        height: auto !important;
        user-select: none;
        -webkit-user-select: none;
        touch-action: pan-y pinch-zoom;
        /* 모바일 슬라이더 튀어오름(translateY) 방지 및 균일한 높이 유지 (PC 3열 그리드 진입 애니메이션은 100% 보존) */
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }

    .review-card-img-box {
        aspect-ratio: 16 / 11 !important;
        flex-shrink: 0 !important;
    }

    .review-card-body {
        padding: 20px 18px !important;
        display: flex !important;
        flex-direction: column !important;
        flex: 1 1 auto !important; /* 본문 영역을 채워 태그가 항상 바닥에 정렬되도록 보장 */
    }

    .review-card-text {
        font-size: 0.9rem !important;
        line-height: 1.55 !important;
        flex-grow: 1 !important; /* 텍스트 길이에 관계없이 남는 공간을 균등 분배하여 하단 태그 위치 및 전체 카드 높이 통일 */
        margin-bottom: 16px !important;
    }

    .review-card-tags {
        margin-top: auto !important; /* 카드 하단에 항상 통일된 위치로 고정 */
    }
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--white);
    border: 1px solid rgba(62, 39, 35, 0.1);
    color: var(--brown);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.slider-btn:hover {
    background: var(--yellow);
    border-color: var(--yellow);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev { left: -25px; }
.slider-btn.next { right: -25px; }

/* 갤러리 및 마키 슬라이더의 래퍼 내 버튼 위치 및 자연스러운 호버 노출 제어 */
.gallery-slider-container .slider-btn.prev,
.marquee-container .slider-btn.prev {
    left: 30px;
}
.gallery-slider-container .slider-btn.next,
.marquee-container .slider-btn.next {
    right: 30px;
}

.gallery-slider-container .slider-btn,
.marquee-container .slider-btn {
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s cubic-bezier(0.25, 1, 0.5, 1), transform 0.35s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.gallery-slider-container:hover .slider-btn,
.gallery-reveal:hover .slider-btn,
.marquee-container:hover .slider-btn {
    opacity: 1;
    pointer-events: auto;
}

/* 완료: CTA 패럴랙스 배경 효과 (v6) - 임의로 수정하지 마세요 */
.cta-banner, .subpage-hero{padding:140px 0;background-size:cover;background-position:center;background-attachment:fixed;position:relative;background-repeat:no-repeat;display:flex;align-items:center;justify-content:center;min-height:450px;overflow:hidden;}
.subpage-hero-video{position:absolute;inset:0;width:100%;height:100%;object-fit:cover;z-index:0;}
.cta-content, .sub-hero-content{position:relative;z-index:2;color:var(--white);text-align:center}
.cta-banner::after, .subpage-hero::after{content:'';position:absolute;inset:0;background:rgba(62,39,35,0.6);z-index:1}
.subpage-hero:has(.subpage-hero-video)::after{display:none;}

.sub-hero-content .sec-label { color: var(--yellow); margin-bottom: 15px; display: block; }
.sub-hero-content .sec-title { color: var(--white); font-size: clamp(2.5rem, 6vw, 4rem); margin: 0; }
.sub-hero-content .sec-sub { color: rgba(255,255,255,0.8); margin-top: 20px; font-size: 1.2rem; }

.insta-btn, .blog-btn{display:inline-block;padding:18px 45px;border:1px solid var(--brown);border-radius:50px;color:var(--brown) !important;text-decoration:none;font-weight:700;transition:all .3s;background:transparent;min-width:240px;text-align:center;box-sizing:border-box}
.insta-btn:hover, .blog-btn:hover{background:var(--pink);border-color:var(--pink);color:var(--white) !important;box-shadow:var(--shadow-h)}

/* ── Responsive ── */
@media(max-width:1024px){
.grid-2,.grid-3{grid-template-columns:1fr}.grid-4{grid-template-columns:1fr 1fr}
.comp-card .inner{flex-direction:column}.comp-card img{max-width:100%}
.philosophy-images{height:350px}.p-img-1{width:55%}.p-img-2{width:45%}
.footer-grid{grid-template-columns:1fr}
}
@media(max-width:768px){
.container{padding:0 20px}.section{padding:80px 0}

/* ── 모바일 전용 프리미엄 내비게이션 드로어 (메인/서브 전 페이지 통일, PC는 100% 완전 보존) ── */
#gnb::before { display: none !important; }

/* 모바일 햄버거/닫기 토글 버튼 (차이 모드 및 테두리 박스 완전 제거) */
body.subpage #gnb .mobile-toggle,
#gnb .mobile-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 10001;
    font-size: 1.8rem;
    color: #2D141E !important;
    mix-blend-mode: normal !important;
    background: transparent !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    -webkit-tap-highlight-color: transparent !important;
    cursor: pointer;
    padding: 6px;
    line-height: 1;
}

.gnb-inner:has(.nav-menu.open) .mobile-toggle {
    font-size: 0 !important;
}
.gnb-inner:has(.nav-menu.open) .mobile-toggle::before {
    content: '✕';
    font-size: 1.7rem;
    font-weight: 300;
    color: #2D141E !important;
    mix-blend-mode: normal !important;
}

/* 모바일 풀스크린 화이트 드로어 */
.nav-menu {
    display: none;
}
.nav-menu.open {
    display: flex !important;
    flex-direction: column !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100vw !important;
    max-width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    background: #FFFFFF !important;
    z-index: 10000 !important;
    align-items: stretch !important;
    justify-content: flex-start !important;
    padding: 85px 24px 40px !important;
    gap: 0 !important;
    overflow-y: auto !important;
    box-sizing: border-box !important;
    box-shadow: none !important;
    margin: 0 !important;
}
.nav-menu.open > li {
    width: 100% !important;
    border-bottom: 1px solid rgba(62, 39, 35, 0.08) !important;
    padding: 14px 0 !important;
    text-align: left !important;
    position: static !important;
}

/* 대메뉴 텍스트 (서브페이지 difference 모드 및 노란색 덮어쓰기 완전 방지) */
body.subpage #gnb .nav-menu.open .nav-link,
#gnb .nav-menu.open .nav-link {
    font-size: 1.25rem !important;
    font-weight: 800 !important;
    color: #2D141E !important;
    mix-blend-mode: normal !important;
    filter: none !important;
    padding: 4px 0 !important;
    text-shadow: none !important;
    display: block !important;
}
body.subpage #gnb .nav-menu.open .nav-link.active,
#gnb .nav-menu.open .nav-link.active {
    color: var(--pink, #FF4769) !important;
    font-weight: 800 !important;
    mix-blend-mode: normal !important;
    filter: none !important;
}
.nav-menu.open .nav-link::after {
    display: none !important;
}

/* 서브메뉴 리스트 */
.nav-menu.open .sub-menu {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    padding: 12px 0 6px 14px !important;
    min-width: 0 !important;
    text-align: left !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}
.nav-menu.open .sub-menu li {
    opacity: 1 !important;
    transform: none !important;
}
body.subpage #gnb .nav-menu.open .sub-menu li a,
#gnb .nav-menu.open .sub-menu li a {
    font-size: 0.98rem !important;
    color: #64748B !important;
    mix-blend-mode: normal !important;
    filter: none !important;
    padding: 4px 0 !important;
    font-weight: 500 !important;
    display: inline-block !important;
}
body.subpage #gnb .nav-menu.open .sub-menu li a.active,
#gnb .nav-menu.open .sub-menu li a.active {
    color: var(--pink, #FF4769) !important;
    font-weight: 700 !important;
}

/* 하단 창업 문의 CTA 버튼 */
#gnb .nav-menu.open a.gnb-cta,
#gnb.scrolled .nav-menu.open a.gnb-cta,
body.subpage #gnb .nav-menu.open a.gnb-cta,
body.subpage #gnb.scrolled .nav-menu.open a.gnb-cta,
.nav-menu.open .nav-link.gnb-cta {
    margin-top: 20px !important;
    background: #FF4769 !important;
    color: #FFFFFF !important;
    text-align: center !important;
    border-radius: 14px !important;
    padding: 16px !important;
    font-size: 1.1rem !important;
    font-weight: 800 !important;
    display: block !important;
    box-shadow: 0 8px 20px rgba(255, 71, 105, 0.28) !important;
}
.hero-title{font-size:clamp(2rem,8vw,3.5rem)}
.menu-card{min-width:260px}
.timeline{padding-left:50px}.timeline::before{left:18px}.timeline-dot{left:-50px;width:40px;height:40px;font-size:.9rem}
.grid-4{grid-template-columns:1fr}
.slider-btn { width: 40px; height: 40px; }
.slider-btn.prev { left: 10px; }
.slider-btn.next { right: 10px; }
/* 모바일 전용: 시그니처 갤러리 양쪽 화살표 버튼 제거 (터치 스와이프로 쾌적 탐색) */
.gallery-slider-container .slider-btn,
.gallery-reveal .slider-btn,
#signature-gallery .slider-btn {
    display: none !important;
}

/* [모바일 전용] 시그니처 갤러리 케이크 반 갈라짐(스플릿 도어) 효과 제거 -> 바로 좌우 슬라이드 화면 노출 */
.split-scroll-area {
    height: auto !important;
}
.split-sticky-frame {
    position: static !important;
    height: auto !important;
    padding: 30px 0 50px !important;
}
.split-door {
    display: none !important;
}
.gallery-reveal {
    opacity: 1 !important;
    transform: none !important;
    padding: 0 !important;
    pointer-events: auto !important;
}

/* [모바일 전용] 서브페이지 히어로 비디오: 상단 위치 상향, 하단 영역 당김, 레터박스(검은 라인) 제거 (PC 100% 보존) */
.subpage-hero {
    min-height: 350px !important;
    padding: 100px 0 50px !important;
    position: relative !important;
    overflow: hidden !important;
}
.subpage-hero-video {
    position: absolute !important;
    width: 100% !important;
    height: 100% !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) scale(1.18) !important;
    object-fit: cover !important;
    object-position: center 30% !important;
}
.sub-hero-content {
    padding: 0 16px !important;
    text-align: center !important;
}
.sub-hero-content .sec-label {
    font-size: 0.8rem !important;
    letter-spacing: 0.15em !important;
    margin-bottom: 8px !important;
}
.sub-hero-content .sec-title {
    font-size: clamp(1.75rem, 6.2vw, 2.2rem) !important;
    line-height: 1.25 !important;
    word-break: keep-all !important;
}
.sub-hero-content .sec-sub {
    font-size: 0.92rem !important;
    margin-top: 10px !important;
    line-height: 1.55 !important;
    word-break: keep-all !important;
    opacity: 0.92 !important;
}

/* [모바일 전용] 핵심 경쟁력 섹션: 객체(사진/영상)와 텍스트를 담은 화이트 카드 일체화 & 시원한 상하 간격 */
#core-strength {
    padding: 70px 0 90px !important;
}
#core-strength .grid-4 {
    gap: 36px !important;
}
.strength-item {
    background: #FFFFFF !important;
    border-radius: 24px !important;
    padding: 20px 20px 28px !important;
    box-shadow: 0 12px 32px rgba(62, 39, 35, 0.08) !important;
    border: 1.5px solid rgba(255, 183, 197, 0.28) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    margin: 0 !important;
}
.strength-img-box {
    width: 100% !important;
    aspect-ratio: 16 / 11 !important;
    border-radius: 16px !important;
    margin-bottom: 20px !important;
    overflow: hidden !important;
}
.strength-text h4 {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #2D141E !important;
    margin-bottom: 10px !important;
}
.strength-text p {
    font-size: 0.95rem !important;
    color: #64748B !important;
    line-height: 1.65 !important;
    word-break: keep-all !important;
}

/* [모바일 전용] 회사소개(about.html) 브랜드 스토리 01~04 수직 카드 일체화 (PC 100% 보존) */
.bs-zigzag-container {
    display: flex !important;
    flex-direction: column !important;
    gap: 36px !important;
    margin-top: 30px !important;
    padding-bottom: 30px !important;
}
.zigzag-item {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 0 !important;
    gap: 16px !important;
    align-items: stretch !important;
    background: #FFFFFF !important;
    border-radius: 24px !important;
    padding: 20px 20px 26px !important;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.08) !important;
    border: 1.5px solid rgba(255, 183, 197, 0.28) !important;
    z-index: 1 !important;
}
.zigzag-item .zigzag-img-wrapper:empty {
    display: none !important;
}
.zigzag-item .zigzag-img-wrapper {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    grid-column: auto !important;
}
.zigzag-item .zigzag-img-wrapper img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 16 / 11 !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    box-shadow: none !important;
}
.zigzag-item .zigzag-text {
    order: 2 !important;
    grid-column: auto !important;
    width: 100% !important;
    padding: 8px 4px 0 !important;
    text-align: center !important;
    z-index: 2 !important;
}
.zigzag-num {
    display: inline-block !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 2.4rem !important;
    font-weight: 900 !important;
    color: #FF4769 !important;
    opacity: 0.9 !important;
    line-height: 1 !important;
    margin-bottom: 8px !important;
    transform: none !important;
}
.zigzag-text h3 {
    font-size: 1.3rem !important;
    font-weight: 800 !important;
    color: #2D141E !important;
    margin-bottom: 10px !important;
}
.zigzag-text p {
    font-size: 0.95rem !important;
    color: #64748B !important;
    line-height: 1.65 !important;
    word-break: keep-all !important;
}
.magazine-quote {
    margin: 40px auto 0 !important;
    padding: 50px 16px !important;
    border-top: 1px solid rgba(139, 69, 19, 0.12) !important;
    border-bottom: 1px solid rgba(139, 69, 19, 0.12) !important;
    position: relative !important;
}
.magazine-quote::after {
    display: none !important; /* 모바일에서 텍스트 위로 겹쳐 올라오던 하단 절대위치 라벨 숨김 */
}
.magazine-quote h3 {
    font-size: clamp(1.15rem, 4.5vw, 1.45rem) !important;
    line-height: 1.65 !important;
    word-break: keep-all !important;
}

/* [모바일 전용] 회사소개(about.html) 6대 핵심 경쟁력 카드(01~06) 수직 정렬 및 텍스트 찌그러짐 완전 해결 (PC 100% 보존) */
.comp-card {
    padding: 24px 20px 28px !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.08) !important;
    border: 1.5px solid rgba(255, 183, 197, 0.28) !important;
    margin-bottom: 32px !important;
    background: #FFFFFF !important;
}
.comp-card .inner {
    display: flex !important;
    flex-direction: column !important;
    gap: 20px !important;
    align-items: stretch !important;
}
.keypoint-ribbon {
    z-index: 20 !important;
    pointer-events: none !important;
}
.comp-card img {
    order: 1 !important;
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 16 / 11 !important;
    object-fit: cover !important;
    border-radius: 16px !important;
    flex: none !important;
    margin: 0 !important;
}
.comp-card .inner > div {
    order: 2 !important;
    width: 100% !important;
    flex: none !important;
}
.comp-num {
    font-size: 2.2rem !important;
    margin-bottom: 4px !important;
    display: inline-block !important;
}
.comp-card h3 {
    font-size: 1.3rem !important;
    margin: 6px 0 12px !important;
    color: #2D141E !important;
    font-weight: 800 !important;
}
.comp-card p {
    font-size: 0.95rem !important;
    color: #64748B !important;
    line-height: 1.65 !important;
    margin-bottom: 16px !important;
}
.comp-card ul li {
    font-size: 0.92rem !important;
    line-height: 1.6 !important;
    margin-bottom: 10px !important;
    color: #475569 !important;
}

/* [모바일 전용] 우측 하단 케이크 플로팅 버튼(FAB) 콤팩트 사이즈 축소 (PC 100% 보존) */
.fab-box {
    bottom: 24px !important;
    right: 16px !important;
}
.cake-fab-container {
    width: 88px !important;
    height: 78px !important;
    border-radius: 20px !important;
    border-width: 1px !important;
    box-shadow: 0 8px 24px rgba(255, 143, 163, 0.28), 0 3px 8px rgba(0, 0, 0, 0.08) !important;
}
.cake-fab-top {
    height: 46px !important;
    padding: 4px 4px 6px !important;
}
.cake-fab-top span {
    font-size: 0.78rem !important;
    line-height: 1.2 !important;
    letter-spacing: -0.04em !important;
}
.cake-fab-top::after {
    bottom: -12px !important;
    height: 14px !important;
}
.cake-fab-bottom {
    height: 32px !important;
    padding-top: 5px !important;
}
.cake-fab-bottom span {
    font-size: 0.74rem !important;
    letter-spacing: 0.04em !important;
}

/* [모바일 전용] 찾아오시는 길(#location) 1열 수직 정렬 및 정보 카드화 (PC 100% 보존) */
#loc-grid,
.grid-2#loc-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    display: flex !important;
    flex-direction: column !important;
}
#loc-map {
    width: 100% !important;
    min-height: 280px !important;
    height: 280px !important;
    border-radius: 20px !important;
    position: relative !important;
    overflow: hidden !important;
}
#loc-map .loc-map-link,
#loc-map .loc-map-link img {
    width: 100% !important;
    min-height: 280px !important;
    height: 280px !important;
    object-fit: cover !important;
    border-radius: 20px !important;
    display: block !important;
}
.loc-kakao-btn {
    position: absolute !important;
    top: 14px !important;
    left: 14px !important;
    min-height: auto !important;
    height: auto !important;
    padding: 8px 14px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    border-radius: 10px !important;
    z-index: 5 !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15) !important;
    white-space: nowrap !important;
    display: inline-flex !important;
}
#loc-info {
    width: 100% !important;
    padding: 24px 20px !important;
    background: #FFFFFF !important;
    border-radius: 24px !important;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.08) !important;
    border: 1.5px solid rgba(255, 183, 197, 0.28) !important;
    box-sizing: border-box !important;
}
#loc-name {
    font-size: 1.4rem !important;
    font-weight: 800 !important;
    margin-bottom: 14px !important;
}
.loc-item p {
    font-size: 0.98rem !important;
    line-height: 1.55 !important;
    word-break: keep-all !important;
}

/* [모바일 전용] 메뉴 카테고리 필터 바: 업계 표준 가로 1줄 스와이프 칩 & 커서 최적화 (PC 100% 보존) */
.filter-bar {
    display: flex !important;
    flex-wrap: nowrap !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: none !important;
    -ms-overflow-style: none !important;
    justify-content: flex-start !important;
    gap: 8px !important;
    padding: 6px 20px 16px 20px !important;
    margin: 0 -20px 24px -20px !important;
    width: calc(100% + 40px) !important;
    box-sizing: border-box !important;
}
.filter-bar::-webkit-scrollbar {
    display: none !important;
}
.filter-btn {
    flex: 0 0 auto !important;
    padding: 8px 18px !important;
    font-size: 0.88rem !important;
    font-weight: 600 !important;
    border-radius: 25px !important;
    white-space: nowrap !important;
    background: #FFFFFF !important;
    border: 1.5px solid rgba(62, 39, 35, 0.12) !important;
    color: var(--brown) !important;
    transition: all 0.25s ease !important;
}
.filter-btn.active {
    background: var(--yellow) !important;
    border-color: var(--yellow) !important;
    color: var(--brown) !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 12px rgba(255, 183, 3, 0.28) !important;
}
.product-card {
    cursor: default !important;
}

/* [모바일 전용] 개설 절차 (Step by Step) 1열 수직 가로형 카드 리스트 (PC 100% 보존) */
#franchise-step-section {
    padding-top: 45px !important;
    padding-bottom: 50px !important;
}
#franchise-cost-section {
    padding-top: 50px !important;
}
.step-grid {
    display: flex !important;
    flex-direction: column !important;
    gap: 18px !important;
    margin-top: 28px !important;
}
.step-card {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    min-height: 136px !important;
    box-sizing: border-box !important;
    gap: 20px !important;
    padding: 22px 22px !important;
    background: rgba(255, 255, 255, 0.09) !important;
    border-radius: 22px !important;
    border: 1px solid rgba(255, 255, 255, 0.14) !important;
    text-align: left !important;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12) !important;
}
.step-card .step-num {
    font-size: 2.2rem !important;
    font-weight: 800 !important;
    color: var(--yellow) !important;
    line-height: 1 !important;
    min-width: 42px !important;
    flex: 0 0 auto !important;
    margin-bottom: 0 !important;
    margin-top: 0 !important;
    text-align: center !important;
    font-family: 'Outfit', sans-serif !important;
}
.step-card .step-body {
    flex: 1 1 auto !important;
}
.step-card h4 {
    font-size: 1.2rem !important;
    color: #FFFFFF !important;
    font-weight: 800 !important;
    margin-bottom: 8px !important;
    line-height: 1.35 !important;
}
.step-card p {
    font-size: 0.94rem !important;
    color: rgba(255, 255, 255, 0.75) !important;
    line-height: 1.65 !important;
    word-break: keep-all !important;
    margin: 0 !important;
}

/* [모바일 전용] 매장 현황 및 지도: 방안 1 (상단 비주얼 뷰어 + 하단 검색/탭/리스트) (PC 100% 보존) */
.store-map-container {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    max-width: 100% !important;
    border-radius: 20px !important;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08) !important;
    margin: 0 0 !important;
    background: #FFFFFF !important;
    overflow: hidden !important;
}
/* 1. 상단 뷰어 (지도 또는 가맹 배너) */
.store-map-panel {
    order: 1 !important;
    width: 100% !important;
    height: 260px !important;
    flex: none !important;
    position: relative !important;
    border-bottom: 1px solid #eee !important;
    background: #f4f3f0 !important;
}
#map-pin-box {
    top: 12px !important;
    right: 12px !important;
    padding: 6px 12px !important;
}
#map-pin-label {
    font-size: 0.8rem !important;
}
#recruiting-map-img > div {
    padding: 24px 20px !important;
}
#recruiting-map-img h3 {
    font-size: 1.12rem !important;
    margin-bottom: 8px !important;
    line-height: 1.4 !important;
}
#recruiting-map-img p {
    font-size: 0.8rem !important;
    margin-bottom: 12px !important;
}
.pulse-inquiry-btn {
    padding: 9px 18px !important;
    font-size: 0.84rem !important;
}

/* 2. 하단 컨트롤 & 리스트 */
.store-list-panel {
    order: 2 !important;
    width: 100% !important;
    flex: none !important;
    border-right: none !important;
    background: #FFFFFF !important;
}
.store-search-box {
    padding: 18px 16px 14px !important;
    border-bottom: 1px solid #eee !important;
}
.store-list-content {
    max-height: 380px !important;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch !important;
    background: #FFFFFF !important;
}
.store-item-card {
    padding: 16px 16px !important;
}

/* [모바일 전용] PC QR 박스 숨김 & 모바일 간편예약 버튼 노출 */
.store-qr-pc-box {
    display: none !important;
}
.store-booking-mobile-btn {
    display: inline-flex !important;
}

/* [모바일 전용] 브랜드 스토리 인용구 박스 및 영문 라벨 겹침 방지 최적화 */
.brand-quote-box {
    margin: 50px auto 0 !important;
    padding: 36px 14px 44px !important;
}
.brand-quote-box h3 {
    font-size: 1.15rem !important;
    line-height: 1.7 !important;
}
.brand-quote-label {
    bottom: -10px !important;
    font-size: 0.68rem !important;
    letter-spacing: 0.2em !important;
    padding: 0 14px !important;
    white-space: nowrap !important;
    max-width: 90% !important;
}

/* [모바일 전용] 창업 문의 폼(#inquiry): 시그니처 핑크 풀배경 및 최적화된 텍스트/인풋 컬러 (PC 100% 보존) */
#inquiry {
    padding: 0 !important;
    background: #FFB7C5 !important;
}
#inquiry .container {
    padding: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}
#inquiry .inquiry-wrapper {
    width: 100% !important;
    padding: 0 !important;
    position: relative !important;
}
#inquiry .polaroid-card {
    display: none !important;
}
#inquiry .form-wrap,
#inquiry #form-box {
    width: 100% !important;
    max-width: 100% !important;
    padding: 55px 24px 60px !important;
    background: #FFB7C5 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    border: none !important;
    box-sizing: border-box !important;
    margin: 0 !important;
}
#inq-title {
    font-size: 1.65rem !important;
    line-height: 1.35 !important;
    margin-bottom: 10px !important;
    color: #2D141E !important;
    font-weight: 800 !important;
    word-break: keep-all !important;
    text-shadow: none !important;
}
#inq-sub {
    font-size: 0.95rem !important;
    line-height: 1.55 !important;
    color: rgba(45, 20, 30, 0.82) !important;
    font-weight: 500 !important;
    word-break: keep-all !important;
    margin-bottom: 32px !important;
}
#inquiry .form-group {
    margin-bottom: 34px !important;
}
#inquiry .form-label {
    color: rgba(45, 20, 30, 0.75) !important;
    font-weight: 600 !important;
}
#inquiry .form-input {
    font-size: 1.05rem !important;
    padding: 12px 0 !important;
    color: #2D141E !important;
    border-bottom: 2px solid rgba(45, 20, 30, 0.22) !important;
    font-weight: 700 !important;
}
#inquiry .form-input:focus {
    border-bottom-color: #2D141E !important;
}
#inquiry .form-input:focus ~ .form-label,
#inquiry .form-input:not(:placeholder-shown) ~ .form-label {
    color: #2D141E !important;
    font-weight: 800 !important;
}
#inquiry .submit-btn {
    padding: 16px !important;
    font-size: 1.15rem !important;
    border-radius: 14px !important;
    background: linear-gradient(135deg, #2D141E 0%, #4A1E2F 100%) !important;
    color: #FFFFFF !important;
    font-weight: 800 !important;
    box-shadow: 0 8px 24px rgba(45, 20, 30, 0.3) !important;
}
#inquiry .dual-quick-buttons {
    grid-template-columns: 1fr 1fr !important;
    gap: 12px !important;
    margin-top: 14px !important;
}
#inquiry .dual-quick-buttons .quick-btn {
    padding: 14px 12px !important;
    font-size: 0.95rem !important;
    border-radius: 12px !important;
}

/* [모바일 전용] 공지사항 게시판: 제목 하단 날짜시간분초 배치 + 아코디언 토글 화살표 (PC 100% 보존) */
.notice-table-header {
    display: none !important;
}
.notice-board-wrapper {
    border-radius: 16px !important;
    border: 1.5px solid #E2E8F0 !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03) !important;
    background: #FFFFFF !important;
}
.notice-row {
    padding: 0 !important;
    background: #FFFFFF !important;
    border: none !important;
    border-bottom: 1px solid #F1F5F9 !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    transition: background-color 0.2s ease !important;
}
.notice-row:last-child {
    border-bottom: none !important;
}
.notice-row-header {
    display: flex !important;
    flex-direction: row !important;
    justify-content: space-between !important;
    align-items: center !important;
    padding: 15px 18px !important;
    gap: 12px !important;
}
.notice-col-num {
    display: none !important;
}
.notice-col-date {
    display: none !important;
}
.notice-col-title {
    padding: 0 !important;
    flex: 1 1 auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 5px !important;
    text-align: left !important;
}
.notice-main-title {
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    color: #2D141E !important;
    line-height: 1.45 !important;
    word-break: keep-all !important;
}
.notice-mobile-date {
    display: block !important;
    font-size: 0.78rem !important;
    color: #94A3B8 !important;
    font-weight: 500 !important;
    line-height: 1.2 !important;
}
.notice-col-arrow {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 26px !important;
    height: 26px !important;
    color: #94A3B8 !important;
    flex-shrink: 0 !important;
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1), color 0.2s ease !important;
}
.notice-row.open .notice-col-arrow {
    transform: rotate(180deg) !important;
    color: #FF4769 !important;
}
.notice-content-detail {
    margin: 0 14px 14px 14px !important;
    padding: 16px !important;
    border-radius: 12px !important;
    font-size: 0.9rem !important;
    background: #FFFDF5 !important;
    border: 1px solid #FDE68A !important;
}

/* [모바일 전용] Q&A 고객문의 게시판: 콤팩트 카드 피드 + 풀와이드 글쓰기 (PC 100% 보존) */
.qna-table-header {
    display: none !important;
}
.qna-board-wrapper {
    border-radius: 16px !important;
    border: 1.5px solid #E2E8F0 !important;
    overflow: hidden !important;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.03) !important;
    background: #FFFFFF !important;
}
.qna-row-item {
    background: #FFFFFF !important;
    border: none !important;
    border-bottom: 1px solid #F1F5F9 !important;
    border-radius: 0 !important;
    margin-bottom: 0 !important;
    box-shadow: none !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 14px 18px !important;
    gap: 3px !important;
    text-align: left !important;
    min-height: auto !important;
    height: auto !important;
    transition: background-color 0.2s ease !important;
}
.qna-row-item:last-child {
    border-bottom: none !important;
}
.qna-row-item > div {
    flex: none !important;
    width: auto !important;
    height: auto !important;
    min-height: auto !important;
}
.qna-col-num {
    display: none !important;
}
.qna-col-status {
    order: 1 !important;
    margin-bottom: 2px !important;
}
.qna-col-status span {
    font-size: 0.74rem !important;
    padding: 3px 8px !important;
    border-radius: 6px !important;
    font-weight: 700 !important;
    display: inline-block !important;
}
.qna-col-title {
    order: 2 !important;
    width: 100% !important;
    padding: 0 !important;
    font-size: 0.98rem !important;
    font-weight: 700 !important;
    color: #2D141E !important;
    line-height: 1.45 !important;
    word-break: keep-all !important;
}
.qna-secret-badge {
    color: #FF4769 !important;
    font-weight: 700 !important;
    margin-right: 4px !important;
    font-size: 0.82rem !important;
}
.qna-col-writer {
    order: 3 !important;
    display: inline-block !important;
    font-size: 0.78rem !important;
    color: #94A3B8 !important;
    font-weight: 500 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
}
.qna-col-writer::after {
    content: '·';
    margin: 0 6px;
    color: #CBD5E1;
}
.qna-col-date {
    order: 4 !important;
    display: inline-block !important;
    font-size: 0.78rem !important;
    color: #94A3B8 !important;
    font-weight: 500 !important;
    padding: 0 !important;
    line-height: 1.3 !important;
    margin: 0 !important;
}
.qna-footer-bar {
    flex-direction: column !important;
    gap: 18px !important;
    align-items: stretch !important;
    margin-top: 24px !important;
    width: 100% !important;
}
.qna-footer-spacer {
    display: none !important;
}
.qna-write-btn {
    width: 100% !important;
    padding: 14px 20px !important;
    font-size: 1.02rem !important;
    font-weight: 800 !important;
    border-radius: 12px !important;
    background: #2D141E !important;
    color: #FFFFFF !important;
    box-shadow: 0 6px 18px rgba(45, 20, 30, 0.22) !important;
    text-align: center !important;
    cursor: pointer !important;
}
#qnaPaginationWrapper {
    justify-content: center !important;
}

/* [모바일 전용] 인스타그램 슬라이더 좌우 버튼 제거 & 터치 스와이프 & 버튼 동일 크기 (PC 100% 보존) */
#instaPrevBtn, #instaNextBtn {
    display: none !important;
}
.insta-btn, .blog-btn {
    width: 280px !important;
    max-width: 90% !important;
    box-sizing: border-box !important;
    display: inline-flex !important;
    justify-content: center !important;
    align-items: center !important;
    text-align: center !important;
    padding: 15px 20px !important;
    font-size: 0.98rem !important;
    border-radius: 9999px !important;
}
}

/* [PC 전용] 브랜드 스토리 인용구 박스 */
.brand-quote-box {
    max-width: 900px;
    margin: 80px auto 0;
    padding: 40px 0;
    border-top: 1px solid rgba(139, 69, 19, 0.12);
    border-bottom: 1px solid rgba(139, 69, 19, 0.12);
    text-align: center;
    position: relative;
}
.brand-quote-box h3 {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    color: var(--brown);
    line-height: 1.7;
    margin: 0;
    font-weight: 400;
    word-break: keep-all;
    letter-spacing: -0.5px;
    position: relative;
    z-index: 1;
}
.brand-quote-box h3 strong {
    color: #fff;
    font-weight: 700;
}
.brand-quote-label {
    position: absolute;
    bottom: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFB7C5;
    padding: 0 30px;
    font-size: 0.75rem;
    letter-spacing: 0.5em;
    color: var(--brown);
    font-weight: 400;
    opacity: 0.5;
    z-index: 2;
    font-family: 'Outfit', sans-serif;
    white-space: nowrap;
}

/* [PC 전용] 매장 현황 2컬럼 레이아웃 (가로 600px 높이 고정) */
.store-map-container {
    max-width: 1200px;
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    display: flex;
    height: 600px;
    flex-direction: row;
}
.store-list-panel {
    width: 380px;
    background: #fcfcfc;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #eee;
    flex-shrink: 0;
}
.store-search-box {
    padding: 24px;
    border-bottom: 1px solid #eee;
}
.store-list-content {
    flex: 1;
    overflow-y: auto;
    background: #fff;
}
.store-map-panel {
    flex: 1;
    background: #f4f3f0;
    position: relative;
    overflow: hidden;
}

/* [PC 전용] 개설 절차 4열 그리드 */
.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.step-card {
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 32px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.step-card .step-num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--yellow);
    display: block;
    margin-bottom: 14px;
    font-family: 'Outfit', sans-serif;
}
.step-card h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 10px;
}
.step-card p {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
    word-break: keep-all;
}

/* [PC 전용] 찾아오시는 길 2컬럼 레이아웃 */
#loc-grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 80px;
}

/* 스마트 예약 시스템 비디오 적용 스타일 */
.strength-card-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: inherit;
}

/* 창업 FAQ 매거진 그리드 & 좌측 카드 이미지 1번 스샷 크기(480px) 완전 고정 스타일 */
.faq-magazine-grid {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 45px;
    align-items: start;
}

.faq-magazine-card {
    width: 380px;
    height: 480px;
    min-height: 480px;
    max-height: 480px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 16px 40px rgba(62, 39, 35, 0.1);
    flex-shrink: 0;
}

.faq-magazine-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 📌 게시글 개수(1~4개)에 상관없이 하단 페이지네이션(이전, 1, 2, 다음) 위치 100% 고정 배치 스타일 */
#franchiseFaqList,
.faq-accordion-container,
.notice-board-container,
.qna-board-container {
    display: flex;
    flex-direction: column;
    min-height: 480px;
    justify-content: flex-start;
}

/* 페이지네이션 버튼 영역을 항상 맨 아래 바닥으로 밀어 고정 */
.faq-pagination-wrapper,
.notice-pagination-wrapper,
.qna-pagination-wrapper {
    margin-top: auto !important;
    padding-top: 20px;
}

/* 📌 공지사항 & Q&A 게시판 목록 5개 기준 최소 높이(285px) 및 순백색(#FFFFFF) 배경 지정으로 노란 배경 묻힘 해소 */
#communityNoticeList,
#communityQnaList {
    min-height: 285px !important;
    display: flex !important;
    flex-direction: column !important;
    background: #FFFFFF !important;
}

/* 📌 Q&A 게시판 스타일과 100% 동일한 고급 통일 페이지네이션 디자인 (< > 버튼 & 딥 브라운 활성 버튼) */
.notice-pagination-wrapper,
.faq-pagination-wrapper,
.qna-pagination-wrapper {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin-top: auto !important;
    padding-top: 24px !important;
}

.pg-btn {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 6px !important;
    border: 1px solid #CBD5E1 !important;
    background: #FFFFFF !important;
    color: #2D141E !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    font-family: inherit !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-sizing: border-box !important;
}

/* 활성화된 현재 페이지 숫자 버튼: Q&A 스타일 딥 브라운 배경 + 흰색 글자 */
.pg-btn.num-btn.active,
.pg-btn.active {
    background: #2D141E !important;
    color: #FFFFFF !important;
    border-color: #2D141E !important;
    font-weight: 700 !important;
}

.pg-btn.num-btn:hover:not(.active):not(:disabled) {
    background: #F8FAFC !important;
    border-color: #94A3B8 !important;
}

/* 이전/다음 좌우 < > 버튼 통일 규격 */
.pg-btn.prev-btn,
.pg-btn.next-btn {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    padding: 0 !important;
    font-weight: 700 !important;
    font-size: 1.05rem !important;
}

/* 비활성화(disabled) 회색 처리 */
.pg-btn:disabled,
.pg-btn[disabled] {
    background: #F8FAFC !important;
    color: #CBD5E1 !important;
    border-color: #E2E8F0 !important;
    opacity: 0.6 !important;
    cursor: not-allowed !important;
}

@media (max-width: 991px) {
    .faq-magazine-grid {
        grid-template-columns: 1fr;
    }
    .faq-magazine-card {
        width: 100%;
        height: 380px;
        min-height: 380px;
        max-height: 380px;
    }
    #franchiseFaqList,
    .faq-accordion-container,
    .notice-board-container,
    .qna-board-container {
        min-height: 400px;
    }
}



/* ========== 🍰 상품 상세 대형 모달 & 하단 썸네일 캐러셀 CSS ========== */
.product-detail-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.86);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    justify-content: center;
    align-items: center;
    padding: 24px;
    animation: pdmFadeIn 0.3s ease;
}
.product-detail-modal-overlay.active {
    display: flex;
}
@keyframes pdmFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.product-detail-modal-box {
    background: #FFFFFF;
    border-radius: 28px;
    max-width: 1200px;
    width: 95%;
    max-height: 94vh;
    overflow-y: auto;
    position: relative;
    padding: 32px 36px;
    box-shadow: 0 25px 60px -15px rgba(0, 0, 0, 0.45);
    animation: pdmSlideUp 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
@keyframes pdmSlideUp {
    from { opacity: 0; transform: translateY(30px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.pdm-close-btn {
    position: absolute;
    top: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #F1F5F9;
    border: none;
    font-size: 1.3rem;
    color: #64748B;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    z-index: 10;
}
.pdm-close-btn:hover {
    background: #FF4769;
    color: #FFFFFF;
    transform: rotate(90deg);
}

/* 메인 대형 뷰어 영역 (좌우버튼 + 뷰어) */
.pdm-main-container {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 28px;
}
.pdm-nav-btn {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: #F8FAFC;
    border: 1px solid #E2E8F0;
    color: #334155;
    font-size: 1.4rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}
.pdm-nav-btn:hover:not(:disabled) {
    background: #FF4769;
    border-color: #FF4769;
    color: #FFFFFF;
    transform: scale(1.12);
    box-shadow: 0 10px 20px rgba(255, 71, 105, 0.35);
}
.pdm-nav-btn:disabled {
    opacity: 0.25;
    cursor: not-allowed;
}

.pdm-main-content {
    flex: 1;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 36px;
    align-items: flex-start;
    background: #FAF7F2;
    padding: 32px;
    border-radius: 24px;
}
@media (max-width: 900px) {
    .pdm-main-content {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 20px;
    }
}

.pdm-main-img-wrap {
    width: 100%;
    height: 480px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    background: #FFFFFF;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}
@media (max-width: 900px) {
    .pdm-main-img-wrap {
        height: 360px;
    }
}
.pdm-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.pdm-info-wrap {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    padding-top: 10px;
    min-height: 440px;
}
.pdm-badge {
    display: inline-block;
    background: #FF8FA3;
    color: #FFFFFF;
    font-size: 0.88rem;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    align-self: flex-start;
}
.pdm-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2D141E;
    margin-bottom: 16px;
    line-height: 1.3;
}
.pdm-desc {
    font-size: 1.02rem;
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
    background: #FFFFFF;
    padding: 18px 22px;
    border-radius: 16px;
    border: 1px solid #E2E8F0;
    width: 100%;
    word-break: break-all !important;
    word-wrap: break-word !important;
    overflow-wrap: anywhere !important;
    max-height: 180px;
    overflow-y: auto;
}
.pdm-price {
    font-size: 1.8rem;
    font-weight: 800;
    color: #FF4769;
    margin-top: auto;
}

/* 하단 썸네일 캐러셀 영역 */
.pdm-thumbnail-section {
    border-top: 1px solid #E2E8F0;
    padding-top: 24px;
}
.pdm-thumbnail-header {
    font-size: 1rem;
    font-weight: 700;
    color: #475569;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.pdm-thumbnail-carousel-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.pdm-thumb-nav-btn {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #F1F5F9;
    border: 1px solid #CBD5E1;
    color: #475569;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s ease;
}
.pdm-thumb-nav-btn:hover {
    background: #FF4769;
    border-color: #FF4769;
    color: #FFFFFF;
}

.pdm-thumbnail-track {
    flex: 1;
    display: flex;
    gap: 14px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 8px 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}
.pdm-thumbnail-track::-webkit-scrollbar {
    display: none;
}

.pdm-thumb-item {
    width: 84px;
    height: 84px;
    border-radius: 14px;
    overflow: hidden;
    flex-shrink: 0;
    cursor: pointer;
    border: 3px solid transparent;
    transition: all 0.2s ease;
    position: relative;
    background: #F8FAFC;
}
.pdm-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.pdm-thumb-item:hover {
    transform: translateY(-3px);
    border-color: #FF8FA3;
}
.pdm-thumb-item.active {
    border-color: #FF4769;
    transform: scale(1.08);
    box-shadow: 0 6px 16px rgba(255, 71, 105, 0.45);
}

/* 📌 사용자 페이지 매장 선택 카드 시각적 하이라이트 UI (브랜드 핑크 테마 반영) */
.store-item-card {
    position: relative;
    border-left: 5px solid transparent !important;
    transition: all 0.25s ease-in-out !important;
}
.store-item-card:hover {
    background: #FFF8F9 !important;
}
.store-item-card.active {
    background: #FFF0F4 !important;
    border-left: 5px solid #FF4769 !important;
    box-shadow: inset 0 0 0 1px rgba(255, 71, 105, 0.2), 0 4px 12px rgba(255, 71, 105, 0.15) !important;
}
.store-item-card.active h4 {
    color: #D81B60 !important;
    font-weight: 800 !important;
}

.btn-copy-address:hover {
    background: #E2E8F0 !important;
    border-color: #94A3B8 !important;
    color: #1E293B !important;
}

/* ── [이달의 케이크] 세로 포스터(2:3) 자동 비율 맞춤 전용 스타일 ── */
.product-card.monthly-card {
    border: 2px solid #FF8FA3;
    box-shadow: 0 8px 25px rgba(255, 143, 163, 0.25);
}
.product-card.monthly-card .product-img-wrap {
    height: 380px !important;
    aspect-ratio: 2 / 3 !important;
}
.product-card.monthly-card .product-img-wrap img {
    height: 100% !important;
    object-fit: cover !important;
}

/* 모달 이달의 케이크 포스터 모드 지원 (잘림 방지 100% 원본 노출) */
.pdm-main-content.monthly-mode .pdm-main-img-wrap {
    aspect-ratio: 2 / 3 !important;
    height: 520px !important;
    background: #FFFDF8;
}
.pdm-main-content.monthly-mode .pdm-main-img {
    object-fit: contain !important;
}
@media (max-width: 900px) {
    .pdm-main-content.monthly-mode .pdm-main-img-wrap {
        height: 400px !important;
    }
}

/* ============================================================ */
/* [메뉴 페이지] 감성 더보기(Load More) 버튼 UI 디자인 */
/* ============================================================ */
.menu-load-more-wrap {
    text-align: center;
    margin-top: 50px;
    margin-bottom: 30px;
    width: 100%;
}
.btn-load-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: #FFFDF5;
    color: #4A2E2B;
    border: 2px solid #FFD1DC;
    padding: 16px 42px;
    border-radius: 40px;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 4px 18px rgba(255, 183, 197, 0.25);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    font-family: inherit;
    letter-spacing: -0.2px;
}
.btn-load-more:hover {
    background: linear-gradient(135deg, #FF758F, #FF4769);
    color: #FFFFFF;
    border-color: #FF4769;
    box-shadow: 0 8px 25px rgba(255, 71, 105, 0.4);
    transform: translateY(-2px);
}
.btn-load-more:active {
    transform: translateY(0);
}
.btn-load-more .load-more-icon {
    transition: transform 0.3s ease;
}
.btn-load-more:hover .load-more-icon {
    transform: translateY(3px);
}
@media (max-width: 768px) {
    .menu-load-more-wrap {
        margin-top: 36px;
    }
    .btn-load-more {
        width: 100%;
        max-width: 320px;
        padding: 14px 24px;
        font-size: 0.96rem;
    }
}



