@font-face {
    font-family: 'NanumSquareNeo';
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.eot);
    src: url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.eot?#iefix) format("embedded-opentype"), url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.woff) format("woff"), url(https://hangeul.pstatic.net/hangeul_static/webfont/NanumSquareNeo/NanumSquareNeoTTF-bRg.ttf) format("truetype");
}

a,
a:link,
a:visited,
a:hover,
a:active,
a:focus {
    text-decoration: none !important;
}
       
        .wrapper6 { width: 100%; background-color: #ffffff; padding-bottom: 0px; }
        .container6 { max-width: 1200px; margin: 0 auto; padding: 20px 0; }

        /* 헤더 스타일 */
        .header { text-align: center; margin-bottom: 90px; }
        .header .logo-icon { font-size: 28px; margin-bottom: 15px; display: block; }
        .header .sub-title { font-family: 'Noto Serif KR', serif; font-size: 15px; letter-spacing: 5px; color: #888; text-transform: uppercase; margin-bottom: 12px; }
        .header .main-title { font-family: 'Noto Serif KR', serif; font-size: 52px; font-style: italic; font-weight: 400; margin-bottom: 35px; }
        .header .intro-text { font-size: 17px; color: #444; letter-spacing: -0.5px; }
        .header .highlight-box { display: inline-block; border: 1px solid #eee; padding: 10px 25px; margin-top: 25px; font-size: 14px; color: #666; }

        /* 상품 카드 섹션 */
        .product-grid { display: flex; justify-content: space-between; gap: 25px; margin-bottom: 120px; align-items: stretch; }
        
        /* 1. 박스 수정: 테두리 둥글게 및 오버 현상 수정 */
        .product-card { 
            flex: 1; 
            border: 2px solid #f2f2f2; /* 기본 테두리를 2px로 설정하여 오버 시 흔들림 방지 */
            border-radius: 20px; /* 테두리 둥글게 */
            padding: 70px 35px 50px; 
            text-align: center; 
            position: relative; 
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); 
            display: flex; 
            flex-direction: column; 
            background: #fff;
        }

        .product-card:hover { 
            border: 2px solid #333; /* 동일 두께 유지하며 색상만 변경 */
            transform: translateY(-15px); 
            box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
            z-index: 10;
        }

        .badge1 { font-size: 11px; letter-spacing: 1.5px; padding: 5px 15px; display: inline-block; margin-bottom: 30px; text-transform: uppercase; font-weight: 500; }
        .badge1.black { background: #000; color: #fff; }
        .badge1.white { border: 1px solid #ddd; color: #666; }
        .badge1.signature { background: #888; color: #fff; position: absolute; top: -15px; left: 50%; transform: translateX(-50%); }

        .card-title { font-family: 'Noto Serif KR', serif; font-size: 32px; margin-bottom: 18px; color: #111; }
        .card-desc { font-size: 15px; color: #777; margin-bottom: 35px; height: 50px; line-height: 1.5; }

        /* 키포인트 박스 스타일 */
        .key-point-box { 
            background-color: #f8f8f8; 
            padding: 20px 15px; 
            font-size: 15px; 
            margin-bottom: 35px; 
            border-radius: 12px;
            display: flex;
            flex-direction: column;
            gap: 5px;
        }
        .key-point-box .tag { font-size: 12px; color: #aaa; font-weight: 500; }
        .key-point-box .desc { font-weight: 600; color: #333; }

        /* 시그니처 전용 키포인트 박스 */
        .product-card:last-child .key-point-box {
            background-color: #333;
            color: #fff;
        }
        .product-card:last-child .key-point-box .tag { color: #888; }
        .product-card:last-child .key-point-box .desc { color: #fff; }

        .feature-list { list-style: none; text-align: left; display: inline-block; margin-bottom: 50px; flex-grow: 1; }
        .feature-list li { font-size: 15px; color: #555; margin-bottom: 10px; position: relative; padding-left: 18px; }
        .feature-list li::before { content: '-'; position: absolute; left: 0; color: #ccc; }

        /* 가격 및 예약 버튼 */
        .price-area { border-top: 1px solid #eee; padding-top: 35px; margin-top: auto; }
        .price { font-family: 'Noto Serif KR', serif; font-size: 26px; font-weight: 700; color: #111; margin-bottom: 25px; }
        .price span { font-size: 16px; font-weight: 400; margin-left: 6px; color: #888; }

        .btn-reservation {
            display: block;
            width: 100%;
            background-color: #333;
            color: #fff;
            padding: 15px 0;
            text-decoration: none;
            border-radius: 50px;
            font-size: 15px;
            font-weight: 500;
            transition: all 0.3s ease;
            border: 1px solid transparent;
        }
        .btn-reservation:hover {
            background-color: #fff;
            color: #333;
            border-color: #333;
            transform: translateY(-5px);
        }

        /* 정보 그리드 */
        .section-title { text-align: center; font-family: 'Noto Serif KR', serif; font-size: 28px; margin-bottom: 30px; }
        .section-title span { display: block; font-size: 13px; color: #999; margin-top: 10px; font-family: 'Noto Sans KR', sans-serif; letter-spacing: 2px; text-transform: uppercase; }

        .info-grid { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 0 80px; border-top: 1px solid #eee; margin-bottom: 25px; }
        .info-item { width: calc(50% - 40px); display: flex; justify-content: space-between; align-items: center; padding: 22px 0; border-bottom: 1px dotted #ddd; font-size: 16px; }
        .info-item .label1 { color: #444; }
        .info-item .val { font-weight: 600; color: #111; }

        .notice-small { text-align: center; font-size: 13px; color: #aaa; margin-bottom: 100px; }

        .notice-small1 { text-align: center; font-size: 16px; color: #111; margin-bottom: 100px; }


/* 영상 안내 박스 전체 디자인 */
.videography-box { 
    background-color: #ffffff; 
    border: 2px solid #f2f2f2; 
    border-radius: 20px; 
    padding: 60px; 
    max-width: 1200px; 
    margin: 0 auto 120px; 
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.videography-box:hover {
    border: 2px solid #333; 
    transform: translateY(-15px); 
    box-shadow: 0 20px 40px rgba(0,0,0,0.08); 
}

/* 상단 텍스트 레이아웃 (PC에서 좌우 배치) */
.v-text-wrapper {
    display: flex;
    justify-content: space-between;
    gap: 60px;
}
.v-text-left {
    flex: 1;
    text-align: left;
}
.v-text-right {
    flex: 1.13;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* 타이틀 및 가격 스타일 */
.v-title-area { margin-bottom: 25px; }
.v-badge {
    font-size: 11px; letter-spacing: 1.5px; padding: 5px 15px; 
    display: inline-block; margin-bottom: 15px; 
    text-transform: uppercase; font-weight: 500; background: #000; color: #fff;
}
.v-main-price { font-family: 'Noto Serif KR', serif; font-size: 28px; font-weight: 700; color: #111; margin-top: 5px; }
.v-main-price span { font-size: 16px; font-weight: 400; margin-left: 6px; color: #888; }

/* 리스트 및 상세 스타일 */
.v-details { list-style: none; }
.v-details li { font-size: 16px; color: #444; margin-bottom: 10px; position: relative; padding-left: 15px; }
.v-details li::before { content: '·'; position: absolute; left: 0; font-weight: bold; color: #888; }

.v-features { list-style: none; margin-bottom: 25px; }
.v-features li { font-size: 15px; color: #555; margin-bottom: 15px; line-height: 1.6; }
.v-features li:last-child { margin-bottom: 0; }
.v-features li strong { color: #111; display: inline-block; margin-bottom: 2px; }

/* 샘플 동영상 보기 버튼 스타일 */
.btn-video-popup {
    display: inline-block;
    background-color: #333;
    color: #fff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    cursor: pointer;
    text-align: center;
}
.btn-video-popup:hover {
    background-color: #fff;
    color: #333;
    border-color: #333;
    transform: translateY(-5px);
}

/* 팝업 모달 레이아웃 */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* 배경 살짝 어두워짐 */
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}
.video-modal.active {
    opacity: 1;
    pointer-events: auto;
}
.modal-content {
    width: 90%;
    max-width: 1000px;
    position: relative;
}
.youtube-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    height: 0;
    overflow: hidden;
    border-radius: 0px; /* 테두리 둥글게 */
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}
.youtube-container iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}
/* 모달 닫기 버튼 */
.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    background: none;
    border: none;
}


/* 타이틀 및 가격 스타일 */
.v-title-area { margin-bottom: 25px; }
.v-badge {
    font-size: 11px; letter-spacing: 1.5px; padding: 5px 15px; 
    display: inline-block; margin-bottom: 15px; 
    text-transform: uppercase; font-weight: 500; background: #000; color: #fff;
}
.v-main-price { font-family: 'Noto Serif KR', serif; font-size: 28px; font-weight: 700; color: #111; margin-top: 5px; }
.v-main-price span { font-size: 16px; font-weight: 400; margin-left: 6px; color: #888; }

/* 리스트 및 상세 스타일 */
.v-details { list-style: none; }
.v-details li { font-size: 16px; color: #444; margin-bottom: 10px; position: relative; padding-left: 15px; }
.v-details li::before { content: '·'; position: absolute; left: 0; font-weight: bold; color: #888; }

.v-features { list-style: none; }
.v-features li { font-size: 15px; color: #555; margin-bottom: 15px; line-height: 1.6; }
.v-features li:last-child { margin-bottom: 0; }
.v-features li strong { color: #111; display: inline-block; margin-bottom: 2px; }

/* 하단 유튜브 대형 컨테이너 (박스 안에서 좌우 꽉 차게 설정) */
.video-media-bottom {
    width: 100%;
}
.youtube-container {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 비율 유지 */
    height: 0;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}
.youtube-container iframe {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0;
}


        .video-text { font-size: 16px; color: #555; line-height: 1.9; margin-top: 25px; }

        /* 3. 하단 안내 박스 스타일 */
        .footer-notice-box {
            background-color: #f9f9f9;
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            margin-top: 40px;
        }
        .footer-notice-box p {
            font-size: 14px;
            color: #555;
            margin-bottom: 8px;
        }
        .footer-notice-box p:last-child { margin-bottom: 0; }

        .thank-you { text-align: center; font-family: 'Noto Serif KR', serif; font-size: 38px; font-style: italic; color: #eee; margin-top: 120px; letter-spacing: 2px; }

        /* 반응형 설정 */
        @media (max-width: 1024px) {
            .container6 { padding: 20px 20px; }
            .product-grid { flex-wrap: wrap; }
            .product-card { flex: none; width: calc(50% - 13px); }
            .info-grid { gap: 0 40px; }			
    .videography-box { padding: 40px; }
    .v-text-wrapper { gap: 40px; }
        }

        @media (max-width: 768px) {
            .container6 { padding: 20px 10px; }
            .main-title { font-size: 40px; }
            .product-card { width: 100%; padding: 50px 25px; }
            .info-item { width: 100%; font-size: 15px; padding: 18px 0; }
            .section-title { font-size: 24px; }
            .footer-notice-box { padding: 25px 15px; }
            .video-text { font-size: 14px; }
        .header .sub-title { font-size: 13px; }
        .header .main-title { font-size: 40px; }
        .header .intro-text { font-size: 15px; }
		.notice-small1 { font-size: 13px; }		
    .videography-box { padding: 40px 25px; }
    .v-text-wrapper { flex-direction: column; gap: 30px; }
    .v-details li, .v-features li { font-size: 15px; }
    .btn-video-popup { width: 100%; } /* 모바일에서는 터치 편하게 가로 꽉 차게 */
        }