@charset "utf-8";

/* PRIZM K 로그인 페이지 전용 스타일 - 해외 서비스 스타일 */

/* 로그인 래퍼 */
.pk-login-wrapper {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* 배경 이미지 레이어 - 회원가입 페이지에서는 모바일에서만 표시 */
.pk-register-wrapper .pk-login-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('img/login-bg.jpg'); /* 배경 이미지 경로 - 필요시 변경 */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* PC에서는 배경 이미지 숨김 */
@media only screen and (min-width: 768px) {
    .pk-register-wrapper .pk-login-bg {
        display: none;
    }
}

/* 배경 오버레이 (가독성 향상) */
.pk-login-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 1;
}

/* 언어 전환 (상단 고정) */
.pk-language-switcher-top {
    position: fixed;
    top: 30px;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    pointer-events: auto;
}

.pk-lang-btn-top {
    font-size: 14px;
    font-weight: 500;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 4px 8px;
    border-radius: 4px;
}

.pk-lang-btn-top:hover {
    color: #141414;
    background: rgba(20, 20, 20, 0.05);
}

.pk-lang-btn-top.active {
    color: #141414;
    font-weight: 600;
    background: rgba(20, 20, 20, 0.1);
}

.pk-lang-separator {
    color: #dee2e6;
    font-size: 14px;
}

/* 로그인 컨테이너 */
.pk-login-container {
    width: 100%;
    max-width: 800px;
    padding: 0px 20px 40px;
    margin: 0 auto;
    clear: both;
	position:relative;
	z-index:2;
}

/* 로그인 콘텐츠 */
.pk-login-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    backdrop-filter: blur(20px);
}

/* 로그인 헤더 */
.pk-login-header-new {
    padding: 48px 40px 32px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.pk-login-brand {
    font-size: 25px;
    font-weight: 800;
    color: #141414;
    margin: 0 0 8px;
    font-family: "Hanken Grotesk", sans-serif;
    letter-spacing: -1px;
    line-height: 1.2;
}

.pk-login-subtitle {
    font-size: 16px;
    color: #6c757d;
    margin: 0;
    font-weight: 400;
    line-height: 1.5;
    word-break: keep-all;
    white-space: normal;
}

/* 로그인 박스 */
.pk-login-box-new {
    padding: 40px;
}

.pk-login-fieldset {
    border: none;
    padding: 0;
    margin: 0;
}

/* 입력 그룹 */
.pk-input-group-new {
    margin-bottom: 24px;
}

.pk-input-label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: #141414;
    margin-bottom: 8px;
    font-family: "Hanken Grotesk", sans-serif;
}

.pk-input-new {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    line-height: 1.5;
    color: #141414;
    background: #ffffff;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    transition: all 0.3s ease;
    font-family: "Hanken Grotesk", sans-serif;
    box-sizing: border-box;
}

.pk-input-new:focus {
    outline: none;
    border-color: #141414;
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(20, 20, 20, 0.08);
}

.pk-input-new::placeholder {
    color: #adb5bd;
    font-weight: 400;
}

/* 제출 버튼 */
.pk-btn-submit-new {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background: #141414;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: "Hanken Grotesk", sans-serif;
    margin-top: 8px;
    letter-spacing: 0.3px;
}

.pk-btn-submit-new:hover {
    background: #2a2a2a;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(20, 20, 20, 0.25);
}

.pk-btn-submit-new:active {
    transform: translateY(0);
}

/* 로그인 정보 */
.pk-login-info-new {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.pk-login-info-new .login_if_auto {
    float: none;
}

.pk-login-info-new .login_if_auto label {
    vertical-align: baseline;
    padding-left: 20px;
    font-size: 14px;
    color: #495057;
    cursor: pointer;
    font-weight: 400;
}

.pk-login-info-new .login_if_lpl {
    float: none;
}

.pk-login-info-new .login_if_lpl a {
    font-size: 14px;
    color: #141414;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.pk-login-info-new .login_if_lpl a:hover {
    color: #6c757d;
    text-decoration: underline;
}

/* 체크박스 스타일 */
.pk-login-info-new .chk_box input[type="checkbox"] + label span {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    background: #fff;
    transition: all 0.3s ease;
}

.pk-login-info-new .chk_box input[type="checkbox"]:checked + label span {
    background: #141414 url('img/chk.png') no-repeat 50% 50%;
    background-size: 14px;
    border-color: #141414;
}

/* 구분선 */
.pk-login-divider {
    position: relative;
    text-align: center;
    margin: 32px 0;
}

.pk-login-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e9ecef;
}

.pk-login-divider span {
    position: relative;
    background: rgba(255, 255, 255, 0.98);
    padding: 0 16px;
    color: #6c757d;
    font-size: 14px;
}

/* 로그인 푸터 */
.pk-login-footer {
    text-align: center;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #f0f0f0;
}

.pk-login-signup-text {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
}

.pk-signup-link {
    color: #141414;
    text-decoration: none;
    font-weight: 600;
    margin-left: 8px;
    transition: color 0.3s ease;
}

.pk-signup-link:hover {
    color: #6c757d;
    text-decoration: underline;
}

/* 기존 스타일 오버라이드 */
.pk-login-wrapper .mbskin_box {
    border: none;
    background: transparent;
}

.pk-login-wrapper #mb_login h1 {
    position: static;
    font-size: 42px;
    line-height: normal;
    overflow: visible;
}

.pk-login-wrapper #login_fs {
    padding: 0;
}

.pk-login-wrapper #mb_login #login_fs .frm_input {
    margin: 0;
}

.pk-login-wrapper #mb_login #login_fs .btn_submit {
    margin: 0;
}

.pk-login-wrapper #login_info {
    margin-top: 0;
    padding-top: 0;
    border-top: none;
}

.pk-login-wrapper #login_info:after {
    display: none;
}

/* 반응형 */
@media only screen and (max-width: 575px) {
    .pk-login-container {
        max-width: 100%;
        padding: 20px 16px;
        margin-top: 60px; /* 언어 전환 버튼 공간 확보 */
		margin-bottom: 60px !important;
    }
    
    .pk-login-content {
        border-radius: 20px;
    }
    
    .pk-login-header-new {
        padding: 36px 24px 24px;
    }
    
    .pk-login-brand {
        font-size: 25px;
        margin-bottom: 6px;
    }
    
    .pk-login-subtitle {
        font-size: 15px;
        line-height: 1.4;
    }
    
    .pk-login-box-new {
        padding: 32px 24px;
    }
    
    .pk-language-switcher-top {
        top: 16px;
        right: 16px;
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .pk-lang-btn-top {
        font-size: 13px;
        padding: 3px 6px;
    }
    
    .pk-lang-separator {
        font-size: 12px;
    }
    
    .pk-input-group-new {
        margin-bottom: 20px;
    }
    
    .pk-input-new {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .pk-btn-submit-new {
        padding: 14px 20px;
        font-size: 15px;
    }
}

/* 배경 이미지가 없을 경우 대체 배경 */
.pk-login-wrapper:not(:has(.pk-login-bg[style*="background-image"])) .pk-login-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

/* ============================================
   PRIZM K 회원가입 페이지 전용 스타일
   ============================================ */

/* 회원가입 래퍼 */
.pk-register-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    position: relative;
    background: #f5f5f5; /* 모바일 기본 배경 */
}

/* PC 배경 - 흰색 */
@media only screen and (min-width: 768px) {
    .pk-register-wrapper {
        background: #ffffff;
        padding: 40px 20px;
    }
}

/* 회원가입 컨테이너 */
.pk-register-form-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

/* 태블릿 */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .pk-register-form-container {
        max-width: 700px;
    }
}

/* 큰 화면 */
@media only screen and (min-width: 1200px) {
    .pk-register-form-container {
        max-width: 900px;
    }
}

/* 회원가입 콘텐츠 */
.pk-register-content {
    background: rgba(255, 255, 255, 0.98);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    overflow: hidden;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* PC - 뉴모피즘 스타일 */
@media only screen and (min-width: 768px) {
    .pk-register-content {
        background: #ffffff;
        border-radius: 30px;
        box-shadow: 
            20px 20px 60px rgba(0, 0, 0, 0.08),
            -20px -20px 60px rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.5);
        backdrop-filter: none;
    }
}

/* PC - 뉴모피즘 스타일 */
@media only screen and (min-width: 768px) {
    .pk-register-content {
        background: #ffffff;
        border-radius: 30px;
        box-shadow: 
            20px 20px 60px rgba(0, 0, 0, 0.08),
            -20px -20px 60px rgba(255, 255, 255, 0.8);
        border: 1px solid rgba(255, 255, 255, 0.5);
        backdrop-filter: none;
    }
}

/* 회원가입 박스 */
.pk-register-box {
    padding: 40px;
}

/* 모바일 - 패딩 조정 */
@media only screen and (max-width: 767px) {
    .pk-register-box {
        padding: 30px 15px;
    }
}

/* 모바일 - 패딩 조정 */
@media only screen and (max-width: 767px) {
    .pk-register-box {
        padding: 30px 15px;
    }
}

/* 회원가입 알림 */
.pk-register-notice {
    background: rgba(242, 131, 143, 0.1);
    border-left: 4px solid #f2838f;
    padding: 15px 20px;
    margin: 0 0 30px;
    border-radius: 8px;
    color: #495057;
    font-size: 14px;
    line-height: 1.6;
}

.pk-register-notice i {
    color: #f2838f;
    margin-right: 8px;
}

/* 회원가입 섹션 */
.pk-register-section {
    margin: 0 0 30px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.pk-register-section h2 {
    padding: 20px 24px;
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #141414;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

/* 회원가입 텍스트 영역 */
.pk-register-textarea {
    display: block;
    width: 100%;
    padding: 20px;
    min-height: 200px;
    border: 0;
    background: #fff;
    font-size: 14px;
    line-height: 1.6;
    color: #495057;
    resize: vertical;
    font-family: inherit;
}

/* 회원가입 체크박스 */
.pk-register-checkbox {
    padding: 15px 24px;
    background: #f8f9fa;
    border-top: 1px solid #e9ecef;
}

.pk-register-checkbox label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    color: #495057;
}

.pk-register-checkbox-all {
    margin: 20px 0;
    padding: 18px 24px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-align: center;
}

.pk-register-checkbox-all label {
    font-weight: 600;
    font-size: 15px;
    color: #141414;
}

/* 회원가입 테이블 */
.pk-register-table-wrapper {
    padding: 20px;
    overflow-x: auto;
}

.pk-register-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.pk-register-table th {
    background: #f8f9fa;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    color: #141414;
    border: 1px solid #e9ecef;
}

.pk-register-table td {
    padding: 12px;
    border: 1px solid #e9ecef;
    color: #495057;
    line-height: 1.6;
}

.pk-register-table tbody tr:nth-child(even) {
    background: #f8f9fa;
}

/* 회원가입 버튼 */
.pk-register-buttons {
    display: flex;
    gap: 12px;
    margin-top: 30px;
}

.pk-btn-cancel {
    flex: 1;
    padding: 14px 20px;
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    text-align: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.pk-register-buttons .pk-btn-submit-new {
    flex: 1;
    width: auto;
    margin-top: 0;
}

.pk-btn-cancel:hover {
    background: #e9ecef;
    color: #141414;
}

/* 회원가입 폼 박스 */
.pk-register-form-box {
    overflow-y: auto;
    padding-right: 10px;
}

.pk-register-form-box::-webkit-scrollbar {
    width: 6px;
}

.pk-register-form-box::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.pk-register-form-box::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 10px;
}

.pk-register-form-box::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

/* 회원가입 폼 섹션 */
.pk-register-section-inner {
    margin: 0 0 25px;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    overflow: hidden;
}

.pk-register-section-inner h2 {
    padding: 18px 24px;
    margin: 0;
    font-size: 17px;
    font-weight: 600;
    color: #141414;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.pk-register-section-inner ul {
    padding: 20px 24px;
    margin: 0;
    list-style: none;
}

.pk-register-section-inner li {
    margin: 0 0 20px;
}

.pk-register-section-inner li:last-child {
    margin-bottom: 0;
}

.pk-register-section-inner label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
}

.pk-register-section-inner .frm_input,
.pk-register-section-inner input[type="text"],
.pk-register-section-inner input[type="password"],
.pk-register-section-inner input[type="email"],
.pk-register-section-inner textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 14px;
    color: #141414;
    background: #fff;
    transition: all 0.3s ease;
    font-family: inherit;
}

.pk-register-section-inner .frm_input:focus,
.pk-register-section-inner input:focus,
.pk-register-section-inner textarea:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.pk-register-section-inner .half_input {
    width: calc(50% - 6px);
    display: inline-block;
}

.pk-register-section-inner .half_input.left_input {
    margin-right: 12px;
}

.pk-register-section-inner .chk_box {
    display: flex;
    align-items: center;
    margin: 15px 0;
}

.pk-register-section-inner .chk_box label {
    margin: 0;
    margin-left: 8px;
    font-weight: normal;
}

.pk-register-section-inner .chk_li {
    margin-left: 8px;
    font-size: 14px;
    color: #495057;
}

/* 반응형 - 모바일 */
@media only screen and (max-width: 767px) {
    .pk-register-wrapper {
        padding: 0;
        background: #f5f5f5;
    }
    
    .pk-login-container {
        padding: 0 15px;
        max-width: 100%;
        width: 100%;
		border-radius:15px;
    }
    
    .pk-register-content {
        border-radius: 0;
        margin: 0px 0 50px;
        width: 100%;
    }
    
    .pk-register-box {
        padding: 30px 15px;
    }
    
    .pk-register-form-container {
        max-width: 100%;
        width: 100%;
        padding: 0 15px;
    }
    
    .pk-register-section h2,
    .pk-register-section-inner h2 {
        font-size: 16px;
        padding: 15px 15px;
    }
    
    .pk-register-textarea {
        min-height: 150px;
        padding: 15px;
    }
    
    .pk-register-table-wrapper {
        padding: 15px;
        overflow-x: auto;
    }
    
    .pk-register-table {
        font-size: 12px;
        min-width: 500px;
    }
    
    .pk-register-table th,
    .pk-register-table td {
        padding: 8px;
    }
    
    .pk-register-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .pk-register-section-inner .half_input {
        width: 100%;
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .pk-register-section-inner ul {
        padding: 15px;
    }
    
    .pk-register-checkbox,
    .pk-register-checkbox-all {
        padding: 12px 15px;
    }
}

/* 반응형 - 태블릿 */
@media only screen and (min-width: 768px) and (max-width: 1023px) {
    .pk-register-form-container {
        max-width: 700px;
    }
    
    .pk-register-content {
        border-radius: 25px;
    }
}

/* 반응형 - PC */
@media only screen and (min-width: 1024px) {
    .pk-register-form-container {
        max-width: 800px;
    }
}

/* 반응형 - 큰 화면 */
@media only screen and (min-width: 1200px) {
    .pk-register-form-container {
        max-width: 900px;
    }
}

/* 비밀번호 확인 페이지 로그아웃 버튼 */
.pk-confirm-logout {
    margin-top: 24px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
}

.pk-logout-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    background: #f8f9fa;
    color: #495057;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    font-family: "Hanken Grotesk", sans-serif;
}

.pk-logout-btn:hover {
    background: #e9ecef;
    color: #141414;
    border-color: #dee2e6;
}

.pk-logout-btn i {
    font-size: 14px;
}

/* ============================================
   모바일 헤더 스타일
   ============================================ */
@media only screen and (max-width: 767px) {
    .header-three {
        background: #000;
        position: relative;
    }
    
    .header-three .inner {
        flex-direction: row;
        padding: 15px 0;
        justify-content: space-between;
        align-items: center;
    }
    
    .header-three .inner .logo-area,
    .header-three .inner .logo-area-white {
        order: 2;
        margin: 0 auto;
        text-align: center;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        font-size: 18px;
    }
    
    .header-three .inner .header-right {
        order: 1;
        width: auto;
        justify-content: flex-start;
        gap: 10px;
        flex: 1;
    }
    
    .header-three .inner .header-right .artist-btn {
        display: none;
    }
    
    .header-three .inner .header-right .mypage-btn {
        order: 3;
        margin-left: auto;
    }
    
    .header-three .inner .header-right .rts-offcanvas-wrapper {
        order: 1;
        margin-left: 0;
    }
    
    /* 햄버거 메뉴 버튼 스타일 */
    .header-three .inner .header-right .rts-offcanvas-wrapper .action-menu {
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-three .inner .header-right .rts-offcanvas-wrapper .burger {
        width: 24px;
        height: 20px;
        position: relative;
        cursor: pointer;
    }
    
    .header-three .inner .header-right .rts-offcanvas-wrapper .burger .icon-burger {
        display: block;
    }
    
    .header-three .inner .header-right .rts-offcanvas-wrapper .burger .icon-close {
        display: none;
    }
    
    .header-three .inner .header-right .rts-offcanvas-wrapper .open-event.style-open .icon-burger {
        display: none;
    }
    
    .header-three .inner .header-right .rts-offcanvas-wrapper .open-event.style-open .icon-close {
        display: block;
    }
    
    .header-three .inner .header-right .rts-offcanvas-wrapper .burger svg line {
        stroke: #fff;
    }
    
    /* 사이드 메뉴 스타일 */
    .header-three .rts-fs-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85%;
        height: 100vh;
        background: #fff;
        z-index: 9999;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .header-three .rts-fs-menu.menu-open {
        right: 0;
    }
    
    .header-three .rts-fs-container {
        padding: 60px 30px 30px;
        margin: 0;
    }
    
    .header-three .rts-fs--nav {
        width: 100%;
        padding: 0;
    }
    
    .header-three .rts-fs--nav ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .header-three .rts-fs--nav ul li {
        margin: 0;
        padding: 0;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .header-three .rts-fs--nav ul li a {
        display: block;
        padding: 18px 0;
        font-size: 16px;
        font-weight: 500;
        color: #000;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: "Hanken Grotesk", sans-serif;
        transition: color 0.3s ease;
    }
    
    .header-three .rts-fs--nav ul li a:hover {
        color: #666;
    }
    
    .header-three .rts-fs--nav ul li.menu-item-has-children > a {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .header-three .rts-fs--nav ul li.menu-item-has-children > a svg {
        width: 16px;
        height: 16px;
        transition: transform 0.3s ease;
        flex-shrink: 0;
    }
    
    .header-three .rts-fs--nav ul li.menu-item-has-children.active > a svg {
        transform: rotate(90deg);
    }
    
    .header-three .rts-fs--nav ul li .sub-menu {
        display: none;
        padding-left: 20px;
        background: #f8f8f8;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .header-three .rts-fs--nav ul li.menu-item-has-children.active .sub-menu {
        display: block;
        max-height: 500px;
    }
    
    .header-three .rts-fs--nav ul li .sub-menu li {
        border-bottom: none;
    }
    
    .header-three .rts-fs--nav ul li .sub-menu li a {
        padding: 12px 0;
        font-size: 14px;
        text-transform: none;
        color: #666;
    }
    
    /* 메뉴 오버레이 */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9998;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
    
    /* 닫기 버튼 스타일 */
    .header-three .rts-fs-menu .close-event {
        position: absolute;
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
        cursor: pointer;
        z-index: 10000;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .header-three .rts-fs-menu .close-event::before,
    .header-three .rts-fs-menu .close-event::after {
        content: '';
        position: absolute;
        width: 20px;
        height: 2px;
        background: #000;
        transform: rotate(45deg);
    }
    
    .header-three .rts-fs-menu .close-event::after {
        transform: rotate(-45deg);
    }
    
    /* For Buyer 버튼 스타일 */
    .header-three .inner .header-right .for-buyer-btn {
        order: 3;
        margin-left: auto;
    }
    
    .header-three .inner .header-right .for-buyer-btn a {
        display: inline-block;
        padding: 8px 16px;
        background: #fff;
        color: #000;
        border-radius: 4px;
        font-size: 14px;
        font-weight: 500;
        text-decoration: none;
        font-family: "Hanken Grotesk", sans-serif;
    }
    
    /* PC에서 For Buyer 버튼 스타일 */
    @media only screen and (min-width: 768px) {
        .header-three .inner .header-right .for-buyer-btn a {
            padding: 10px 20px;
            font-size: 15px;
        }
    }
}

/* ============================================
   새로운 헤더 모바일 스타일 (기존 PC 스타일 유지)
   ============================================ */

/* PC에서는 모바일 메뉴 버튼 숨김 */
.mobile-menu-toggle {
    display: none;
}

.mobile-side-menu {
    display: none;
}

.mobile-menu-overlay {
    display: none;
}

@media only screen and (max-width: 767px) {
    /* 모바일에서만 모바일 메뉴 버튼 표시 */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .mobile-side-menu {
        display: block;
    }
    
    .mobile-menu-overlay {
        display: block;
    }
    /* Top Bar 모바일 */
    .top-bar {
        display: none;
    }
    
    /* Header 모바일 - 기존 스타일 유지하면서 추가 */
    .main-header {
        background: #fff;
        position: relative;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .main-header .container {
        padding: 0 15px;
    }
    
    /* 기존 header-content 스타일 유지하면서 모바일만 수정 */
    .main-header .header-content {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0;
        position: relative;
        flex-wrap: nowrap; /* 기존 flex-wrap: wrap 덮어쓰기 */
    }
    
    /* 2x2 사각형 그리드 메뉴 버튼 */
    .mobile-menu-toggle {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 1fr);
        gap: 3px;
        width: 24px;
        height: 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 1001;
        order: 3; /* 오른쪽으로 이동 */
        flex-shrink: 0;
        margin-left: auto; /* 오른쪽 정렬 */
    }
    
    .mobile-menu-toggle span {
        width: 100%;
        height: 100%;
        background: #000;
        border-radius: 1px;
        transition: opacity 0.3s ease;
    }
    
    /* 로고 가운데 배치 - 기존 스타일 유지 */
    .main-header .logo-section {
        order: 2;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        flex: 0 0 auto;
    }
    
    .main-header .logo-section .logo img {
        width: 80px !important;
    }
    
    /* 네비게이션 숨김 - 기존 모바일 스타일 덮어쓰기 */
    .main-header .main-nav {
        display: none !important; /* 기존 order: 3, width: 100%, margin-top: 20px 스타일 덮어쓰기 */
        order: unset !important;
        width: unset !important;
        margin-top: unset !important;
    }
    
    /* 기존 nav-list 스타일도 숨김 */
    .main-header .nav-list {
        display: none !important;
    }
    
    /* 헤더 오른쪽 버튼 - 왼쪽으로 이동 */
    .main-header .header-right {
        order: 1; /* 왼쪽으로 이동 */
        margin-left: 0;
        flex: 0 0 auto;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    
    .main-header .header-right .buyer-login {
        padding: 8px 12px;
        font-size: 12px;
        display: flex;
        align-items: center;
        gap: 8px;
    }
    
    /* 사이드 메뉴 */
    .mobile-side-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        max-width: 85%;
        height: 100vh;
        background: #fff;
        z-index: 10000;
        transition: right 0.3s ease;
        overflow-y: auto;
        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    }
    
    .mobile-side-menu.active {
        right: 0;
    }
    
    .mobile-menu-header {
        padding: 20px;
        border-bottom: 1px solid #e0e0e0;
        display: flex;
        justify-content: flex-end;
    }
    
    .mobile-menu-close {
        background: none;
        border: none;
        font-size: 24px;
        color: #000;
        cursor: pointer;
        padding: 0;
        width: 30px;
        height: 30px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .mobile-nav {
        padding: 20px 0;
    }
    
    .mobile-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-nav-item {
        border-bottom: 1px solid #e0e0e0;
    }
    
    .mobile-nav-link {
        display: block;
        padding: 18px 30px;
        font-size: 16px;
        font-weight: 500;
        color: #000;
        text-decoration: none;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        font-family: "Hanken Grotesk", sans-serif;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .mobile-nav-link i {
        font-size: 12px;
        color: #999;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
    }
    
    .mobile-nav-item.active .mobile-nav-link {
        color: #000;
    }
    
    .mobile-nav-item.active .mobile-nav-link i {
        transform: rotate(180deg);
        color: #000;
    }
    
    .mobile-dropdown-menu {
        max-height: 0;
        overflow: hidden;
        background: #f8f8f8;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.4s ease 0.1s,
                    padding 0.3s ease;
        opacity: 0;
        padding: 0;
    }
    
    .mobile-nav-item.active .mobile-dropdown-menu {
        max-height: 2000px;
        opacity: 1;
        padding: 8px 0;
    }
    
    .mobile-dropdown-item-with-submenu {
        border-bottom: 1px solid #e0e0e0;
        background: #f8f8f8;
        transition: background-color 0.2s ease;
    }
    
    .mobile-dropdown-item-with-submenu:hover {
        background: #f0f0f0;
    }
    
    .mobile-dropdown-link {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 16px 30px 16px 50px;
        color: #333;
        text-decoration: none;
        font-size: 14px;
        font-weight: 500;
        position: relative;
        transition: color 0.2s ease, background-color 0.2s ease;
    }
    
    .mobile-dropdown-link:hover {
        color: #000;
        background: #f0f0f0;
    }
    
    .mobile-dropdown-link span {
        display: flex;
        flex-direction: column;
        gap: 2px;
    }
    
    .mobile-dropdown-link .menu-english {
        font-size: 14px;
        font-weight: 500;
        color: #333;
    }
    
    .mobile-dropdown-link .menu-korean {
        font-size: 12px;
        color: #999;
        font-weight: 400;
    }
    
    .mobile-dropdown-link i {
        font-size: 10px;
        color: #999;
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), color 0.2s ease;
        flex-shrink: 0;
        margin-left: 10px;
    }
    
    .mobile-dropdown-item-with-submenu.active .mobile-dropdown-link {
        color: #000;
        background: #f0f0f0;
    }
    
    .mobile-dropdown-item-with-submenu.active .mobile-dropdown-link i {
        transform: rotate(90deg);
        color: #000;
    }
    
    .mobile-submenu {
        max-height: 0;
        overflow: hidden;
        background: #f0f0f0;
        transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), 
                    opacity 0.4s ease 0.1s,
                    padding 0.3s ease;
        opacity: 0;
        padding: 0;
    }
    
    .mobile-dropdown-item-with-submenu.active .mobile-submenu {
        max-height: 1000px;
        opacity: 1;
        padding: 4px 0;
    }
    
    /* 서브메뉴 항목 페이드인 애니메이션 */
    .mobile-submenu li {
        opacity: 0;
        transform: translateX(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    .mobile-dropdown-item-with-submenu.active .mobile-submenu li {
        opacity: 1;
        transform: translateX(0);
    }
    
    .mobile-dropdown-item-with-submenu.active .mobile-submenu li:nth-child(1) {
        transition-delay: 0.05s;
    }
    
    .mobile-dropdown-item-with-submenu.active .mobile-submenu li:nth-child(2) {
        transition-delay: 0.1s;
    }
    
    .mobile-dropdown-item-with-submenu.active .mobile-submenu li:nth-child(3) {
        transition-delay: 0.15s;
    }
    
    .mobile-dropdown-item-with-submenu.active .mobile-submenu li:nth-child(4) {
        transition-delay: 0.2s;
    }
    
    .mobile-dropdown-item-with-submenu.active .mobile-submenu li:nth-child(5) {
        transition-delay: 0.25s;
    }
    
    .mobile-submenu li {
        border-bottom: 1px solid #e5e5e5;
        transition: background-color 0.2s ease;
    }
    
    .mobile-submenu li:last-child {
        border-bottom: none;
    }
    
    .mobile-submenu li:hover {
        background: #e8e8e8;
    }
    
    .mobile-submenu a {
        display: block;
        padding: 14px 30px 14px 70px;
        color: #666;
        text-decoration: none;
        font-size: 13px;
        transition: color 0.2s ease, padding-left 0.2s ease;
        position: relative;
    }
    
    .mobile-submenu a:hover {
        color: #000;
        padding-left: 75px;
    }
    
    .mobile-submenu a .menu-english {
        font-size: 13px;
        font-weight: 400;
        color: #666;
        display: block;
        margin-bottom: 2px;
    }
    
    .mobile-submenu a:hover .menu-english {
        color: #000;
    }
    
    .mobile-submenu a .menu-korean {
        font-size: 11px;
        color: #999;
        font-weight: 400;
    }
    
    .mobile-submenu a:hover .menu-korean {
        color: #666;
    }
    
    .mobile-dropdown-divider {
        height: 1px;
        background: #e0e0e0;
        margin: 12px 30px;
        opacity: 0.5;
    }
    
    /* 오버레이 */
    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    .mobile-menu-overlay.active {
        display: block;
        opacity: 1;
    }
}

/* ============================================
   How Buyers See Your Work Section
   ============================================ */
.how-buyers-section {
    padding: 80px 20px;
    background: #fff;
}

@media only screen and (max-width: 767px) {
    .how-buyers-section {
        padding: 60px 15px;
    }
}

.how-buyers-section .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    font-family: "Hanken Grotesk", sans-serif;
}

@media only screen and (max-width: 767px) {
    .how-buyers-section .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

.buyers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

@media only screen and (max-width: 767px) {
    .buyers-grid {
        gap: 15px;
        max-width: 100%;
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(3, 1fr);
    }
}

.buyer-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

@media only screen and (max-width: 767px) {
    .buyer-item {
        padding: 25px 15px;
    }
}

.buyer-item:hover {
    border-color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.buyer-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .buyer-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 12px;
    }
}

.buyer-icon svg {
    width: 100%;
    height: 100%;
    stroke: #000;
}

.buyer-text {
    font-size: 16px;
    font-weight: 500;
    color: #000;
    font-family: "Hanken Grotesk", sans-serif;
}

@media only screen and (max-width: 767px) {
    .buyer-text {
        font-size: 14px;
    }
}

/* ============================================
   하단 요소 잘림 방지
   ============================================ */
.portfolio-nine-wrapper-main {
    padding-bottom: 40px;
}

@media only screen and (max-width: 767px) {
    .portfolio-nine-wrapper-main {
        padding-bottom: 30px;
    }
    
    .product-wrapper-9 {
        padding-bottom: 20px;
    }
    
    .product-row {
        margin-bottom: 20px;
    }
    
    /* 두 번째 영역 숨김 */
    .product-row.two {
        display: none !important;
    }
}


@media only screen and (max-width: 767px) {
    #container {
        padding-bottom: 40px;
    }
}

/* ============================================
   Why Prizm K Section
   ============================================ */
.why-prizm-section {
    padding: 80px 20px;
    background: #fff;
}

@media only screen and (max-width: 767px) {
    .why-prizm-section {
        padding: 60px 15px;
    }
}

.why-prizm-section .section-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    text-align: center;
    margin-bottom: 60px;
    font-family: "Hanken Grotesk", sans-serif;
}

@media only screen and (max-width: 767px) {
    .why-prizm-section .section-title {
        font-size: 32px;
        margin-bottom: 40px;
    }
}

.why-prizm-section .feature-cards {
    display: flex;
    flex-direction: row;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .why-prizm-section .feature-cards {
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding-bottom: 20px;
    }
    
    .why-prizm-section {
        padding-bottom: 40px;
    }
}

.why-prizm-section .feature-card {
    flex: 1;
    padding: 30px 20px;
    text-align: center;
    border-radius: 8px;
    background: #f9f9f9;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 200px;
}

@media only screen and (max-width: 767px) {
    .why-prizm-section .feature-card {
        width: 100%;
        padding: 25px 15px;
        min-height: auto;
        margin-bottom: 0;
    }
    
    .why-prizm-section .feature-card:last-child {
        margin-bottom: 0;
    }
}

.why-prizm-section .feature-card:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
}

.why-prizm-section .feature-icon {
    margin-bottom: 20px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media only screen and (max-width: 767px) {
    .why-prizm-section .feature-icon {
        height: 40px;
        margin-bottom: 15px;
    }
}

.why-prizm-section .feature-icon i {
    font-size: 40px;
    color: #000;
}

@media only screen and (max-width: 767px) {
    .why-prizm-section .feature-icon i {
        font-size: 32px;
    }
}

.why-prizm-section .feature-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #000;
    font-family: "Hanken Grotesk", sans-serif;
}

@media only screen and (max-width: 767px) {
    .why-prizm-section .feature-title {
        font-size: 18px;
        margin-bottom: 8px;
    }
}

.why-prizm-section .feature-text {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    font-family: "Hanken Grotesk", sans-serif;
}

@media only screen and (max-width: 767px) {
    .why-prizm-section .feature-text {
        font-size: 13px;
    }
}

/* ============================================
   Footer 스타일
   ============================================ */
.main-footer {
    background-color: #fff;
    padding: 30px 20px;
    border-top: 1px solid #e0e0e0;
    margin-top: 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

@media only screen and (max-width: 767px) {
    .main-footer {
        padding: 25px 15px;
        margin-top: 0;
        position: relative;
        bottom: 0;
        width: 100%;
    }
}

.main-footer .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 20px;
}

@media only screen and (max-width: 767px) {
    .main-footer .container {
        padding: 0 15px;
    }
}

.main-footer .footer-content {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .main-footer .footer-content {
        justify-content: center;
    }
}

.main-footer .footer-nav {
    display: flex;
    gap: 20px;
    align-items: center;
}

@media only screen and (max-width: 767px) {
    .main-footer .footer-nav {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
}

.main-footer .footer-link {
    font-size: 14px;
    color: #000;
    text-decoration: none;
    transition: color 0.3s ease;
    font-family: "Hanken Grotesk", sans-serif;
    font-weight: 500;
}

.main-footer .footer-link:hover {
    color: #666;
}

@media only screen and (max-width: 767px) {
    .main-footer .footer-link {
        font-size: 13px;
    }
}

/* 모바일에서 포트폴리오 섹션 숨김 */
@media only screen and (max-width: 767px) {
    .portfolio-nine-wrapper-main {
        display: none !important;
    }
    
    /* How Buyers 섹션만 표시 */
    .how-buyers-section {
        margin-top: 0;
        padding-top: 40px;
    }
    
    /* Why Prizm K 섹션 - 3개 모두 보이도록 */
    .why-prizm-section {
        padding-bottom: 60px;
        overflow: visible;
    }
    
    .why-prizm-section .feature-cards {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
        padding-bottom: 0;
    }
    
    .why-prizm-section .feature-card {
        width: 100%;
        padding: 25px 15px;
        min-height: auto;
        margin-bottom: 0;
        flex-shrink: 0;
    }
    
    /* Footer 하단 고정 */
    body {
        display: flex;
        flex-direction: column;
        min-height: 100vh;
    }
    
    #container {
        flex: 1;
        display: flex;
        flex-direction: column;
    }
    
    .main-footer {
        margin-top: auto;
        position: relative;
        bottom: 0;
        width: 100%;
    }

	/* 로그인페이지 */
	.pk-login-wrapper #login_fs,
	.pk-login-box-new input[type=text],
	.pk-input-new{
		text-align:center;
	}

	
	.pk-login-info-new{
		display:none;
	}

	.pk-login-container{
		margin:60px 0;
	}

	/* 메인페이지 */
	.hero-content{
		width:100%;
	}
}

input[type=password],
	input[type=text]{
		border:1px solid #e9e9e9;
		border-radius:10px;
		padding:10px;
	}