@charset "utf-8";


/* =========================================
   FindParty Request UI (fpr- prefix)
   ========================================= */

.fpr-detail-container{
    max-width: 450px;
    margin: 0 auto;
}
.fpr-pay-sub{ font-size:13px; }
.fpr-input{ font-size:16px; }
.fpr-service-logo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fpr-info-banner{
    background: linear-gradient(135deg, #DFEDFF 0%, #FFE3FA 100%);
    border: 1px solid rgba(55,114,255,0.15);
    border-radius: 14px;
    padding: 18px 25px;
    margin: 30px 0 0;
}
.fpr-dot{
    width:10px; height:10px; border-radius:50%;
    background: radial-gradient(circle at 30% 30%, #6aa4ff 0%, #3772ff 70%);
    margin-top:5px; flex:0 0 auto;
}

.fpr-info-banner2{
    background: linear-gradient(135deg, #ffdfdf 0%, #e6ffe3 100%);
    border: 1px solid rgba(55,114,255,0.15);
    border-radius: 14px;
    padding: 18px 25px;
    margin: 30px 0 0;
}
.fpr-dot2{
    width:10px; height:10px; border-radius:50%;
    background: radial-gradient(circle at 30% 30%, #ffb76a 0%, #d16517 70%);
    margin-top:5px; flex:0 0 auto;
}

.fpr-info-list{ list-style:none; margin:0; padding:0; display:flex; flex-direction:column; gap:8px; }
.fpr-info-list li{ display:flex; align-items:flex-start; gap:10px; color:#222; font-size:15px; line-height:1.55; }


.fpr-section{ margin: 55px 0 0; font-size: 15px; }
.fpr-section-header{
    display:flex; align-items:center; justify-content:space-between;
    margin: 0 0 15px;
}
.fpr-title{ font-size:17px; font-weight:700; color:#111; margin:0; letter-spacing:-0.02em; }
.fpr-summary{ display:flex; align-items:center; gap:5px; }
.fpr-count{ font-size:14px; color:#666; }
.fpr-price{ font-size:14px; font-weight:800; color:#ff3b30; margin-right: 5px;}

.fpr-service-grid{ display:flex; flex-direction:column; gap:10px; }
.fpr-service-card{
    display:flex;
    align-items:center;
    gap:10px;
    border: 1.5px solid #d7d7d7;
    border-radius: 14px;
    background:#f8f8f8;
    padding: 14px 25px 14px 22px;
    cursor:pointer;
    transition: all .18s ease;
    position:relative;
}
.fpr-service-card:hover{ border-color:#d5d5d5; box-shadow: 0 6px 18px rgba(0,0,0,0.06); transform: translateY(-1px); }
.fpr-service-card.fpr-selected{
    border-color:#ff3b30;
    background:#fff;
    box-shadow: 0 10px 26px rgba(255,59,48,0.12);
}

.fpr-service-input{ position:absolute; opacity:0; pointer-events:none; }
.fpr-service-check{
    width:22px; height:22px; border-radius:50%;
    border:2px solid #d0d0d0;
    display:inline-flex; align-items:center; justify-content:center;
    flex:0 0 auto;
    background:#fff;
    transition: all .18s ease;
}
.fpr-service-card.fpr-selected .fpr-service-check{
    border-color:#ff3b30;
    background:#ff3b30;
}
.fpr-service-card.fpr-selected .fpr-service-check::after{
    content:'✓';
    color:#fff; font-size:13px; font-weight:800; line-height:1;
}

.fpr-service-logo{
    width: 40px;
    height: 40px;
    margin-left:6px;
    margin-right:5px;
    border-radius: 15px;
    background:#f6f7f9;
    display:flex; align-items:center; justify-content:center;
    overflow:hidden;
    flex:0 0 auto;
    border:1px solid #eee;
}

.fpr-service-name{ font-size:16px; font-weight:700; color:#111; letter-spacing:-0.02em; }
.fpr-service-meta{ flex:1; display:flex; align-items:center; gap:6px; }
.fpr-using-badge{
    font-size:12px; font-weight:600; color:#3772ff;
    padding:2px 8px; border-radius:4px;
    background:rgba(55,114,255,0.1);
}
.fpr-matching-badge{
    font-size:12px; font-weight:600; color:#00c4b3;
    padding:2px 8px; border-radius:4px;
    background:rgba(0,196,179,0.1);
}
.fpr-service-help{
    width:18px; height:18px; border-radius:50%;
    border:1px solid #d8d8d8;
    display:inline-flex; align-items:center; justify-content:center;
    color:#888; font-size:12px; font-weight:800;
    background:#fff;
}

.fpr-service-price{ display:flex; align-items:center; }
.fpr-service-price del{ font-size:12px; color:#aaa; }
.fpr-service-price b{ font-size:16px; color:#111; width:85px; text-align:right; }

.fpr-service-help{
    width:18px; height:18px; border-radius:50%;
    border:1px solid #d8d8d8;
    display:inline-flex; align-items:center; justify-content:center;
    color:#888; font-size:12px; font-weight:800;
    background:#fff;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}

/* 말풍선(tooltip) */
.fpr-tooltip{
    position: fixed;
    z-index: 9999;
    max-width: 160px;
    padding: 10px 12px;
    border-radius: 10px;
    background: rgba(17,17,17,0.92);
    color: #fff;
    font-size: 12px;
    line-height: 1.4;
    box-shadow: 0 10px 26px rgba(0,0,0,0.25);
    opacity: 0;
    visibility: hidden;
    transform: translateY(6px);
    transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
}
.fpr-tooltip.show{
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


.fpr-del{
    text-decoration: line-through;
    color: #333;
}
.fpr-underline{
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.fpr-note{ margin:8px 5px 0; font-size: 13px; color:#555; line-height: 1.7; }

.fpr-profile-input-row{
    background: #fff;
    border: 1px solid #d7d7d7;
    border-radius: 14px;
    padding: 15px;
}
.fpr-profile-input-row .fpr-input{
    border: none;
    background: transparent;
    width: 90%;
    padding: 8px 8px;
    border-radius: 12px;
    box-shadow: none;
}
.fpr-profile-input-row .fpr-input::placeholder{
    color: #a4a4a4;
}
.fpr-profile-input-row .fpr-input:focus{
    outline: none;
    box-shadow: none;
}
.fpr-input:focus{ border-color:#3772ff; box-shadow: 0 0 0 4px rgba(55,114,255,0.10); }

.fpr-pay-box{
    background:#fff;
    border:1px solid #d7d7d7;
    border-radius: 16px;
    padding: 25px;
}
.fpr-pay-row-detail{
    display:flex; align-items:flex-start; justify-content:space-between;
    gap: 10px;
    font-size: 15px;
    color:#333;
}
.fpr-pay-row{
    display:flex; align-items:flex-start; justify-content:space-between;
    gap: 10px;
    padding: 9px 2px;
    font-size: 15px;
    color:#333;
}
.fpr-pay-row-note{
    justify-content: center;
    text-align: center;
    padding: 2px 2px 10px;
    font-size: 13px;
    color: #16a34a; /* green */
}

.fpr-pay-label{ flex:1; color:#333; }
.fpr-pay-value{ flex:0 0 auto; font-weight:500; color:#111; }
.fpr-discount{ color:#3772ff; }
.fpr-pay-divider{ height:1px; background:#ededed; margin: 10px 0; }
.fpr-pay-total{
    display:flex; align-items:center; justify-content:space-between;
    margin-top: 8px;
    padding-top: 15px;
    border-top: 1px dashed #bbbbbb;
    font-size: 19px;
    font-weight: 600;
    color:#000;
}
.fpr-mini-btn{
    margin-left:8px;
    background:#4f4f4f;
    border:0;
    border-radius: 30px;
    padding: 4px 12px;
    font-size: 11px;
    font-weight:500;
    color: #fff;
    cursor:pointer;
}
.fpr-mini-btn:hover{ background:#333; }

.fpr-link{ color:#3772ff; font-weight:500; margin-left:10px; }

.fpr-paymethod{
    display:flex; align-items:center; justify-content:space-between; gap:12px;
    background:#fff;
    border:1px solid #d7d7d7;
    border-radius: 16px;
    padding: 14px 14px 14px 25px;
}
.fpr-paymethod-left{ display:flex; align-items:center; gap:15px; flex-wrap:wrap; }
.fpr-paymethod-name{ font-weight:800; color:#111; font-size:16px; }
.fpr-paymethod-card{ font-weight:400; color:#111; font-size:16px; }
.fpr-paymethod-num{ color:#3772ff; font-size:16px; }

.fpr-btn-gray{
    border: 0;
    background:#4f4f4f;
    color:#fff;
    font-size:14px;
    font-weight:600;
    padding: 8px 16px;
    border-radius: 12px;
    cursor:pointer;
}
.fpr-btn-gray:hover{ background:#333; }

.fpr-checklist-box{
    background:#fff;
    border:1px solid #d7d7d7;
    border-radius: 16px;
    padding: 15px 25px;
}
.fpr-checklist{ margin:0; color:#333; font-size: 14px; line-height:1.7; }
.fpr-checklist li{ margin: 6px 0; }

.fpr-agree{
    display:flex;
    gap:10px;
    margin: 35px;
    font-size: 16px;
    font-weight: 500;
    color:#333;
    cursor: pointer;
    user-select:none;
    align-items:center;
    justify-content: center;
}
.fpr-agree input{ position:absolute; opacity:0; pointer-events:none; }
.fpr-agree-ui{
    width:18px; height:18px; border-radius:6px;
    border: 1.5px solid #cfcfcf;
    background:#fff;
    display:inline-flex; align-items:center; justify-content:center;
    flex:0 0 auto;
}
.fpr-agree input:checked + .fpr-agree-ui{
    background:#3772ff;
    border-color:#3772ff;
}
.fpr-agree input:checked + .fpr-agree-ui::after{
    content:'✓';
    color: #fff;
    font-size: 12px;
    font-weight: 900;
}


/* ============================================
    하단 버튼
============================================ */
.fpr-bottom-actions {
    position: sticky;
    bottom: 0;
    display: flex;
    background: #fff;
    gap: 12px;
    padding: 16px 0;
    border-top: 1px solid #e5e8eb;
    z-index: 100;
    max-width: 100%;
}

/* 팝업 열릴 때 하단 버튼 딤드 처리 */
body.modal-open .fpr-bottom-actions {
    position: sticky;
    z-index: 1050;
}
body.modal-open .fpr-bottom-actions::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    border-radius: 8px;
}

.fpr-btn-back {
    flex: 1;
    padding: 16px;
    background: #e1e1e1;
    color: #666;
    border: 1px solid #cbcbcb;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.fpr-btn-back:hover {
    background: #e5e8eb;
    transform: translateY(-2px);
}

.fpr-btn-submit {
    flex: 3;
    padding: 16px;
    background: #333;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.fpr-btn-submit:hover {
    background: #000;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px){
    .fpr-detail-container {
        max-width: 90%;
    }
    .ytd-detail-container {
        max-width: 90%;
    }
    .fpr-info-banner{
        padding: 16px;
        margin: 10px 0;
    }

    .fpr-service-price{
        display:flex;
        flex-direction:column;
        align-items:flex-end;
        gap:2px;
    }
    .fpr-service-price del{ font-size:12px; color:#aaa; }
    .fpr-service-price b{ font-size:14px; color:#111; width:70px; text-align:right; }


    .fpr-bottom-actions {
        padding: 16px 0 !important;
        flex-direction: row !important;  /* 가로 배치 */
        gap: 10px !important;
        /* 초기 숨김 */
        opacity: 0 !important;
        transform: translateY(100%) !important;
        transition: opacity 0.3s ease, transform 0.3s ease !important;
    }

    /* 스크롤 후 표시 */
    .fpr-bottom-actions {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }

    .fpr-btn-back {
        flex: 1 !important;
        padding: 14px 12px !important;
        font-size: 14px !important;
    }

    .fpr-btn-submit {
        flex: 3 !important;
        padding: 14px 12px !important;
        font-size: 14px !important;
    }

    /* 모바일에서는 터치 시 말풍선 나타남 */
    .fpr-btn-submit:active {
        transform: translateY(0) !important;
    }
}

@media (max-width: 480px) {
    .ytd-detail-container {
        max-width: 90%;
    }
    .fpr-detail-container {
        max-width: 90%;
    }
    .fpr-info-list{ gap:4px; }
    .fpr-info-list li{ font-size:12px; line-height:1.55; }
    .fpr-info-banner{ margin: 0; }
    .fpr-section{ margin: 40px 0 0; }
    .fpr-note{ font-size: 12px; }

    .fpr-bottom-actions {
        padding: 16px 0 !important;
        gap: 8px !important;
    }
    .fpr-btn-back,
    .fpr-btn-submit {
        padding: 12px 10px !important;
        font-size: 14px !important;
    }
    .fpr-service-logo{
        width: 30px;
        height: 30px;
        margin-left:0;
        margin-right:0;
        border-radius: 10px;
    }
    /* 모바일(480px 이하)에서는 원형 체크 UI만 숨김 */
    .fpr-service-check{ display: none; }

    .fpr-service-card{ padding: 14px 22px 14px 22px; }
    .fpr-pay-row-detail{ font-size: 13px; }
    .fpr-pay-row{ font-size: 13px; }
    .fpr-mini-btn{
        margin-left:6px;
        border-radius: 6px;
        padding: 3px 5px;
        font-size: 10px;
        font-weight:400;
    }

    .fpr-profile-input-row .fpr-input{ padding: 0 8px; }
    .fpr-pay-total{ font-size: 18px; }

    .fpr-paymethod{ padding: 14px 14px 14px 18px; }
    .fpr-paymethod-card{ font-weight:400; color:#111; font-size:14px; }
    .fpr-paymethod-name{ font-size:14px; }
    .fpr-paymethod-num{ font-size:14px; }

    .fpr-paymethod-left{ display:block; }


    .fpr-btn-gray{
        font-size: 12px;
        font-weight:400;
        padding: 8px 12px;
        width: 50px;
    }
    .fpr-agree{ font-size: 14px; }

    .fpr-checklist-box{ padding: 12px 20px; }
    .fpr-checklist{ font-size: 13px; }
    .fpr-checklist li{ margin: 6px 0; }
}

@media (max-width: 360px) {
    .fpr-btn-back,
    .fpr-btn-submit {
        padding: 15px 8px !important;
        font-size: 13px !important;
    }
}


/* =========================================
   V3 Party Type Select (v3- prefix)
   ========================================= */

/* 메인 래퍼 */
.v3-party-select-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

/* 파티 선택 컨테이너 */
.v3-party-select-container {
    background: #fff;
    border-radius: 24px;
    padding: 70px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    margin-bottom: 40px;
}

/* 타이틀 */
.v3-party-select-title {
    font-size: 22px;
    font-weight: 700;
    color: #111;
    text-align: center;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.v3-info-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    color: #666;
}


/* 파티 카드 그리드 */
.v3-party-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    align-items: start;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* 카드 래퍼 */
.v3-party-card-wrapper {
    display: flex;
    flex-direction: column;
}

/* 파티 카드 */
.v3-party-card {
    position: relative;
    border-radius: 16px;
    padding: 0;
    transition: all 0.3s ease;
    overflow: hidden;
}

.v3-verified-party {
    background: #EFF1F9;
    border: 2px solid #EFF1F9;
}

.v3-verified-party:hover {
    border-color: #C0D1FE;
    box-shadow: 0 4px 16px rgba(192, 209, 254, 0.3);
}

.v3-free-party {
    background: #E8F8E9;
    border: 2px solid #E8F8E9;
}

.v3-free-party:hover {
    border-color: #92DDA9;
    box-shadow: 0 4px 16px rgba(146, 221, 169, 0.3);
}

/* 카드 헤더 */
.v3-party-card-header {
    padding: 24px 24px 20px;
}

/* 배지 */
.v3-party-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 12px;
    margin-bottom: 12px;
}

.v3-badge-verified {
    background: #C0D1FE;
    color: #005AD0;
}

.v3-badge-free {
    background: #92DDA9;
    color: #008D1A;
}

/* 카드 타이틀 */
.v3-party-card-title {
    font-size: 24px;
    font-weight: 800;
    color: #111;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

/* 카드 설명 */
.v3-party-card-desc {
    font-size: 14px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* 데스크톱 전용 줄바꿈 (768px 이상에서만 표시) */
.v3-br-desktop {
    display: none;
}

@media (min-width: 769px) {
    .v3-br-desktop {
        display: inline;
    }
}

/* 카드 구분선 */
.v3-party-card-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 0 16px;
}

/* 특징 리스트 */
.v3-party-features {
    list-style: none;
    padding: 20px 24px;
    margin: 0;
}

.v3-party-features li {
    display: flex;
    align-items: flex-start;
    gap: 4px;
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin-bottom: 6px;
}

.v3-party-features li:last-child {
    margin-bottom: 0;
}

.v3-check-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    font-size: 14px;
    font-weight: 700;
    color: #111;
    flex-shrink: 0;
    margin-top: 2px;
}

/* 강조 텍스트 */
.v3-highlight {
    font-weight: 500;
}

.v3-highlight-verified {
    color: #005AD0;
}

.v3-highlight-free {
    color: #008D1A;
}

/* 개설하기 버튼 */
.v3-party-btn {
    display: block;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 14px 24px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-sizing: border-box;
}

/* 버튼 래퍼 */
.v3-party-btn-wrapper {
    padding: 0 24px 20px;
}

.v3-btn-verified {
    background: #C0D1FE;
    color: #000;
}

.v3-btn-verified:hover {
    background: #A8BFFC;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(192, 209, 254, 0.4);
}

.v3-btn-free {
    background: #92DDA9;
    color: #000;
}

.v3-btn-free:hover {
    background: #7DD094;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(146, 221, 169, 0.4);
}

/* 검증파티 도움말 */
.v3-party-help {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 14px;
    color: #333;
    padding: 15px 0 0 0;
}

.v3-more-btn {
    background: #f3f3f3;
    border: 1px solid #d0d0d0;
    border-radius: 6px;
    padding: 4px 12px;
    font-size: 12px;
    font-weight: 500;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-left: 12px;
}

.v3-more-btn:hover {
    background: #f5f5f5;
    border-color: #999;
}

/* 한눈에 비교 섹션 */
.v3-comparison-section {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 40px 120px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.v3-comparison-title {
    font-size: 20px;
    font-weight: 700;
    color: #111;
    margin: 0 0 20px 0;
    text-align: center;
}

.v3-comparison-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
}

.v3-comparison-table thead th {
    padding: 16px;
    font-size: 15px;
    font-weight: 700;
    text-align: center;
    background: #efefef;
    border-bottom: 2px solid #e5e5e5;
}

.v3-comparison-table thead th:first-child {
    width: 26%;
}

.v3-th-verified {
    color: #005AD0;
}

.v3-th-free {
    color: #008D1A;
}

.v3-comparison-table tbody td {
    padding: 14px 16px;
    font-size: 14px;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
}

.v3-comparison-table tbody tr:last-child td {
    border-bottom: none;
}

.v3-td-label {
    font-weight: 600;
    color: #333;
    text-align: left;
}

.v3-td-verified {
    color: #005AD0;
    font-weight: 500;
}

.v3-td-free {
    color: #008D1A;
    font-weight: 500;
}

/* =========================================
   V3 Modal Base (v3- prefix)
   ========================================= */

.v3-modal {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 9999;
}

.v3-modal.v3-modal-active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.v3-modal-overlay {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.55);
    z-index: 1;
}

/* ── 모달 컨테이너 ── */
.v3-modal-container {
    position: relative;
    display: flex;
    flex-direction: row;
    width: 92%;
    max-width: 960px;
    height: 80vh;
    max-height: 80vh;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.28);
}

/* =========================================
   V3 Modal Sidebar (v3- prefix)
   ========================================= */

.v3-modal-sidebar {
    min-width: 270px;
    padding: 36px 28px 32px;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    flex-shrink: 0;
}

.v3-modal-sidebar-title {
    font-size: 21px;
    font-weight: 800;
    color: #111;
    line-height: 1.45;
    margin-bottom: 25px;
}

.v3-modal-sidebar-desc {
    font-size: 13px;
    color: #888;
    line-height: 1.6;
    margin: 0 0 28px 0;
}

/* 스텝 리스트 */
.v3-modal-steps {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    flex-shrink: 0;
}

.v3-step-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 12px;
    border-radius: 10px;
    margin-bottom: 4px;
    cursor: default;
    transition: background 0.2s;
}

.v3-step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #e4e4e4;
    color: #aaa;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.25s ease;
}

.v3-step-text {
    font-size: 15px;
    color: #aaa;
    font-weight: 400;
    line-height: 1.4;
    transition: all 0.25s ease;
}

.v3-step-item.v3-step-active {
    background: #eaeffb;
}

.v3-step-item.v3-step-active .v3-step-number {
    background: #4169E1;
    color: #fff;
}

.v3-step-item.v3-step-active .v3-step-text {
    color: #111;
    font-weight: 700;
}

.v3-step-item.v3-step-done .v3-step-number {
    background: #dce4fb;
    color: #4169E1;
}

.v3-step-item.v3-step-done .v3-step-text {
    color: #888;
    font-weight: 500;
}

/* 사이드바 인포박스 */
.v3-modal-info-box {
    margin-top: auto;
    background: #f7f8fc;
    border-radius: 12px;
    padding: 16px 18px;
    border: 1px solid #e5e8f5;
}

.v3-info-title {
    font-size: 16px;
    font-weight: 700;
    color: #111;
    margin: 0 0 10px 0;
}

.v3-info-text {
    font-size: 13px;
    color: #666;
    line-height: 1.65;
    margin: 0 0 14px 0;
}

.v3-info-text:last-child { margin-bottom: 0; }

/* =========================================
   V3 Modal Content Area (v3- prefix)
   ========================================= */

.v3-modal-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #EFF1F9;
    min-width: 0;
}

/* 스텝 패널 */
.v3-modal-step {
    display: none;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
}

.v3-modal-step.v3-modal-step-active {
    display: flex;
}

/* 스텝 스크롤 본문 */
.v3-step-scroll-body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* 모달 헤더 */
.v3-modal-header {
    padding: 28px 32px 16px;
}

.v3-modal-badge {
    display: inline-block;
    background: #333;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 14px;
    letter-spacing: 0.02em;
}

.v3-modal-title {
    font-size: 22px;
    font-weight: 800;
    color: #111;
    line-height: 1.4;
}

.v3-modal-subtitle {
    font-size: 13px;
    color: #777;
    line-height: 1.6;
    margin: 4px 0 0 0;
}

/* 모달 본문 */
.v3-modal-body {
    padding: 5px 32px 24px;
}

.v3-modal-divider {
    height: 1px;
    /*background: #e2e4ee;*/
    margin: 8px 32px 24px;
}

/* =========================================
   V3 STEP1 - 동의 항목 (v3- prefix)
   ========================================= */

.v3-section {
    margin-bottom: 24px;
}

.v3-section-header {
    margin-bottom: 12px;
}

.v3-checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.v3-checkbox-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s;
}

.v3-checkbox-item:hover {
    border-color: #bbb;
}

.v3-checkbox-item input[type="radio"],
.v3-checkbox-item input[type="checkbox"] {
    width: 17px;
    height: 17px;
    margin-top: 3px;
    flex-shrink: 0;
    cursor: pointer;
    accent-color: #4169E1;
}

.v3-checkbox-text {
    font-size: 13px;
    color: #333;
    line-height: 1.65;
}

.v3-text-bold {
    font-weight: 700;
    color: #111;
}

.v3-item-checked {
    background: #f0f4ff;
    border-color: #c5d0f8;
}

/* 최종 동의 체크 */
.v3-final-check {
    margin-top: 20px;
    padding: 16px 20px;
    background: #fff;
    border: 2px solid #4169E1;
    border-radius: 12px;
    text-align: center;
}

.v3-final-check label {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: #111;
    cursor: pointer;
}

.v3-final-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #4169E1;
}

/* =========================================
   V3 STEP2 - 폼 요소 (v3- prefix)
   ========================================= */

/* 카드형 섹션 래퍼 */
.v3-form-card {
    background: #fff;
    border-radius: 14px;
    padding: 20px 22px;
    margin-bottom: 16px;
    border: 1px solid #e8eaf0;
}

.v3-form-group {
    margin-bottom: 16px;
}

.v3-form-group:last-child {
    margin-bottom: 0;
}

.v3-form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #555;
    margin-bottom: 7px;
}

.v3-form-input,
.v3-form-select,
.v3-form-textarea {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #dde0e8;
    border-radius: 10px;
    font-size: 14px;
    color: #111;
    background: #fff;
    transition: all 0.2s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.v3-form-input:focus,
.v3-form-select:focus,
.v3-form-textarea:focus {
    outline: none;
    border-color: #4169E1;
    box-shadow: 0 0 0 3px rgba(65,105,225,0.1);
}

.v3-form-select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.v3-form-textarea {
    min-height: 90px;
    resize: vertical;
    line-height: 1.6;
}

.v3-textarea-large {
    min-height: 160px;
}

.v3-form-hint {
    font-size: 13px;
    color: #0443ff;
    margin-top: 6px;
    margin-left: 6px;
}

.v3-form-note {
    font-size: 12px;
    color: #555;
    margin: 2px 6px;
}

서비스 선택 행 (드롭다운 + 옵션입력 나란히)
.v3-service-select-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 16px;
}

/* 공유방식 라디오 */
.v3-radio-group {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.v3-radio-item {
    display: flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border: 1.5px solid #dde0e8;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    background: #fff;
}

.v3-radio-item:hover {
    border-color: #4169E1;
}

.v3-radio-item input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #4169E1;
}

.v3-radio-item span {
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

/* 아이디/비밀번호 2열 */
.v3-form-row {
    display: grid;
    gap: 12px;
}

.v3-row-2col {
    grid-template-columns: repeat(2, 1fr);
}

/* 추가정보 섹션 */
.v3-info-section {
    margin-top: 16px;
    padding: 16px 18px;
    background: #f8f9fc;
    border: 1px solid #e8eaf0;
    border-radius: 12px;
}

.v3-info-question {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #333;
    margin: 12px 0 10px 0;
}

/*!* 추가 서비스 버튼 *!*/
/*.v3-add-service-row {*/
/*    display: flex;*/
/*    align-items: center;*/
/*    margin-top: 16px;*/

/*    padding: 12px 16px;*/
/*    background: #f8f9fc;*/
/*    border-radius: 10px;*/
/*    border: 1px solid #e8eaf0;*/
/*}*/

.v3-add-service-label {
    font-size: 15px;
    font-weight: 500;
    color: #333;

    align-items: center;
    gap: 6px;
}

.v3-add-service-btn {
    background: #fff;
    border: 1.5px solid #4169E1;
    color: #4169E1;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.2s;
    min-width: 100px;
}

.v3-add-service-btn:hover {
    background: #4169E1;
    color: #fff;
}

/* 날짜 입력 */
.v3-date-input-wrapper {
    display: flex;
    align-items: center;
    gap: 14px;
}

.v3-checkbox-inline {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    white-space: nowrap;
}

.v3-checkbox-inline input[type="checkbox"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #4169E1;
}

/* 결과 박스 (이용료 표시) */
.v3-result-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 11px 14px;
    background: #eef1fb;
    border: 1.5px solid #c5d0f8;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    color: #3050c0;
    min-height: 44px;
    box-sizing: border-box;
}

/* 공유자리수 +-버튼 */
.v3-number-input {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid #dde0e8;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.v3-num-btn {
    width: 40px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f5f6fb;
    font-size: 18px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    transition: background 0.15s;
    flex-shrink: 0;
}

.v3-num-btn:hover {
    background: #e8eaf0;
}

.v3-number-input .v3-form-input {
    text-align: center;
    border: none;
    border-radius: 0;
    border-left: 1px solid #dde0e8;
    border-right: 1px solid #dde0e8;
    box-shadow: none;
    font-weight: 600;
    min-width: 0;
}

.v3-number-input .v3-form-input:focus {
    box-shadow: none;
    border-color: #dde0e8;
}

/* 정산예정액 박스 */
.v3-settlement-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 30px;
    background: #3538CD;
    border-radius: 12px;
    margin: 16px 0 16px;
}

.v3-settlement-label {
    font-size: 16px;
    font-weight: 400;
    color: rgba(255,255,255,1);
}

.v3-settlement-amount {
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

/* =========================================
   V3 STEP3 - 모집공고 (v3- prefix)
   ========================================= */

.v3-text-highlight {
    color: #e91e63;
    font-weight: 700;
}

/* 금지사항 태그 리스트 */
.v3-tag-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 12px;
}

.v3-tag-item {
    position: relative;
}

.v3-tag-input {
    width: 100%;
    padding: 13px 16px;
    border: 1.5px solid #dde0e8;
    border-radius: 10px;
    font-size: 16px;
    color: #111;
    background: #fff;
    transition: all 0.2s ease;
    box-sizing: border-box;
    font-family: inherit;
}

.v3-tag-input:focus {
    outline: none;
    border-color: #4169E1;
    box-shadow: 0 0 0 3px rgba(65,105,225,0.1);
}

.v3-tag-item-placeholder {
    height: 46px;
    border: 1.5px dashed #d0d4e0;
    border-radius: 10px;
    background: #fafbfc;
}

/* =========================================
   V3 간단한 모달 (v3- prefix)
   ========================================= */

.v3-modal-simple {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    z-index: 2;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.v3-modal-simple-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 26px;
    border-bottom: 1px solid #e8e8e8;
}

.v3-modal-simple-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.v3-modal-close {
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 20px;
    color: #666;
    cursor: pointer;
    transition: all 0.2s ease;
}

.v3-modal-close:hover {
    background: #e0e0e0;
    color: #333;
}

.v3-modal-simple-body {
    padding: 26px;
}

.v3-modal-simple-body p {
    font-size: 14px;
    color: #555;
    line-height: 1.65;
    margin: 0 0 10px 0;
}

.v3-modal-simple-footer {
    padding: 18px 26px;
    background: #f8f8f8;
    text-align: right;
}

/* =========================================
   V3 Modal Footer - 하단 버튼 (v3- prefix)
   ========================================= */

.v3-modal-footer {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background: #fff;
    border-top: 1px solid #e5e5e5;
    flex-shrink: 0;
}

.v3-modal-btn {
    flex: 1;
    padding: 13px 16px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    white-space: nowrap;
    text-align: center;
}

/* 미리보기 - 파란 계열 */
.v3-btn-preview {
    background: #4169E1;
    color: #fff;
    border: none;
}

.v3-btn-preview:hover {
    background: #3058d0;
}

/* 이전 버튼 */
.v3-btn-light {
    background: #dddfe5;
    color: #555;
    border: 1px solid #e0e0e0;
}

.v3-btn-light:hover {
    background: #e3e3e3;
}

/* 다음/완료 버튼 */
.v3-btn-primary {
    background: #111;
    color: #fff;
}

.v3-btn-primary:hover {
    background: #333;
}

.v3-btn-primary:disabled,
.v3-btn-primary.disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* =========================================
   V3 Mobile Step Bar (v3- prefix)
   ========================================= */

.v3-mobile-step-bar {
    display: none;
}

/* =========================================
   V3 반응형 (v3- prefix)
   ========================================= */

/* 태블릿 (769px ~ 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    .v3-modal-container {
        width: 94%;
        height: 88vh;
        max-height: 88vh;
    }

    .v3-modal-sidebar {
        width: 240px;
        min-width: 240px;
        padding: 28px 20px 24px;
    }

    .v3-modal-sidebar-title {
        font-size: 18px;
    }

    .v3-modal-header {
        padding: 24px 24px 14px;
    }

    .v3-modal-body {
        padding: 14px 24px 20px;
    }

    .v3-modal-divider {
        margin: 8px 24px 20px;
    }

    .v3-modal-footer {
        padding: 12px 20px;
    }
}

/* 모바일 (768px 이하) */
@media (max-width: 768px) {

    .v3-party-select-container { padding: 28px 20px; }
    .v3-party-cards { grid-template-columns: 1fr; gap: 24px; }
    .v3-party-card-wrapper { gap: 12px; }
    .v3-party-help { padding: 8px 0 0 0; }
    .v3-comparison-section { padding: 24px 16px; }
    .v3-comparison-table thead th,
    .v3-comparison-table tbody td { padding: 12px 8px; font-size: 13px; }

    /* 모달 - 전체화면 */
    .v3-modal-container {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
        border-radius: 0;
        flex-direction: column;
    }

    .v3-modal-sidebar {
        display: none;
    }

    /* 모바일 스텝바 */
    .v3-mobile-step-bar {
        display: flex;
        align-items: center;
        padding: 20px 20px 6px;
        background: #fff;
        flex-shrink: 0;
        border-bottom: 1px solid #ebebeb;
        gap: 0;
    }

    .v3-mobile-step-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        flex: 1;
        padding-bottom: 12px;
        position: relative;
        gap: 6px;
    }

    .v3-mobile-step-item:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 13px;
        left: 50%;
        width: 100%;
        height: 2px;
        background: #e0e0e0;
        z-index: 0;
    }

    .v3-mobile-step-item.v3-step-done::after,
    .v3-mobile-step-item.v3-step-active::after {
        background: #4169E1;
    }

    .v3-mobile-step-num {
        width: 26px;
        height: 26px;
        border-radius: 50%;
        background: #e0e0e0;
        color: #aaa;
        font-size: 12px;
        font-weight: 700;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        z-index: 1;
        transition: all 0.25s ease;
    }

    .v3-mobile-step-item.v3-step-active .v3-mobile-step-num {
        background: #4169E1;
        color: #fff;
    }

    .v3-mobile-step-item.v3-step-done .v3-mobile-step-num {
        background: #c7d4f8;
        color: #4169E1;
    }

    .v3-mobile-step-label {
        font-size: 10px;
        color: #bbb;
        font-weight: 500;
        text-align: center;
        line-height: 1.3;
        white-space: nowrap;
    }

    .v3-mobile-step-item.v3-step-active .v3-mobile-step-label {
        color: #4169E1;
        font-weight: 700;
    }

    .v3-mobile-step-item.v3-step-done .v3-mobile-step-label {
        color: #999;
    }

    .v3-modal-content { flex: 1; overflow: hidden; }

    .v3-modal-header { padding: 18px 18px 12px; }
    .v3-modal-title { font-size: 19px; }
    .v3-modal-body { padding: 14px 18px 20px; }
    .v3-modal-divider { margin: 8px 18px 18px; }
    .v3-modal-footer { padding: 10px 14px; gap: 8px; }
    .v3-modal-btn { padding: 12px 10px; font-size: 13px; }

    .v3-form-row { grid-template-columns: 1fr; }
    .v3-service-select-row { grid-template-columns: 1fr; }
    .v3-radio-group { flex-direction: column; }
    .v3-settlement-box { flex-direction: column; gap: 6px; text-align: center; }

    .v3-info-question { font-size: 15px; }
}

/* 소형 모바일 (480px 이하) */
@media (max-width: 480px) {

    .v3-party-select-container { padding: 20px 16px; border-radius: 16px; }
    .v3-party-select-title { font-size: 16px; margin-bottom: 20px; }
    .v3-party-cards { gap: 20px; }
    .v3-party-card-wrapper { gap: 10px; }
    .v3-party-card { border-radius: 12px; }
    .v3-party-card-header { padding: 20px 16px 16px; }
    .v3-party-card-title { font-size: 20px; margin-bottom: 8px; }
    .v3-party-card-desc { font-size: 13px; line-height: 1.5; }
    .v3-party-card-divider { margin: 0 12px; }
    .v3-party-features { padding: 16px; }
    .v3-party-features li { font-size: 13px; gap: 4px; margin-bottom: 8px; line-height: 1.5; }
    .v3-check-icon { width: 16px; height: 16px; font-size: 12px; }
    .v3-party-btn-wrapper { padding: 0 16px 16px; }
    .v3-party-btn { padding: 12px 20px; font-size: 15px; }
    .v3-party-help { padding: 6px 0 0 0; font-size: 12px; }
    .v3-more-btn { padding: 3px 10px; font-size: 11px; min-width: 76px; }
    .v3-comparison-section { padding: 20px 12px; border-radius: 12px; }
    .v3-comparison-title { font-size: 16px; margin-bottom: 16px; }
    .v3-comparison-table { border-radius: 8px; }
    .v3-comparison-table thead th,
    .v3-comparison-table tbody td { padding: 10px 6px; font-size: 12px; }
    .v3-td-label { font-size: 12px; }

    .v3-modal-sidebar-title { font-size: 17px; }
    .v3-modal-header { padding: 25px 14px 10px; }
    .v3-modal-title { font-size: 16px; }
    .v3-modal-body { padding: 12px 14px 16px; }
    .v3-modal-divider { margin: 6px 14px 16px; }
    .v3-modal-footer { padding: 10px 12px; gap: 6px; }
    .v3-modal-btn { padding: 11px 8px; font-size: 13px; }
    .v3-checkbox-item { padding: 10px 12px; }
    .v3-checkbox-text { font-size: 12px; }
    .v3-settlement-amount { font-size: 20px; }

    .v3-info-question { font-size: 14px; }
}

/* =========================================
   V3 STEP1 - 세련된 동의 체크 UI (v3- prefix)
   ========================================= */

.v3-section-title {
    font-size: 13px;
    font-weight: 500;
    color: #111;
    margin: 0 0 10px 0;
    display: flex;
    align-items: center;
    gap: 6px;
}

.v3-dot {
    font-size: 12px;
    line-height: 1;
}

.v3-agree-group {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.v3-agree-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px 14px;
    background: #fff;
    border: 1.5px solid #e8e8e8;
    border-radius: 10px;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    position: relative;
}

.v3-agree-item:hover {
    border-color: #c5d0f8;
    background: #fafbff;
}

.v3-agree-item.v3-agree-checked {
    border-color: #4169E1;
}

/* 실제 checkbox 숨김 - label 클릭으로 제어 */
.v3-agree-chk {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    top: 0;
    left: 0;
}

/* 커스텀 체크 아이콘 박스 */
.v3-agree-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    border-radius: 50%;
    border: 2px solid #d0d0d0;
    background: #fff;
    margin-top: 1px;
    transition: all 0.2s ease;
}

.v3-agree-icon svg {
    width: 10px;
    height: 10px;
    color: transparent;
    transition: color 0.15s ease;
}

.v3-agree-item.v3-agree-checked .v3-agree-icon {
    background: #4169E1;
    border-color: #4169E1;
}

.v3-agree-item.v3-agree-checked .v3-agree-icon svg {
    color: #fff;
}

.v3-agree-text {
    font-size: 15px;
    color: #444;
    line-height: 1.65;
    flex: 1;
}

.v3-agree-text strong {
    font-weight: 700;
    color: #111;
}

.v3-agree-item.v3-agree-checked .v3-agree-text {
    color: #000;
}

/* ── 컨텐츠 하단 전체동의 행 ── */
.v3-all-agree-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 24px;
    padding: 14px 4px 8px;
    cursor: pointer;
    user-select: none;
}

.v3-all-agree-row:hover .v3-all-agree-icon-wrap {
    border-color: #4169E1;
}

.v3-all-agree-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #aac;
    background: #fff;
    transition: all 0.2s ease;
    flex-shrink: 0;
}

.v3-all-agree-icon-wrap svg {
    width: 11px;
    height: 11px;
    color: transparent;
    transition: color 0.15s ease;
}

.v3-all-agree-icon-wrap.v3-all-agree-on {
    background: #4169E1;
    border-color: #4169E1;
}

.v3-all-agree-icon-wrap.v3-all-agree-on svg {
    color: #fff;
}

.v3-all-agree-text {
    font-size: 16px;
    font-weight: 500;
    color: #4169E1;
    line-height: 1.4;
}

/* 다음버튼 비활성화 */
#step1NextBtn:disabled {
    background: #c7c9cd;
    color: #fff;
    cursor: not-allowed;
}

/* =========================================
   V3 STEP2 - Float Label Input (v3- prefix)
   ========================================= */

/* 플로팅 라벨 컨테이너 */
.v3-float-box {
    position: relative;
    background: #fff;
    border: 1.5px solid #dde0e8;
    border-radius: 10px;
    padding: 14px 14px 12px;
    transition: border-color 0.2s;
    margin-bottom: 10px;
}

.v3-float-box:focus-within {
    border-color: #4169E1;
    box-shadow: 0 0 0 3px rgba(65,105,225,0.1);
}

.v3-float-label {
    display: block;
    font-size: 12px;
    font-weight: 400;
    color: #333;
    letter-spacing: 0.02em;
    margin-bottom: 6px;
    line-height: 1;
}

.v3-float-input {
    display: block;
    width: 100%;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 700;
    color: #000;
    background: transparent;
    padding: 0;
    font-family: inherit;
    box-sizing: border-box;
}

.v3-float-input::placeholder {
    color: #bbb;
    font-size: 15px;
    font-weight: 400;
}

/* select 특별처리 */
.v3-float-select .v3-float-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 4px center;
    padding-right: 20px;
    cursor: pointer;
    outline: none;
}

/* select focus 시 내부 강조선 제거 */
.v3-float-select .v3-float-input:focus {
    outline: none;
    box-shadow: none;
}

/* textarea float */
.v3-float-textarea-box {
    margin-bottom: 0;
}

.v3-float-textarea {
    min-height: 80px;
    resize: vertical;
    line-height: 1.6;
    width: 100%;
    box-sizing: border-box;
}

.v3-float-textarea-long {
    display: flex;
    flex-direction: column;
}

.v3-float-textarea-long .v3-float-textarea {
    flex: 1;
    min-height: 140px;
    resize: vertical;
    line-height: 1.6;
}

/* 결과값 박스 (float 스타일 통일) */
.v3-float-result {
    background: #eef1fb;
    border-color: #c5d0f8;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.v3-float-result .v3-float-label {
    margin-bottom: 0;
}

.v3-float-result-val {
    font-size: 16px;
    font-weight: 700;
    color: #3050c0;
    line-height: 1.4;
    margin-top: 10px;
}

/* 날짜 + 체크박스 가로 배치 */
.v3-float-inner-row {
    display: flex;
    align-items: center;
    gap: 14px;
}

.v3-float-inner-row .v3-float-input {
    flex: 1;
}

/* 서비스 선택 2열 그리드 */
.v3-service-select-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 4px;
}

.v3-service-select-row .v3-float-box {
    margin-bottom: 0;
}

/* 자릿수 입력 float 안에 number-input */
.v3-float-box .v3-number-input {
    border: none;
    border-radius: 0;
    background: transparent;
    margin: 0;
    padding: 0;
}

.v3-float-box .v3-num-btn {
    background: transparent;
    height: 28px;
    padding: 0 6px;
}

.v3-float-box .v3-number-input .v3-float-input {
    border: none !important;
    text-align: center;
}

@media (max-width: 768px) {
    .v3-service-select-row {
        grid-template-columns: 1fr;
    }

    .v3-all-agree-text {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .v3-all-agree-text {
        font-size: 14px;
    }

    .v3-agree-item {
        padding: 13px 20px;
    }

    .v3-agree-text {
        font-size: 14px;
    }
}

/* =========================================
   V3 STEP2 추가 스타일 (v3- prefix)
   ========================================= */

/* 서비스 세트 카드 */
.v3-service-set {
    background: #fff;
    border: 1.5px solid #e2e4ee;
    border-radius: 14px;
    padding: 18px 18px 14px;
    margin-bottom: 14px;
    position: relative;
}

.v3-service-set-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.v3-service-set-num {
    font-size: 12px;
    font-weight: 700;
    color: #4169E1;
    background: #eef2ff;
    padding: 3px 10px;
    border-radius: 20px;
    letter-spacing: 0.02em;
}

.v3-service-set-remove {
    width: 26px;
    height: 26px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 16px;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: all 0.2s;
}

.v3-service-set-remove:hover {
    background: #fee2e2;
    color: #e53e3e;
}

/* 서비스 세트 내 float-box 간격 */
.v3-service-set .v3-float-box {
    margin-bottom: 10px;
}

.v3-service-set .v3-service-select-row {
    margin-bottom: 0;
}

.v3-service-set .v3-service-select-row .v3-float-box {
    margin-bottom: 0;
}

/* 공유방식 라디오 - 박싱 없는 심플 스타일 */
.v3-share-type-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 24px;
    margin-bottom: 12px;
    padding-left: 2px;
}

.v3-share-type-item {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 13px;
    color: #444;
    font-weight: 500;
}

.v3-share-type-item input[type="radio"] {
    width: 16px;
    height: 16px;
    cursor: pointer;
    accent-color: #4169E1;
    flex-shrink: 0;
}

.v3-share-type-item span {
    line-height: 1;
}

/* 추가 서비스 버튼 행 */
.v3-add-service-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    background: #e9eefd;
    border-radius: 14px;
    border: 1px dashed #c5d0f8;
    margin-top: 4px;
}

/* 정기결제 박스 */
.v3-recurring-box {
    background: #f8f9fc;
    border-color: #dde0e8;
    transition: all 0.2s;
}

.v3-recurring-box.v3-recurring-on {
    border-color: #4169E1;
}

.v3-recurring-inner {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 2px 0;
}

.v3-recurring-check {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid #bbb;
    background: #fff;
    flex-shrink: 0;
    transition: all 0.2s;
}

.v3-recurring-check svg {
    color: transparent;
    transition: color 0.15s;
}

.v3-recurring-on .v3-recurring-check {
    border-color: #4169E1;
    background: #4169E1;
}

.v3-recurring-on .v3-recurring-check svg {
    color: #fff;
}

.v3-recurring-text {
    font-size: 13px;
    color: #666;
    font-weight: 500;
}

.v3-recurring-on .v3-recurring-text {
    color: #4169E1;
    font-weight: 600;
}

/* 종료일 비활성화 */
.v3-float-box.v3-date-disabled {
    opacity: 0.45;
    pointer-events: none;
}

/* 하루이용료 숫자+원 suffix */
.v3-input-suffix-wrap {
    display: flex;
    align-items: center;
    gap: 0;
}

.v3-suffix-input {
    flex: 1;
    min-width: 0;
    text-align: center;
    /* 숫자 스피너 숨김 */
    -moz-appearance: textfield;
}

.v3-suffix-input::-webkit-outer-spin-button,
.v3-suffix-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.v3-input-suffix {
    font-size: 14px;
    font-weight: 600;
    color: #555;
    padding-left: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    line-height: 1;
}

@media (max-width: 480px) {
    .v3-share-type-group {
        gap: 14px;
    }
    .v3-service-set {
        padding: 14px 14px 10px;
    }
}

/* =========================================
   V3 정산계좌 UI (v3- prefix)
   ========================================= */

/* 등록 버튼 */
.v3-account-register-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px 20px;
    background: #fff;
    border: 2px dashed #c5d0f8;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    color: #4169E1;
    cursor: pointer;
    transition: all 0.2s ease;
}

.v3-account-register-btn:hover {
    background: #eef2ff;
    border-color: #4169E1;
}

.v3-account-register-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #4169E1;
    color: #fff;
    border-radius: 50%;
    font-size: 18px;
    line-height: 1;
    font-weight: 400;
}

/* 등록된 계좌 카드 */
.v3-account-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 18px;
    background: #fff;
    border: 1.5px solid #e2e4ee;
    border-radius: 12px;
}

.v3-account-bank-icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f0f4ff;
    border-radius: 10px;
}

.v3-account-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
    min-width: 0;
}

.v3-account-bank-name {
    font-size: 14px;
    font-weight: 700;
    color: #111;
}

.v3-account-holder {
    font-size: 13px;
    color: #666;
}

.v3-account-number {
    font-size: 13px;
    color: #444;
    font-weight: 500;
    letter-spacing: 0.03em;
}

.v3-account-change-btn {
    flex-shrink: 0;
    padding: 7px 16px;
    background: #fff;
    border: 1.5px solid #4169E1;
    border-radius: 8px;
    color: #4169E1;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.v3-account-change-btn:hover {
    background: #4169E1;
    color: #fff;
}

/* 공유방식 필드 전환 애니메이션 */
.v3-share-fields {
    transition: opacity 0.15s ease;
}


/* =========================================
   V3 계좌정보 한줄 레이아웃 (v3- prefix)
   ========================================= */

/* 기존 세로 배열 대신 가로 한줄 */
.v3-account-info-row {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 5px;
    min-width: 0;
    flex-wrap: wrap;
}

.v3-account-info-row .v3-account-bank-name {
    font-size: 16px;
    font-weight: 500;
    color: #111;
    white-space: nowrap;
}

.v3-account-info-row .v3-account-holder {
    font-size: 16px;
    color: #666;
    white-space: nowrap;
}

.v3-account-info-row .v3-account-number {
    font-size: 16px;
    color: #111;
    font-weight: 500;
    letter-spacing: 0.01em;
    white-space: nowrap;
}

/* =============================================
   v3-ss : 검색 가능한 서비스 셀렉터
   (v3-float-box 구조 기반, 기존 스타일 재사용)
   ============================================= */

/* float-box 자체는 기존 v3-float-box 스타일 그대로 사용.
   드롭다운이 밖으로 나와야 하므로 overflow만 override */
.v3-ss-box {
    overflow: visible;
}

.v3-ss-inner {
    position: relative;
    display: flex;
    align-items: center;
}

/* 인풋: v3-float-input 그대로, 우측 아이콘 여백만 확보 */
.v3-ss-inner .v3-float-input {
    padding-right: 40px;
    cursor: pointer;
}
.v3-ss-inner .v3-float-input.v3-ss-typing {
    cursor: text;
}

/* 화살표 버튼 */
.v3-ss-arrow {
    position: absolute;
    right: -7px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border: none;
    background: none;
    padding: 0;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
}
.v3-ss-arrow svg {
    width: 12px;
    height: 8px;
    transition: transform 0.18s;
    pointer-events: none;
}
.v3-ss-box.v3-ss-open .v3-ss-arrow svg {
    transform: rotate(180deg);
}

/* × 클리어 버튼 */
.v3-ss-clear {
    position: absolute;
    right: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: none;
    background: #dde0e8;
    color: #666;
    font-size: 11px;
    line-height: 1;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 0;
    flex-shrink: 0;
}
.v3-ss-clear:hover {
    background: #c5c8d4;
}
.v3-ss-clear.v3-ss-clear-on {
    display: flex;
}

/* 드롭다운 패널 */
.v3-ss-panel {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    left: -1.5px;
    right: -1.5px;
    background: #fff;
    border: 1.5px solid #4169E1;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(65,105,225,0.13);
    z-index: 300;
    overflow: hidden;
}
.v3-ss-box.v3-ss-open .v3-ss-panel {
    display: block;
}

/* 인기 서비스 섹션 */
/* 정렬 레이블 */
.v3-ss-sort-label {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 7px 12px 6px;
    font-size: 10px;
    font-weight: 400;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    letter-spacing: 0.02em;
}
.v3-ss-sort-label svg {
    flex-shrink: 0;
    color: #ccc;
}

/* 전체 리스트 */
.v3-ss-list {
    max-height: 400px;
    overflow-y: auto;
}
.v3-ss-list-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 14px;
    cursor: pointer;
    transition: background 0.1s;
    border-bottom: 0.5px solid #f5f5f5;
}
.v3-ss-list-item:last-child {
    border-bottom: none;
}
.v3-ss-list-item:hover {
    background: #f4f6fb;
}
.v3-ss-list-item.v3-ss-active {
    background: #eef2ff;
}
.v3-ss-list-icon {
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: #f0f3ff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
}
.v3-ss-list-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 7px;
}
.v3-ss-list-name {
    flex: 1;
    font-size: 13px;
    color: #111;
    font-weight: 500;
}
.v3-ss-list-cat {
    font-size: 10px;
    color: #bbb;
}
.v3-ss-list-check {
    font-size: 13px;
    color: #4169E1;
}

/* 검색 결과 없음 */
.v3-ss-empty {
    padding: 12px 14px 6px;
    text-align: center;
    font-size: 12px;
    color: #bbb;
}

/* 직접 입력 버튼 */
.v3-ss-direct-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin: 6px 12px 10px;
    padding: 8px 14px;
    border: 1.5px dashed #c5d0f8;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 700;
    color: #4169E1;
    cursor: pointer;
    background: #f6f8ff;
    transition: background 0.12s, border-color 0.12s;
    user-select: none;
}
.v3-ss-direct-btn:hover {
    background: #eef2ff;
    border-color: #4169E1;
}

@media (max-width: 480px) {
    .v3-ss-list { max-height: 40vh; }

    /* 모바일: × 버튼과 ∨ 버튼 겹침 해소 */
    .v3-ss-inner .v3-float-input {
        padding-right: 52px;
    }
    .v3-ss-clear {
        right: 24px;
    }
    .v3-ss-arrow {
        right: -6px;
    }

    /* 모바일: placeholder 1px 축소 */
    .v3-ss-inner {
        font-size: 13px;
    }
    .v3-float-input::placeholder {
        color: #bbb;
        font-size: 14px;
        font-weight: 400;
    }
}


/* 개설 확인 오버레이 */
.confirm-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 99999;
    align-items: center;
    justify-content: center;
}
.confirm-box {
    background: #fff;
    border-radius: 16px;
    padding: 32px 28px;
    max-width: 360px;
    width: 90%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

@media (max-width: 480px) {
    .confirm-box {
        width: 80%;
        padding: 28px 20px;
    }
}

/* ── PC 상단 네비 바 ── */
.fpd-nav-bar {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 0 14px;
}
.fpd-nav-back {
    display: inline-flex; align-items: center; gap: 8px;
    background: none; border: none; cursor: pointer;
    text-decoration: none; padding: 0; transition: opacity 0.12s;
}
.fpd-nav-back:hover { opacity: 0.65; }
.fpd-nav-back img { width: 88px; height: auto; display: block; }