/* ===================================
   공유 버튼 스타일링
   =================================== */

.share-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    padding: 1rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    font-weight: 500;
    color: #374151;
}

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

/* 카카오톡 버튼 특별 스타일 */
.kakao-btn {
    background: #FEE500;
    border-color: #FEE500;
    color: #3C1E1E;
}

.kakao-btn:hover {
    background: #FDD835;
    border-color: #FDD835;
}

.kakao-btn svg {
    fill: #3C1E1E;
}

/* 링크 복사 버튼 */
.share-btn .copy-icon {
    stroke: #6b7280;
}

.share-btn:hover .copy-icon {
    stroke: #4b5563;
}

/* 모바일 반응형 */
@media (max-width: 640px) {
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .share-btn {
        width: 200px;
        justify-content: center;
    }
}

/* 복사 완료 애니메이션 */
.share-btn.copied {
    background: #10b981;
    border-color: #10b981;
    color: white;
}

.share-btn.copied .copy-icon {
    stroke: white;
}

/* 버튼 클릭 효과 */
.share-btn:active {
    transform: scale(0.98);
}
