/* 기본 스타일 초기화 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Pretendard Variable", Pretendard, -apple-system, BlinkMacSystemFont, system-ui, Roboto, "Helvetica Neue", "Segoe UI", "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
    background: linear-gradient(135deg, #ffffff 0%,#fdfdfd 100%);
    min-height: 100vh;
}

html {
    overflow-x: hidden;
}

/* PC 전용 전체 배경 비디오 */
.pc-bg-video {
    display: none;
}

.pc-bg-video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pc-bg-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
}

/* 모바일 중심 컨테이너 래퍼 */
.page-wrapper {
    max-width: 480px;
    margin: 0 auto;
    background: #fff;
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* 네비게이션 스타일 */
.navbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 480px;
    background: transparent;
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo {
    position: relative;
    height: 50px;
    display: flex;
    align-items: center;
}

.nav-logo a {
    position: relative;
    height: 100%;
    display: block;
}

.nav-logo img {
    height: 50px;
    width: auto;
    transition: opacity 0.3s ease;
    position: absolute;
    left: 0;
    top: 0;
}

.logo-white {
    opacity: 1;
}

.logo-black {
    opacity: 0;
}

.navbar.scrolled .logo-white {
    opacity: 0;
}

.navbar.scrolled .logo-black {
    opacity: 1;
}

/* 햄버거 메뉴 */
.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    background: none;
    border: none;
    padding: 0.5rem;
    z-index: 1002;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.navbar.scrolled .hamburger span {
    background: #333;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* 토글 메뉴 (오른쪽에서 나타남) */
.pc-toggle-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1001;
    padding-top: 100px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
    pointer-events: none;
    display: block;
    overflow-y: auto;
    overflow-x: hidden;
}

.pc-toggle-menu.active {
    right: 0;
    pointer-events: auto;
}

.pc-toggle-menu.active .nav-link {
    pointer-events: auto !important;
    cursor: pointer;
}

.nav-menu-content {
    display: flex;
    flex-direction: column;
    padding: 2rem;
    gap: 0.5rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    transition: all 0.3s ease;
    display: block;
    pointer-events: auto !important;
    cursor: pointer;
}

.nav-link:hover {
    background: #f5f5f5;
    color: #000;
}


.nav-cta {
    background: rgba(255, 255, 255, 0.9);
    color: #666 !important;
    margin-top: 1rem;
    text-align: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.nav-cta:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
    border-color: rgba(0, 0, 0, 0.2);
}

/* 네비게이션 구분선 */
.nav-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0.8rem 1.5rem;
}

/* 상품 링크 스타일 */
.nav-link-product {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-product-thumb {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #f8f8f8;
    flex-shrink: 0;
}

.nav-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 히어로 섹션 */
.hero {
    height: 70vh;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 1;
}

.hero-slide-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-bottom-right-radius: 80px;
    overflow: hidden;
}

/* 각 슬라이드별 배경 이미지 */
.hero-slide:nth-child(1) .hero-background {
    background-image: url('../images/hero1.png');
}

.hero-slide:nth-child(2) .hero-background {
    background-image: url('../images/hero2.png');
}

.hero-slide:nth-child(3) .hero-background {
    background-image: url('../images/hero3.png');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    border-bottom-right-radius: 80px;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    padding: 2rem;
    padding-bottom: 3rem;
}

.hero-slide .hero-content {
    position: relative;
    z-index: 2;
}

.hero-text-overlay {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.2rem;
    width: 100%;
}

.hero-main-title {
    font-size: 1.8rem;
    color: #fff;
    font-weight: 700;
    margin: 0;
    letter-spacing: -0.5px;
    line-height: 1.5;
}

.hero-subtitle-line {
    font-size: 1.1rem;
    color: #fff;
    font-weight: 500;
    margin: 0;
}

.hero-desc-line {
    font-size: 0.95rem;
    color: #fff;
    font-weight: 400;
    margin: 0;
}

.hero-actions {
    display: flex;
    align-items: flex-start;
    width: 100%;
}

.hero-cta-btn {
    background: #f5f1e8;
    color: #333;
    padding: 1rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.hero-cta-btn:hover {
    opacity: 0.9;
}

/* 두 번째 슬라이드 텍스트 애니메이션 제거 */
.hero-slide:nth-child(2) .hero-main-title,
.hero-slide:nth-child(2) .hero-subtitle-line,
.hero-slide:nth-child(2) .hero-desc-line {
    opacity: 1;
    transform: translateY(0);
    animation: none;
}

.hero-slider-indicator {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    backdrop-filter: blur(10px);
    z-index: 10;
}

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

/* 제품 섹션 */
.products-section {
    background: #ffffff;
    padding: 3rem 0;
}

.container {
    width: 100%;
    padding: 0 1.5rem;
}

.section-header {
    text-align: left;
    margin-bottom: 2rem;
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
}

.section-subtitle {
    font-size: 0.9rem;
    color: #666;
    font-weight: 400;
    margin: 0;
}

/* 제품 그리드 */
.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

/* 제품 카드 */
.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
    display: block;
}

.product-card:hover {
    opacity: 0.9;
}

.product-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f8f8;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #999;
}

.product-placeholder i {
    font-size: 2.5rem;
    opacity: 0.4;
}

.product-details {
    padding: 1rem;
}

.product-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.4rem;
    line-height: 1.3;
}

.product-desc {
    font-size: 0.8rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

/* 프로모션 섹션 */
.promotion-section {
    background: #ffffff;
    padding: 3rem 0;
}

.promotion-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.promotion-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.promotion-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d4a574 0%, #e8c9a1 100%);
    border-radius: 2px;
}

.promotion-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    margin-top: 1rem;
    letter-spacing: 0.3px;
}

.promotion-slider {
    position: relative;
    width: 100%;
}

.promotion-slider-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 20px;
}

.promotion-slide {
    display: none;
    width: 100%;
    text-decoration: none;
    transition: opacity 0.5s ease-in-out;
}

.promotion-slide.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.promotion-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 20px;
    overflow: hidden;
    background: #f5f5f5;
}

.promotion-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.promotion-slide:hover .promotion-image {
    transform: scale(1.05);
}

.promotion-placeholder {
    display: none;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
    color: #999;
    gap: 0.5rem;
}

.promotion-placeholder i {
    font-size: 3rem;
    opacity: 0.5;
}

.promotion-placeholder span {
    font-size: 1rem;
    font-weight: 500;
}

.promotion-slider-indicators {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.promotion-indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(212, 165, 116, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.promotion-indicator.active {
    background: #d4a574;
    width: 24px;
    border-radius: 5px;
}

.promotion-indicator:hover {
    background: rgba(212, 165, 116, 0.6);
}

.promotion-info {
    margin-top: 2rem;
    text-align: center;
    position: relative;
    min-height: 120px;
}

.promotion-info-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.promotion-info-item.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.promotion-info-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 0.8rem;
    letter-spacing: -0.3px;
}

.promotion-info-desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.promotion-info-period {
    font-size: 0.95rem;
    color: #D4A574;
    font-weight: 600;
    margin-top: 0.5rem;
}

/* 캘린더 섹션 */
.calendar-section {
    background: #ffffff;
    padding: 3rem 0;
}

.calendar-wrapper {
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.calendar-input {
    width: 100%;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    background: #fff;
    color: #333;
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-input:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

/* Flatpickr 커스텀 스타일 */
/* 1. 래퍼(부모) 설정: 내용을 중앙으로 모음 */
.flatpickr-wrapper {
    width: 100% !important;
    max-width: 500px;
    margin: 0 auto;
    display: flex !important;       /* 추가: Flexbox 사용 */
    justify-content: center !important; /* 추가: 가로 중앙 정렬 */
    position: relative;
}

/* 2. 달력 본체 설정: 강제 중앙 정렬 */
.flatpickr-calendar {
    font-family: "Pretendard Variable", Pretendard, sans-serif;
    border-radius: 16px;
    box-shadow: none !important;
    
    /* 위치 및 정렬 핵심 코드 */
    position: relative !important;
    margin: 0 auto !important;      /* 상하 0, 좌우 자동 */
    left: 0 !important;             /* JS가 계산한 left 값 초기화 */
    right: 0 !important;            /* 좌우 0으로 잡고 margin auto가 먹히도록 설정 */
    top: auto !important;           /* 필요 시 top 값도 초기화 */
    
    width: 100% !important;
    max-width: 500px;
    padding: 1.5rem 1rem;
    background: #fff;
    
    /* 애니메이션 제거 (위치 튀는 현상 방지) */
    transform: none !important; 
}

.flatpickr-calendar.animate.open {
    animation: none !important;
}

/* 1. 내부 컨테이너들을 강제로 100%로 늘리기 */
.flatpickr-innerContainer,
.flatpickr-rContainer,
.flatpickr-days {
    width: 100% !important;
    max-width: none !important;
}

.dayContainer {
    width: 100% !important;
    max-width: none !important;
    display: flex !important;
    flex-wrap: wrap !important;
}

/* 2. 개별 날짜 칸(day) 너비 조정 */
.flatpickr-day {
    font-size: 1.1rem !important;
    height: 50px !important;
    line-height: 1 !important;
    border-radius: 8px;
    margin: 0 !important;
    transition: all 0.2s ease;
    position: relative;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding-top: 8px;
    padding-bottom: 12px;
    /* 기존 39px 등의 고정 폭을 해제하고 */
    max-width: initial !important; 
    /* 1주일은 7일이니까 100% 나누기 7 = 약 14.28% */
    width: 14.28% !important;
    box-sizing: border-box !important;
}

.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange,
.flatpickr-day.selected.inRange,
.flatpickr-day.startRange.inRange,
.flatpickr-day.endRange.inRange,
.flatpickr-day.selected:focus,
.flatpickr-day.startRange:focus,
.flatpickr-day.endRange:focus,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange:hover,
.flatpickr-day.endRange:hover {
    background: #d4a574 !important;
    border-color: #d4a574 !important;
    color: #fff !important;
    font-weight: 600;
    border-radius: 12px !important;
}

.flatpickr-day:hover {
    background: rgba(212, 165, 116, 0.15) !important;
    border-color: rgba(212, 165, 116, 0.3) !important;
}

.flatpickr-day.today {
    border: 2px solid #d4a574 !important;
    color: #d4a574 !important;
    font-weight: 500;
    background: transparent !important;
    border-radius: 12px !important;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.flatpickr-day.today.selected {
    background: transparent !important;
    color: #d4a574 !important;
    border: 2px solid #d4a574 !important;
    border-radius: 12px !important;
    font-weight: 500;
    width: 50px !important;
    height: 50px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.flatpickr-months {
    margin-bottom: 1rem;
}

.flatpickr-month {
    font-size: 1.3rem !important;
    font-weight: 700;
    color: #333 !important;
    fill: #333 !important;
    height: 50px !important;
    line-height: 50px !important;
}

.flatpickr-prev-month,
.flatpickr-next-month {
    height: 50px !important;
    width: 50px !important;
    padding: 0 !important;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.flatpickr-prev-month:hover,
.flatpickr-next-month:hover {
    background: rgba(212, 165, 116, 0.1) !important;
}

.flatpickr-prev-month svg,
.flatpickr-next-month svg {
    width: 20px !important;
    height: 20px !important;
    fill: #333 !important;
}

.flatpickr-weekdays {
    background: transparent;
    margin-bottom: 0.5rem;
}

.flatpickr-weekday {
    color: #666 !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
    height: 40px !important;
    line-height: 40px !important;
    text-transform: none;
}

.flatpickr-days {
    padding: 0.5rem 0;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    color: #ccc !important;
    opacity: 0.4;
}

/* 라이브 방송 날짜 표시 */
.flatpickr-day.has-live {
    position: relative;
}

.flatpickr-day.has-live .live-time-badge {
    display: none;
}

.flatpickr-day.has-live::after {
    content: "LIVE";
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    background: #E54B4B;
    color: #FFFFFF;
    font-size: 8px;
    font-weight: bold;
    border-radius: 4px;
    padding: 2px 4px;
    z-index: 1;
    white-space: nowrap;
    line-height: 1;
}

.flatpickr-day.has-live.selected .live-time-badge {
    color: rgba(255, 255, 255, 0.8);
}

/* 라이브 일정 리스트 */
.live-schedule-list {
    margin-top: 1.5rem;
    padding: 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.live-schedule-items {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.live-schedule-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: 0.9rem;
    color: #666;
    padding: 0.4rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.live-schedule-item:last-child {
    border-bottom: none;
}

.live-schedule-info {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    flex: 0 1 auto;
}

.live-date {
    font-weight: 600;
    color: #333;
    min-width: 50px;
}

.live-time-small {
    color: #666;
}

.live-link-btn {
    background: #FF6B6B;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 12px;
    display: inline-block;
}

/* 라이브 방송 정보 */
.live-info {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #fff5e8 0%, #ffe8d1 100%);
    border-radius: 12px;
    border: 2px solid #d4a574;
    text-align: center;
}

.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #d4a574;
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.8rem;
}

.live-badge i {
    font-size: 0.9rem;
}

.live-time {
    color: #333;
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* 브랜드 섹션 */
.brand-section {
    background: #ffffff;
    padding: 0;
}

/* 브랜드 인트로 띠 */
.brand-intro-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1.5rem;
    background: #ffffff;
    width: 100%;
}

.brand-intro-line {
    flex: 1;
    height: 1px;
    background: #e0e0e0;
    max-width: 200px;
}

.brand-intro-content {
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.brand-intro-logo {
    height: 40px;
    width: auto;
    opacity: 0.8;
}

.brand-section .container {
    padding-top: 2rem;
    padding-bottom: 3rem;
}

.brand-content {
    background: transparent;
    padding: 0;
}

/* 벤토 그리드: 이미지 영역 (모바일도 2열 유지) */
.brand-bento-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    grid-auto-rows: minmax(145px, auto);
    gap: 0.75rem;
    width: 100%;
    margin-bottom: 3rem;
}

.brand-main-image {
    position: relative;
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    grid-row: 1 / 3;
}

.brand-video-player {
    width: 100%;
    height: 100%;
    min-height: 300px;
    object-fit: cover;
    display: block;
}

.brand-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    z-index: 1;
}

.brand-overlay-text {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    z-index: 2;
    color: #fff;
}

.brand-since {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    margin: 0 0 0.5rem 0;
    opacity: 0.9;
}

.brand-overlay-title {
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.4;
    margin: 0;
}

.brand-side-images {
    display: contents;
}

.brand-image-card {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
}

.brand-side-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.brand-placeholder {
    width: 100%;
    height: 100%;
    min-height: 145px;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ddd;
    font-size: 2rem;
}

/* 특장점: 가로 3단 그리드 (모바일: 1단) - 미니멀 타이포그래피 */
.brand-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    width: 100%;
}

.brand-feature-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.brand-feature-number {
    font-size: 1.5rem;
    font-weight: 600;
    color: #D4A574;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
    display: inline-block;
    position: relative;
    padding-bottom: 0.3rem;
}

.brand-feature-number::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: #e0e0e0;
}

.brand-feature-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 0.6rem 0;
    line-height: 1.3;
}

.brand-feature-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

.brand-ending {
    text-align: center;
    margin-top: 4rem;
    padding-top: 3rem;
    position: relative;
}

.brand-ending::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 2px;
    background: linear-gradient(90deg, #d4a574 0%, #e8c9a1 100%);
    border-radius: 1px;
}

.brand-ending-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    line-height: 1.8;
    margin: 0.5rem 0;
    letter-spacing: -0.3px;
}

/* 고객센터 섹션 */
.estimator-section {
    background: linear-gradient(135deg, #fff8f0 0%, #f5ede0 100%);
    padding: 4rem 0;
    border-top-left-radius: 80px;
}

.estimator-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.estimator-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 0.5rem;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
}

.estimator-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #d4a574 0%, #e8c9a1 100%);
    border-radius: 2px;
}

.estimator-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    margin-top: 1rem;
    letter-spacing: 0.3px;
}

.estimator-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.estimator-icon-wrapper {
    margin: 1rem 0;
}

.estimator-icon {
    font-size: 4rem;
    color: #D4A574;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.estimator-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #D4A574;
    color: #ffffff;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 0.5rem;
}

.estimator-button:hover {
    background: #c89b6a;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 165, 116, 0.3);
}

.contact-section {
    background: #f8f8f8;
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 3rem 2rem 2rem;
    background: #ffffff;
    border-radius: 16px;
    text-decoration: none;
}

.contact-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

.contact-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.contact-icon-wrapper i {
    font-size: 3rem;
    color: #ddd;
}

.contact-button {
    display: inline-block;
    padding: 0.8rem 2.5rem;
    background: #D4A574;
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* 푸터 */
.footer {
    background: #666;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-section p {
    color: #e0e0e0;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.footer-contact,
.footer-info {
    font-size: 0.9rem;
    line-height: 1.8;
    margin-top: 1rem;
}

.footer-contact strong,
.footer-info strong {
    color: #ffffff;
    font-weight: 600;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #e0e0e0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 1rem;
    text-align: center;
}

.footer-bottom p {
    color: #e0e0e0;
    margin: 0;
}

/* 플로팅 버튼 */
.floating-buttons {
    position: fixed;
    right: 50%;
    transform: translateX(calc(240px - 1rem));
    bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    z-index: 999;
}

.floating-btn {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.7rem 0.9rem;
    border-radius: 25px;
    color: #666;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    white-space: nowrap;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.floating-btn i {
    font-size: 1.1rem;
}

.floating-btn span {
    font-size: 0.7rem;
    font-weight: 400;
}

.floating-btn:hover {
    opacity: 0.9;
}

/* 스크롤 설정 */
html {
    scroll-behavior: smooth;
}

/* PC 전용 사이드바 */
.pc-sidebar {
    display: none;
}

.pc-sidebar-left {
    position: fixed;
    left: 2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    max-width: none;
    z-index: 100;
}

.pc-sidebar-content {
    background: transparent;
    border-radius: 24px;
    padding: 2.5rem 2rem;
    box-shadow: none;
    border: none;
}

.pc-sidebar-section {
    margin-bottom: 2.2rem;
}

.pc-sidebar-section:last-child {
    margin-bottom: 0;
}

.pc-sidebar-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2c2c2c;
    margin-bottom: 1.2rem;
    text-align: left;
    letter-spacing: -0.3px;
    position: relative;
    padding-bottom: 0.7rem;
}

.pc-sidebar-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, #d4a574 0%, #e8c9a1 100%);
    border-radius: 2px;
}

/* 프로모션 카드 */
.pc-promotion-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.pc-promotion-card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(212, 165, 116, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    min-height: 180px;
}

.pc-promotion-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4a574 0%, #e8c9a1 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pc-promotion-card:hover {
    transform: translateY(-2px);
    border-color: #d4a574;
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.2);
    background: rgba(255, 255, 255, 1);
}

.pc-promotion-card:hover::before {
    opacity: 1;
}

.pc-promotion-card i {
    font-size: 2.5rem;
    color: #d4a574;
    margin-bottom: 0.6rem;
}

.pc-promotion-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
}

.pc-promotion-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.3;
}

.pc-promotion-desc {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
}

/* 슬로건 섹션 */
.pc-slogan-section {
    margin-bottom: 2.5rem;
    padding: 2rem 0 2.5rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    /* text-align: center; */
    position: relative;
}

.pc-slogan-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 24px;
    background: rgba(0, 0, 0, 0.15);
}

.pc-slogan-text {
    font-family: Pretendard Variable;
    font-size: 1rem;
    color: #191919;
    line-height: 1.6;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.2px;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFadeIn 0.8s ease-out 0s forwards;
}

.pc-slogan-english {
    font-family: Pretendard Variable;
    font-size: 3rem;
    color: #191919;
    line-height: 1.4;
    margin: 0 0 0.75rem 0;
    letter-spacing: 0.5px;
    font-weight: 800;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFadeIn 0.8s ease-out 0.2s forwards;
}

.pc-slogan-desc {
    font-family: Pretendard Variable;
    font-size: 1rem;
    color: #191919;
    line-height: 1.8;
    margin: 0;
    letter-spacing: 0.2px;
    font-weight: 400;
    opacity: 0;
    transform: translateY(20px);
    animation: slideUpFadeIn 0.8s ease-out 0.4s forwards;
}

.pc-cta-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    background: linear-gradient(135deg, #d4a574 0%, #c89b6a 100%);
    color: #fff;
    padding: 1.2rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 6px 20px rgba(212, 165, 116, 0.25);
    position: relative;
    overflow: hidden;
}

.pc-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.pc-cta-button:hover::before {
    left: 100%;
}

.pc-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 165, 116, 0.35);
}

.pc-cta-button i {
    font-size: 1.1rem;
}

/* 브랜드 비디오 */
.pc-brand-video-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    position: relative;
}

.pc-brand-video {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16 / 9;
}

/* 고객센터 버튼 */
.pc-contact-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.9rem;
}

.pc-contact-button {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(212, 165, 116, 0.2);
    border-radius: 14px;
    padding: 1.2rem;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    min-height: 100px;
}

.pc-contact-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #d4a574 0%, #e8c9a1 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.pc-contact-button:hover {
    transform: translateY(-2px);
    border-color: #d4a574;
    box-shadow: 0 8px 24px rgba(212, 165, 116, 0.2);
    background: rgba(255, 255, 255, 1);
}

.pc-contact-button:hover::before {
    opacity: 1;
}

.pc-contact-button i {
    font-size: 1.6rem;
    color: #d4a574;
}

.pc-contact-button-text {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    width: 100%;
}

.pc-contact-button-text strong {
    font-size: 0.9rem;
    font-weight: 700;
    color: #2c2c2c;
    line-height: 1.3;
}

.pc-contact-button-text span {
    font-size: 0.75rem;
    color: #666;
    font-weight: 400;
    line-height: 1.4;
}

/* PC 화면 (481px 이상) */
@media (min-width: 481px) {
    .page-wrapper {
        max-width: 600px;
    }

    .navbar {
        max-width: 600px;
    }

    /* 토글 메뉴 표시 */
    .pc-toggle-menu {
        display: block;
    }

    /* PC에서는 플로팅 버튼 숨김 (사이드바에 기능이 있음) */
    .floating-buttons {
        display: none;
    }

    /* 브랜드 인트로 - 태블릿 */
    .brand-intro-line {
        max-width: 300px;
    }

    .brand-intro-logo {
        height: 45px;
    }

    /* 벤토 그리드 - 태블릿: 간격과 높이만 조정 */
    .brand-bento-grid {
        gap: 1rem;
    }

    .brand-video-player {
        min-height: 420px;
    }

    .brand-placeholder {
        height: 205px;
    }

    .brand-image-card {
        border-radius: 20px;
    }

    /* 고객센터 - 태블릿 */
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .brand-main-image {
        border-radius: 20px;
    }

    /* 특장점 - 태블릿: 세로 나열, 폰트 크기 조정 */
    .brand-feature-number {
        font-size: 1.6rem;
    }

    .brand-feature-title {
        font-size: 1.4rem;
    }

    .brand-feature-desc {
        font-size: 1rem;
    }

}

/* 큰 화면 (1200px 이상)에서만 사이드바 표시 */
@media (min-width: 1200px) {
    /* PC 전체 배경 비디오 노출 */
    .pc-bg-video {
        display: block;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: -1;
        overflow: hidden;
    }

    /* 페이지를 중앙에서 오른쪽으로 15% 지점에 배치 */
    .page-wrapper {
        margin-left: calc(50% + 15% - 300px);
        margin-right: auto;
        max-width: 600px;
    }

    .navbar {
        left: calc(50% + 15%);
        transform: translateX(-50%);
        max-width: 600px;
    }

    /* PC 사이드바 표시 - 왼쪽 공간에 배치 */
    .pc-sidebar {
        display: block;
    }

    .pc-sidebar-left {
        left: 12%;
        max-width: none;
        width: 480px;
    }

    /* PC 토글 메뉴 위치 조정 - 메인 영역의 오른쪽에서 더 멀리 떨어진 위치 */
    .pc-toggle-menu {
        right: calc(35% - 600px);
    }
    
    .pc-toggle-menu.active {
        right: calc(35% - 600px);
    }

    /* PC에서는 플로팅 버튼 숨김 (사이드바에 기능이 있음) */
    .floating-buttons {
        display: none;
    }

    /* 브랜드 인트로 - PC */
    .brand-intro-banner {
        padding: 4rem 1.5rem;
    }

    .brand-intro-line {
        max-width: 400px;
    }

    .brand-intro-logo {
        height: 50px;
    }

    /* 벤토 그리드 - PC: 좌우 비율 조정 */
    .brand-bento-grid {
        grid-template-columns: 1.3fr 1fr;
        gap: 1.5rem;
    }

    .brand-video-player {
        min-height: 500px;
    }

    .brand-placeholder {
        height: 242px;
    }

    .brand-overlay-title {
        font-size: 1.5rem;
    }

    /* 특장점 - PC: 세로 나열, 두 번째만 우측 정렬 */
    .brand-features {
        gap: 4rem;
    }

    .brand-feature-number {
        font-size: 1.8rem;
    }

    .brand-feature-title {
        font-size: 1.6rem;
    }

    .brand-feature-desc {
        font-size: 1.1rem;
    }

}

/* 모바일 화면 (480px 이하) */
@media (max-width: 480px) {
    /* 작은 화면에서도 토글 메뉴 표시 */
    .pc-toggle-menu {
        width: 80%;
        max-width: 300px;
        padding-top: 6rem;
    }

    .pc-toggle-menu.active {
        right: 0;
    }

    /* 모바일에서만 플로팅 버튼 표시 */
    .floating-buttons {
        display: flex;
        right: 1rem;
        transform: none;
    }
}

/* 작은 모바일 화면 조정 */
@media (max-width: 380px) {
    .hero-main-title {
        font-size: 1.5rem;
    }

    .hero-subtitle-line {
        font-size: 1rem;
    }

    .hero-desc-line {
        font-size: 0.85rem;
    }

    .hero-cta-btn {
        padding: 0.9rem 1.5rem;
        font-size: 0.8rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .product-name {
        font-size: 0.95rem;
    }

    .brand-title {
        font-size: 1.2rem;
    }
}