:root {
    --primary-color: #333;
    --secondary-color: #666;
    --accent-color: #8b7355;
    --bg-color: #f9f9f9;
    --card-bg: #ffffff;
    --text-color: #1a1a1a;
    --border-color: #ddd;
    --font-main: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
}

.container {
    max-width: 500px;
    margin: 20px auto;
    background-color: white;
    min-height: 100vh;
    border: 2px solid #333;
    border-radius: 20px;
    overflow: hidden;
}

/* ========== 인트로 오버레이 ========== */
.intro-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: overlayFadeOut 0.4s ease-out 1.7s forwards;
}

.intro-overlay.hidden {
    display: none;
}

.intro-logo {
    width: 300px;
    height: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    will-change: transform, opacity;
    animation: logoShrinkMove 1.8s ease-in-out forwards;
}

@keyframes logoShrinkMove {
    0% {
        opacity: 0;
        transform: translate(-50%, -50%) scale(1.5);
    }
    20% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
    }
    45% {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1.5);
    }
    100% {
        opacity: 1;
        transform: translate(-50%, calc(-50vh + 55px)) scale(0.67);
    }
}

@keyframes overlayFadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
}

/* ========== 0. 로고 (작은 버전) ========== */
.logo-intro {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 40px 60px;
}

.logo-intro-img {
    max-width: 200px;
    height: auto;
}

/* ========== 1. 헤더 ========== */
.header {
    padding: 40px 30px;
    text-align: center;
}

.logo {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 3px;
    color: var(--primary-color);
}

/* ========== 2. 메인 일러스트 ========== */
.main-illust {
    display: flex;
    justify-content: center;
    padding: 20px 30px;
}

.illust-img {
    max-width: 250px;
    height: auto;
}

/* ========== 3. 네비게이션 영역 ========== */
.nav-section {
    padding: 30px 20px;
    text-align: center;
}

.customer-title {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.customer-name {
    font-weight: 600;
}

.nav-buttons {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 15px;
}

.nav-group {
    display: flex;
    gap: 15px;
}

.nav-divider {
    width: 1px;
    height: 70px;
    background-color: var(--border-color);
    margin: 0 15px;
}

.nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    cursor: pointer;
}

.nav-circle {
    width: 45px;
    height: 45px;
    border: 1px solid #ccc;
    border-radius: 50%;
    background: white;
    transition: all 0.3s;
}

.nav-item:hover .nav-circle {
    border-color: var(--accent-color);
    background: #fdf8f5;
}

.nav-label {
    font-size: 12px;
    color: var(--secondary-color);
}

/* ========== 4. 섹션 제목 영역 ========== */
.section-title-area {
    padding: 30px 20px 15px;
    text-align: center;
    border-top: 1px solid var(--border-color);
    margin-top: 20px;
}

.section-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.section-subtitle {
    font-size: 12px;
    color: #999;
}

/* ========== 5. 얼굴 사진 영역 ========== */
.face-photos {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 20px;
}

.face-photo {
    text-align: center;
}

.photo-placeholder {
    width: 120px;
    height: 150px;
    background: #f5f5f5;
    border: 1px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.photo-placeholder span {
    font-size: 11px;
    color: #999;
}

.photo-label {
    font-size: 13px;
    color: var(--secondary-color);
}

/* ========== 6. 컬러 진단 영역 ========== */
.color-diagnosis {
    padding: 20px;
}

.diagnosis-item {
    margin-bottom: 30px;
}

.diagnosis-title {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 2px;
}

.diagnosis-subtitle {
    text-align: center;
    font-size: 10px;
    color: #999;
    margin-bottom: 12px;
}

.color-chips {
    display: flex;
    justify-content: center;
    gap: 3px;
    margin-bottom: 8px;
}

.chip {
    width: 28px;
    height: 28px;
}

.scale-labels {
    display: flex;
    justify-content: space-between;
    max-width: 250px;
    margin: 0 auto 8px;
    font-size: 9px;
    color: #999;
}

.check-indicator {
    display: flex;
    justify-content: center;
    gap: 3px;
}

.indicator {
    width: 28px;
    height: 12px;
    background: #e0e0e0;
}

.indicator.active {
    background: #ffd700;
}

/* ========== 7. 분석 결과 영역 ========== */
.analysis-result {
    padding: 30px 20px;
    text-align: center;
}

.result-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.result-value {
    font-size: 36px;
    font-weight: 300;
    color: #8b6914;
    margin-bottom: 25px;
    letter-spacing: 8px;
    font-family: 'Noto Serif KR', Georgia, serif;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(139, 105, 20, 0.2);
}

.result-image {
    display: flex;
    justify-content: center;
}

.palette-img {
    max-width: 100%;
    height: auto;
}

/* ========== 애니메이션 효과 ========== */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-1 {
    transition-delay: 0.1s;
}

.delay-2 {
    transition-delay: 0.2s;
}

.delay-3 {
    transition-delay: 0.3s;
}

.delay-4 {
    transition-delay: 0.4s;
}

/* ========== 8, 9, 10. 제품추천 카드 슬라이더 ========== */
.product-recommend,
.lip-keyword,
.nail-color,
.hair-color,
.accessory-color,
.tone-color,
.color-example,
.shadow-blusher-keyword {
    padding: 25px 0 25px 20px;
}

/* ========== 8. 톤앤 컬러 ========== */
.tone-color-image {
    text-align: center;
    padding-right: 20px;
}

.tone-img {
    max-width: 100%;
    height: auto;
}

/* ========== 9. 베스트 & 워스트 컬러 ========== */
.best-worst-color {
    padding: 20px;
}

.color-section {
    margin-bottom: 25px;
    text-align: center;
}

.color-section-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2px;
}

.color-section-subtitle {
    font-size: 10px;
    color: #999;
    margin-bottom: 12px;
}

.color-palette-placeholder {
    width: 100%;
    height: 80px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.color-palette-placeholder span {
    font-size: 11px;
    color: #bbb;
}

/* ========== 10. 컨트라스트 배색 ========== */
.contrast-color {
    padding: 15px 20px 25px;
}

.contrast-description {
    font-size: 12px;
    color: var(--secondary-color);
    text-align: center;
    margin-bottom: 20px;
}

.contrast-images {
    display: flex;
    justify-content: space-between;
    gap: 10px;
}

.contrast-item {
    flex: 1;
    text-align: center;
}

.contrast-image-placeholder {
    width: 100%;
    height: 140px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.contrast-image-placeholder span {
    font-size: 10px;
    color: #bbb;
}

.contrast-label {
    font-size: 9px;
    color: var(--secondary-color);
    line-height: 1.4;
}

/* ========== 11. 베스트 배색 ========== */
.best-contrast {
    padding: 25px 20px;
}

.best-contrast-image {
    text-align: center;
}

.best-contrast-img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/* ========== 12. 컬러 배색예시 ========== */
.example-card {
    flex: 0 0 160px;
}

.example-image-placeholder {
    width: 100%;
    height: 180px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.example-image-placeholder span {
    font-size: 11px;
    color: #bbb;
}

/* ========== 13. Make up Muse ========== */
.makeup-muse {
    padding: 25px 20px;
    text-align: center;
}

.muse-image-placeholder {
    width: 100%;
    height: 250px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.muse-image-placeholder span {
    font-size: 11px;
    color: #bbb;
}

.muse-description {
    padding: 15px;
    background: #fafafa;
    border-radius: 8px;
}

.muse-text {
    font-size: 13px;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* ========== 14. 섀도우 블러셔 키워드 ========== */
.keyword-image-card {
    flex: 0 0 120px;
}

.keyword-img-placeholder {
    width: 100%;
    height: 120px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.keyword-img-placeholder span {
    font-size: 10px;
    color: #bbb;
}

.product-title {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2px;
    text-align: center;
    padding-right: 20px;
}

.product-subtitle {
    font-size: 10px;
    color: #999;
    margin-bottom: 15px;
    text-align: center;
    padding-right: 20px;
}

.card-slider {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.card-slider::-webkit-scrollbar {
    display: none;
}

.card-container {
    display: flex;
    gap: 12px;
    padding-right: 20px;
}

/* 제품 카드 (섀도우, 블러셔, 립 제품) */
.product-card {
    flex: 0 0 140px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.card-image-placeholder {
    width: 100%;
    height: 120px;
    background: #f8f8f8;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
}

.card-image-placeholder span {
    font-size: 11px;
    color: #bbb;
}

.card-brand {
    font-size: 10px;
    color: #999;
    margin-bottom: 2px;
}

.card-name {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
}

/* 립 컬러 키워드 카드 */
.keyword-card {
    flex: 0 0 100px;
    text-align: center;
}

.keyword-color {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 10px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.keyword-text {
    font-size: 12px;
    font-weight: 500;
    color: var(--primary-color);
}

/* 네일 카드 */
.nail-card {
    flex: 0 0 120px;
    text-align: center;
}

.nail-image-placeholder {
    width: 100px;
    height: 120px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.nail-image-placeholder span {
    font-size: 10px;
    color: #bbb;
}

.nail-color-chip {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 auto;
    border: 1px solid #eee;
}

/* 헤어 카드 */
.hair-card {
    flex: 0 0 120px;
    text-align: center;
}

.hair-image-placeholder {
    width: 100px;
    height: 120px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.hair-image-placeholder span {
    font-size: 10px;
    color: #bbb;
}

.hair-color-chip {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 auto;
    border: 1px solid #eee;
}

/* 액세서리 카드 */
.accessory-card {
    flex: 0 0 120px;
    text-align: center;
}

.accessory-image-placeholder {
    width: 100px;
    height: 120px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.accessory-image-placeholder span {
    font-size: 10px;
    color: #bbb;
}

.accessory-color-chip {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    margin: 0 auto;
    border: 1px solid #eee;
}

/* ================================================================ */
/* ==================== 얼굴형 분석 섹션 ========================== */
/* ================================================================ */

/* 얼굴형 2. 분석결과 */
.face-analysis-result {
    padding: 25px 20px;
    text-align: center;
}

.face-type-image {
    margin-bottom: 15px;
}

.face-type-placeholder {
    width: 200px;
    height: 220px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.face-type-placeholder span {
    font-size: 11px;
    color: #bbb;
    text-align: center;
    line-height: 1.5;
}

.face-type-name {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color);
    margin-top: 10px;
}

/* 얼굴형 3. 추천 눈썹 모양 */
.recommended-eyebrow {
    padding: 25px 20px;
    text-align: center;
}

.eyebrow-image {
    display: flex;
    justify-content: center;
}

.eyebrow-placeholder {
    width: 100%;
    max-width: 350px;
    height: 150px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.eyebrow-placeholder span {
    font-size: 11px;
    color: #bbb;
    text-align: center;
    line-height: 1.5;
}

/* 얼굴형 4. 추천 메이크업 */
.recommended-makeup {
    padding: 25px 20px;
    text-align: center;
}

.makeup-image {
    display: flex;
    justify-content: center;
}

.makeup-placeholder {
    width: 100%;
    max-width: 350px;
    height: 200px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.makeup-placeholder span {
    font-size: 11px;
    color: #bbb;
    text-align: center;
    line-height: 1.5;
}

/* 얼굴형 5. 추천 안경 */
.recommended-glasses {
    padding: 25px 0 25px 20px;
}

.glasses-card {
    flex: 0 0 140px;
}

.glasses-placeholder {
    width: 100%;
    height: 100px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.glasses-placeholder span {
    font-size: 10px;
    color: #bbb;
}

/* 얼굴형 6. 추천 액세서리 */
.recommended-acc {
    padding: 25px 0 25px 20px;
}

.rec-acc-card {
    flex: 0 0 120px;
}

.rec-acc-placeholder {
    width: 100%;
    height: 120px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.rec-acc-placeholder span {
    font-size: 10px;
    color: #bbb;
}

/* 얼굴형 7. 추천 앞머리 */
.recommended-front-hair {
    padding: 25px 20px;
    text-align: center;
}

.front-hair-image {
    display: flex;
    justify-content: center;
}

.front-hair-placeholder {
    width: 100%;
    max-width: 350px;
    height: 180px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.front-hair-placeholder span {
    font-size: 11px;
    color: #bbb;
    text-align: center;
    line-height: 1.5;
}

/* 얼굴형 8. 추천 뒷머리 */
.recommended-back-hair {
    padding: 25px 20px;
    text-align: center;
}

.back-hair-image {
    display: flex;
    justify-content: center;
}

.back-hair-placeholder {
    width: 100%;
    max-width: 350px;
    height: 180px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.back-hair-placeholder span {
    font-size: 11px;
    color: #bbb;
    text-align: center;
    line-height: 1.5;
}

/* 얼굴형 9. 추천 헤어스타일 */
.recommended-hairstyle {
    padding: 25px 0 25px 20px;
}

.hairstyle-card {
    flex: 0 0 140px;
}

.hairstyle-placeholder {
    width: 100%;
    height: 160px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hairstyle-placeholder span {
    font-size: 10px;
    color: #bbb;
}

/* ================================================================ */
/* ==================== 체형 분석 섹션 ============================ */
/* ================================================================ */

/* 체형 2. 분석결과 + 전신이미지 + 설명 */
.body-analysis-result {
    padding: 25px 20px;
    text-align: center;
}

.body-result-title {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.body-type-value {
    font-size: 24px;
    font-weight: 600;
    color: var(--accent-color);
}

.body-photos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
}

.body-photo {
    text-align: center;
}

.body-photo-placeholder {
    width: 140px;
    height: 200px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
}

.body-photo-placeholder span {
    font-size: 11px;
    color: #bbb;
}

.body-photo-label {
    font-size: 12px;
    color: var(--secondary-color);
}

.body-description {
    padding: 15px;
    background: #fafafa;
    border-radius: 8px;
    margin-top: 15px;
}

.body-desc-text {
    font-size: 13px;
    color: var(--secondary-color);
    line-height: 1.7;
    text-align: left;
}

/* 베스트/워스트 세트 스타일 */
.style-set {
    padding: 20px;
    margin-bottom: 10px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    margin: 15px 20px;
}

.set-item {
    padding: 15px 0;
}

.set-item:first-child {
    padding-top: 0;
}

.set-item + .set-item {
    border-top: 1px dashed #e0e0e0;
    margin-top: 10px;
}

.set-title {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2px;
    text-align: center;
}

.best-icon,
.worst-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    margin-right: 6px;
    vertical-align: middle;
    position: relative;
    top: -1px;
}

.best-icon {
    background: linear-gradient(135deg, #4CAF50 0%, #8BC34A 100%);
    box-shadow: 0 2px 4px rgba(76, 175, 80, 0.3);
}

.best-icon::after {
    content: "✓";
    color: white;
    font-size: 11px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.worst-icon {
    background: linear-gradient(135deg, #e57373 0%, #ef5350 100%);
    box-shadow: 0 2px 4px rgba(239, 83, 80, 0.3);
}

.worst-icon::after {
    content: "✕";
    color: white;
    font-size: 10px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.recommend-icon {
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 6px;
    vertical-align: middle;
    position: relative;
    top: -2px;
}

.recommend-icon::after {
    content: "👍";
    font-size: 16px;
    filter: hue-rotate(180deg) saturate(1.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.set-subtitle {
    font-size: 10px;
    color: #999;
    margin-bottom: 12px;
    text-align: center;
}

/* 체형 3. 넥라인 */
.best-neckline,
.worst-neckline {
    padding: 25px 0 25px 20px;
}

.neckline-card {
    flex: 0 0 90px;
    text-align: center;
}

.neckline-placeholder {
    width: 80px;
    height: 100px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.neckline-placeholder span {
    font-size: 9px;
    color: #bbb;
}

.neckline-label {
    font-size: 10px;
    color: var(--secondary-color);
}

/* 설명 영역 */
.style-reason {
    padding: 15px;
    background: #fafafa;
    border-radius: 8px;
    margin: 15px 20px 0 0;
}

.reason-text {
    font-size: 12px;
    color: var(--secondary-color);
    line-height: 1.6;
}

/* 체형 4. 카라 디자인 */
.best-collar,
.worst-collar {
    padding: 25px 0 25px 20px;
}

.collar-card {
    flex: 0 0 100px;
    text-align: center;
}

.collar-placeholder {
    width: 90px;
    height: 100px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.collar-placeholder span {
    font-size: 9px;
    color: #bbb;
}

.collar-label {
    font-size: 10px;
    color: var(--secondary-color);
}

/* 체형 5. 상의 디자인 */
.best-top,
.worst-top {
    padding: 25px 0 25px 20px;
}

.top-card {
    flex: 0 0 110px;
    text-align: center;
}

.top-placeholder {
    width: 100px;
    height: 130px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.top-placeholder span {
    font-size: 9px;
    color: #bbb;
}

.top-label {
    font-size: 10px;
    color: var(--secondary-color);
}

/* 체형 6. 베스트 스커트 길이 */
.best-skirt-length {
    padding: 25px 20px;
    text-align: center;
}

.skirt-length-image {
    display: flex;
    justify-content: center;
    margin-bottom: 15px;
}

.skirt-length-placeholder {
    width: 100%;
    max-width: 350px;
    height: 200px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.skirt-length-placeholder span {
    font-size: 11px;
    color: #bbb;
    text-align: center;
    line-height: 1.5;
}

/* 체형 7. 스커트 라인 */
.best-skirt-line,
.worst-skirt-line {
    padding: 25px 0 25px 20px;
}

.skirt-card {
    flex: 0 0 100px;
    text-align: center;
}

.skirt-placeholder {
    width: 90px;
    height: 120px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.skirt-placeholder span {
    font-size: 9px;
    color: #bbb;
}

.skirt-label {
    font-size: 10px;
    color: var(--secondary-color);
}

/* 체형 8. 바지 라인 */
.best-pants,
.worst-pants {
    padding: 25px 0 25px 20px;
}

.pants-card {
    flex: 0 0 100px;
    text-align: center;
}

.pants-placeholder {
    width: 90px;
    height: 130px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.pants-placeholder span {
    font-size: 9px;
    color: #bbb;
}

.pants-label {
    font-size: 10px;
    color: var(--secondary-color);
}

/* ================================================================ */
/* ==================== 스타일링 섹션 ============================== */
/* ================================================================ */

/* 스타일링 2. 이미지 키워드 */
.image-keyword {
    padding: 30px 20px;
    text-align: center;
}

.keyword-intro {
    font-size: 14px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.keyword-value {
    font-size: 32px;
    font-weight: 600;
    color: var(--accent-color);
    margin-bottom: 10px;
    font-family: 'Noto Serif KR', Georgia, serif;
    letter-spacing: 4px;
}

.keyword-outro {
    font-size: 14px;
    color: var(--secondary-color);
}

/* 스타일링 아이템 (아우터, 상의, 원피스 등) */
.styling-item {
    padding: 25px 0 25px 20px;
}

.fashion-card {
    flex: 0 0 140px;
}

.fashion-placeholder {
    width: 100%;
    height: 180px;
    background: #f8f8f8;
    border: 1px dashed #ddd;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.fashion-placeholder span {
    font-size: 11px;
    color: #bbb;
}

/* ========== 플로팅 네비게이션 ========== */
.floating-nav {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.floating-nav.visible {
    opacity: 1;
    visibility: visible;
}

/* 메뉴 토글 버튼 */
.floating-toggle-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, background 0.3s;
}

.floating-toggle-btn:hover {
    transform: scale(1.1);
    background: #6b5a45;
}

.toggle-icon {
    transition: transform 0.3s;
}

.floating-nav.menu-open .toggle-icon {
    transform: rotate(90deg);
}

/* 메뉴 리스트 */
.floating-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s;
}

.floating-nav.menu-open .floating-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.floating-menu-btn {
    padding: 10px 18px;
    border-radius: 25px;
    background: var(--accent-color);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 500;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s;
    white-space: nowrap;
}

.floating-menu-btn:hover {
    transform: scale(1.05);
    background: #6b5a45;
}

.floating-menu-btn span {
    display: block;
    line-height: 1;
}
