/* 버튼 시스템 */
.btn-apple {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 30px;
    font-size: 17px;
    font-weight: 600;
    border-radius: var(--radius-button);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--apple-black);
    color: var(--white);
}

.btn-accent {
    background-color: var(--primary-orange);
    color: var(--white);
}

.btn-link {
    color: #0066cc;
    font-size: 19px;
    background: none;
    padding: 0;
    text-decoration: none;
    font-weight: bold;
}

.btn-link:after {
    content: ' >';
    font-size: 14px;
}

/* ==========================================
   [GLOBAL] 50K 시그니처 버튼 시스템
   ========================================== */

/* 1. 기본 버튼 베이스 (공통) */
.btn-50k {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 100px;
    /* 완벽한 라운드(Pill 스타일) */
    font-size: 16px;
    font-weight: 600;
    letter-spacing: -0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    /* 부드러운 애니메이션 */
    text-decoration: none;
    cursor: pointer;
    border: none;
}

/* 2. 메인 오렌지 버튼 (주요 행동 유도) */
.btn-50k-primary {
    background-color: var(--primary-orange);
    color: #ffffff;
}

.btn-50k-primary:hover {
    background-color: #d35400;
    /* 살짝 진한 오렌지 */
    transform: translateY(-2px);
    /* 살짝 떠오르는 느낌 */
    box-shadow: 0 10px 20px rgba(230, 126, 34, 0.2);
}

/* 3. 다크 버튼 (CareOS 등 검은 배경용) */
.btn-50k-dark {
    background-color: #1a1a1a;
    color: #ffffff;
}

.btn-50k-dark:hover {
    background-color: #333333;
    transform: translateY(-2px);
}

/* 4. 아웃라인 버튼 (보조 정보용) */
.btn-50k-outline {
    background-color: transparent;
    border: 1.5px solid #1a1a1a;
    color: #1a1a1a;
}

.btn-50k-outline:hover {
    background-color: #1a1a1a;
    color: #ffffff;
}

/* 5. 아이콘 포함 시 간격 */
.btn-50k i {
    margin-left: 8px;
    font-size: 14px;
}

.btn-detail,
.btn-chat {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    transition: 0.2s;
}

.btn-detail {
    background: #f4f4f4;
    color: #1d1d1f;
}

.btn-chat {
    background: #FEE500;
    /* 카카오톡 노란색 */
    color: #1d1d1f;
}

.btn-detail:hover {
    background: #e0e0e0;
}

.btn-chat:hover {
    background: #fada00;
}
