/* 폰트 선택 스타일 */
.stamp-font-section {
    background: white;
    padding: 25px;
    margin-bottom: 20px;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #e0e0e0;
}

.stamp-font-section h3 {
    margin-bottom: 20px;
    color: #333;
    font-size: 18px;
    border-bottom: 2px solid #667eea;
    padding-bottom: 10px;
}

.font-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
}

.font-option {
    text-align: center;
    cursor: pointer;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fff;
}

.font-option:hover {
    border-color: #667eea;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(102, 126, 234, 0.2);
}

.font-option.selected {
    border-color: #667eea;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.font-preview {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 8px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.font-name {
    font-size: 12px;
    font-weight: 500;
}

/* 모바일 반응형 */
@media (max-width: 768px) {
    .font-options {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .font-option {
        padding: 10px;
    }
    
    .font-preview {
        font-size: 16px;
    }
}